        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0b0b14;
            color: #e2e2ea;
            line-height: 1.75;
            font-size: 16px;
            padding: 0;
            margin: 0;
        }
        a {
            color: #d4a853;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #f5d26b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #f0e6d3;
            margin-top: 0;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            border-bottom: 3px solid #d4a853;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.4rem 0 1rem;
            border-left: 5px solid #d4a853;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 1.8rem 0 0.8rem;
            color: #e8dcc8;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.2rem 0 0.4rem;
            color: #d4c9b8;
        }
        p {
            margin: 0 0 1.2rem 0;
            color: #d5d5de;
        }
        strong {
            color: #f5e6c8;
            font-weight: 700;
        }
        em {
            color: #c9bda8;
        }
        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0f0f1f 0%, #1a1a30 100%);
            border-bottom: 2px solid #2a2a45;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #d4a853, #f5d26b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(212, 168, 83, 0.15);
        }
        .my-logo small {
            font-size: 0.75rem;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            display: block;
            letter-spacing: 2px;
            font-weight: 300;
        }
        .nav-menu {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #ccc;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu a:hover {
            color: #d4a853;
            border-bottom-color: #d4a853;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4a853;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
        }
        .breadcrumb {
            padding: 0.8rem 0;
            font-size: 0.85rem;
            color: #999;
            border-bottom: 1px solid #222;
            margin-bottom: 1.2rem;
        }
        .breadcrumb a {
            color: #b8944a;
        }
        .breadcrumb span {
            color: #666;
            margin: 0 0.4rem;
        }
        .search-section {
            background: #14141f;
            padding: 1.2rem 0;
            border-bottom: 1px solid #2a2a3a;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 560px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 0.7rem 1rem;
            border-radius: 30px;
            border: 1px solid #3a3a55;
            background: #1c1c2e;
            color: #eee;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }
        .search-form input:focus {
            border-color: #d4a853;
            box-shadow: 0 0 12px rgba(212, 168, 83, 0.15);
        }
        .search-form button {
            background: #d4a853;
            border: none;
            border-radius: 30px;
            padding: 0 1.4rem;
            color: #0b0b14;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
            font-size: 1rem;
        }
        .search-form button:hover {
            background: #f0c040;
            transform: scale(1.02);
        }
        .hero {
            padding: 1.6rem 0 0.8rem;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        .hero-img-wrap {
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #2a2a45;
            background: #111;
        }
        .hero-img-wrap img {
            width: 100%;
            height: auto;
            transition: transform 0.4s;
        }
        .hero-img-wrap img:hover {
            transform: scale(1.02);
        }
        .hero-text h1 {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0.6rem;
        }
        .hero-text .subhead {
            font-size: 1.1rem;
            color: #b8aa92;
            margin-bottom: 0.4rem;
        }
        .hero-text .update-badge {
            display: inline-block;
            background: #2a2a45;
            padding: 0.2rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #d4a853;
            border: 1px solid #3a3a5a;
        }
        .section-content {
            padding: 1.2rem 0 2rem;
        }
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 1.6rem 0;
        }
        .card {
            background: #14141f;
            border-radius: 12px;
            padding: 1.6rem;
            border: 1px solid #2a2a3a;
            transition: 0.3s;
        }
        .card:hover {
            border-color: #4a4a6a;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        .card h4 {
            margin-top: 0;
            color: #d4a853;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.4rem 0;
            font-size: 0.95rem;
            background: #11111c;
            border-radius: 8px;
            overflow: hidden;
        }
        .data-table th {
            background: #1f1f35;
            color: #d4a853;
            padding: 0.7rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.6rem 1rem;
            border-bottom: 1px solid #222;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1a1a2e;
        }
        .interact-section {
            background: #14141f;
            padding: 2rem 0;
            border-top: 2px solid #2a2a45;
            border-bottom: 2px solid #2a2a45;
            margin: 2rem 0;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .comment-form,
        .score-form {
            background: #0f0f1a;
            padding: 1.6rem;
            border-radius: 12px;
            border: 1px solid #2a2a3a;
        }
        .comment-form h3,
        .score-form h3 {
            margin-top: 0;
            color: #d4a853;
            border-bottom: 1px solid #2a2a45;
            padding-bottom: 0.4rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
            color: #c0b8a8;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.6rem 1rem;
            border-radius: 6px;
            border: 1px solid #333;
            background: #1a1a2e;
            color: #eee;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #d4a853;
            outline: none;
        }
        .form-group textarea {
            min-height: 80px;
            resize: vertical;
        }
        .btn-gold {
            background: #d4a853;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            color: #0b0b14;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .btn-gold:hover {
            background: #f0c040;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating i {
            transition: 0.2s;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #d4a853;
        }
        .star-rating input {
            display: none;
        }
        .star-rating input:checked~i {
            color: #d4a853;
        }
        friend-link {
            display: block;
            padding: 1.4rem 0;
            border-top: 1px solid #2a2a3a;
            margin-top: 1.6rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 1.2rem 0.3rem 0;
            color: #b8944a;
            font-size: 0.9rem;
        }
        .site-footer {
            background: #0a0a14;
            border-top: 2px solid #1a1a30;
            padding: 1.6rem 0;
            text-align: center;
            font-size: 0.85rem;
            color: #777;
        }
        .site-footer .copyright {
            margin-top: 0.6rem;
            letter-spacing: 0.3px;
        }
        @media (max-width: 820px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .two-col {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .interact-grid {
                grid-template-columns: 1fr;
                gap: 1.4rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0 0.4rem;
                gap: 0.6rem;
                border-top: 1px solid #2a2a45;
                margin-top: 0.6rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                align-items: center;
            }
            .search-form {
                flex-direction: column;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.4rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .card {
                padding: 1rem;
            }
        }
        .highlight-box {
            background: #1a1a2e;
            border-left: 4px solid #d4a853;
            padding: 1rem 1.4rem;
            border-radius: 0 8px 8px 0;
            margin: 1.4rem 0;
        }
        .fa-ul li {
            margin-bottom: 0.6rem;
        }
        .tag {
            display: inline-block;
            background: #2a2a45;
            padding: 0.1rem 0.8rem;
            border-radius: 16px;
            font-size: 0.75rem;
            color: #d4a853;
            margin-right: 0.3rem;
        }
        .last-updated {
            font-size: 0.85rem;
            color: #999;
            text-align: right;
            margin-top: 1.6rem;
            border-top: 1px solid #222;
            padding-top: 0.8rem;
        }
        .schema-hidden {
            display: none;
        }
