        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0e14;
            color: #e8edf5;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #facc15;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            color: #ffffff;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #facc15;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #facc15;
            padding-left: 0.9rem;
            margin-top: 2.8rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.2rem;
            color: #facc15;
            margin-top: 1.4rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #d1d9e6;
        }
        strong {
            color: #ffffff;
            font-weight: 700;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0 16px;
            border-bottom: 1px solid #2a2f3a;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #facc15;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.88;
            text-decoration: none !important;
        }
        .my-logo span {
            font-size: 0.9rem;
            font-weight: 400;
            -webkit-text-fill-color: #94a3b8;
            letter-spacing: 0.3px;
            margin-left: 6px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .nav-list {
            display: flex;
            gap: 6px 18px;
            list-style: none;
            padding: 0;
            flex-wrap: wrap;
        }
        .nav-list li a {
            color: #cbd5e1;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .nav-list li a:hover {
            background: #1e2532;
            color: #facc15;
            text-decoration: none;
        }
        .nav-list li a i {
            font-size: 0.85rem;
            color: #facc15;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #facc15;
            color: #facc15;
            font-size: 1.6rem;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #1e2532;
        }
        #nav-toggle {
            display: none;
        }
        #nav-toggle:checked+.hamburger+.nav-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 16px;
            background: #141a24;
            padding: 16px 12px;
            border-radius: 12px;
            border: 1px solid #2a2f3a;
        }
        #nav-toggle:checked+.hamburger+.nav-list li a {
            padding: 10px 8px;
        }
        .breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 12px 0 8px;
            font-size: 0.9rem;
            color: #94a3b8;
            list-style: none;
        }
        .breadcrumbs li+li::before {
            content: "›";
            margin-right: 10px;
            color: #facc15;
            font-weight: 700;
        }
        .breadcrumbs a {
            color: #94a3b8;
        }
        .breadcrumbs a:hover {
            color: #facc15;
        }
        .breadcrumbs .current {
            color: #facc15;
            font-weight: 600;
        }
        .search-section {
            background: #141a24;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 28px 0 24px;
            border: 1px solid #2a2f3a;
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 14px 18px;
            border-radius: 40px;
            border: 1px solid #3a4050;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #facc15;
        }
        .search-form button {
            background: #facc15;
            color: #0b0e14;
            border: none;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.3s, transform 0.1s;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: scale(1.02);
        }
        .search-form button i {
            font-size: 1.1rem;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 32px 0;
        }
        .feedback-card {
            background: #141a24;
            border-radius: 16px;
            padding: 24px 22px;
            border: 1px solid #2a2f3a;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card textarea,
        .feedback-card input[type="text"],
        .feedback-card input[type="number"] {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid #3a4050;
            background: #0b0e14;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .feedback-card textarea:focus,
        .feedback-card input:focus {
            border-color: #facc15;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            background: #facc15;
            color: #0b0e14;
            border: none;
            padding: 12px 20px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            align-self: flex-start;
            transition: background 0.3s;
        }
        .feedback-card button:hover {
            background: #ffd966;
        }
        .feedback-card .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #3a4050;
            cursor: pointer;
        }
        .feedback-card .star-rating i {
            transition: color 0.2s;
        }
        .feedback-card .star-rating i.active {
            color: #facc15;
        }
        .feedback-card .star-rating i:hover {
            color: #facc15;
        }
        .content-section {
            margin: 32px 0;
        }
        .content-section p {
            max-width: 800px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e2532, #141a24);
            border-left: 6px solid #facc15;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
        }
        .emoji-lg {
            font-size: 1.8rem;
            display: inline-block;
            margin-right: 6px;
        }
        .badge {
            display: inline-block;
            background: #facc15;
            color: #0b0e14;
            padding: 2px 14px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.4px;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #2a2f3a;
            background: #141a24;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 10px;
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 8px 6px;
            font-size: 0.9rem;
            color: #94a3b8;
            text-align: center;
            font-style: italic;
        }
        .inline-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 6px 0 12px;
            list-style: none;
        }
        .inline-links li a {
            background: #1e2532;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            border: 1px solid #2a2f3a;
            transition: background 0.2s, border-color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .inline-links li a:hover {
            background: #2a3240;
            border-color: #facc15;
            text-decoration: none;
        }
        .site-footer {
            border-top: 1px solid #2a2f3a;
            padding: 36px 0 24px;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 28px;
        }
        .footer-grid h4 {
            color: #facc15;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            margin-bottom: 6px;
        }
        .footer-grid ul li a {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .footer-grid ul li a:hover {
            color: #facc15;
        }
        friend-link {
            display: block;
            margin: 16px 0 8px;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        friend-link a {
            color: #facc15;
            font-weight: 500;
        }
        .copyright {
            margin-top: 24px;
            padding-top: 16px;
            border-top: 1px solid #1e2532;
            text-align: center;
            font-size: 0.85rem;
            color: #64748b;
        }
        .copyright strong {
            color: #94a3b8;
        }
        .last-update {
            display: inline-block;
            background: #1e2532;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #94a3b8;
            margin: 8px 0 18px;
            border: 1px solid #2a2f3a;
        }
        .last-update i {
            color: #facc15;
            margin-right: 6px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: inline-block;
            }
            .nav-list {
                display: none;
                width: 100%;
            }
            .nav-bar {
                width: 100%;
            }
            .site-header {
                flex-wrap: wrap;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .search-form {
                flex-direction: column;
                align-items: stretch;
            }
            .search-form button {
                justify-content: center;
            }
            .my-logo span {
                display: none;
            }
        }
        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .feedback-card {
                padding: 18px 14px;
            }
            .container {
                padding: 0 4px;
            }
            body {
                padding: 0 8px;
            }
        }
        .text-gold {
            color: #facc15;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .list-icon {
            color: #facc15;
            margin-right: 8px;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #facc15;
            color: #facc15;
            padding: 8px 22px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline:hover {
            background: #facc15;
            color: #0b0e14;
            text-decoration: none;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2f3a;
            margin: 32px 0;
        }
