*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #d4a843;
            --primary-dark: #b8892f;
            --secondary: #1a1a2e;
            --accent: #e94560;
            --bg: #0f0f1a;
            --bg-card: #16162b;
            --bg-card-hover: #1e1e3a;
            --text: #e8e8f0;
            --text-muted: #a0a0b8;
            --border: #2a2a4a;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1200px;
            --header-h: 72px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .25s;
        }
        a:hover {
            color: #f0d080;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(15, 15, 26, .92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            height: var(--header-h);
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--primary), #f0d080);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--primary);
            font-size: 1.6rem;
        }
        .my-logo small {
            font-size: .7rem;
            -webkit-text-fill-color: var(--text-muted);
            font-weight: 400;
            letter-spacing: 0;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
        }
        .nav-list li a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: .92rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: background .25s, color .25s;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: rgba(212, 168, 67, .15);
            color: var(--primary);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background .2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, .05);
        }
        #nav-toggle {
            display: none;
        }
        @media(max-width:768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                position: fixed;
                top: var(--header-h);
                left: 0;
                right: 0;
                background: rgba(15, 15, 26, .98);
                flex-direction: column;
                padding: 20px 24px;
                gap: 4px;
                border-bottom: 1px solid var(--border);
                transform: translateY(-120%);
                opacity: 0;
                transition: transform .35s ease, opacity .3s;
                pointer-events: none;
                box-shadow: var(--shadow);
            }
            #nav-toggle:checked~.nav-list {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }
            .nav-list li a {
                padding: 12px 16px;
                display: block;
                font-size: 1rem;
            }
        }
        .breadcrumb-wrap {
            background: rgba(255, 255, 255, .03);
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
            font-size: .85rem;
        }
        .breadcrumb-wrap nav ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb-wrap nav ol li {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-muted);
        }
        .breadcrumb-wrap nav ol li+li::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--text-muted);
            opacity: .5;
        }
        .breadcrumb-wrap nav ol li:last-child {
            color: var(--primary);
        }
        .search-bar {
            display: flex;
            gap: 8px;
            max-width: 480px;
            margin: 24px 0 32px;
        }
        .search-bar input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 30px;
            border: 1px solid var(--border);
            background: var(--bg-card);
            color: var(--text);
            font-size: .95rem;
            outline: none;
            transition: border-color .3s;
        }
        .search-bar input:focus {
            border-color: var(--primary);
        }
        .search-bar button {
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            background: var(--primary);
            color: #0f0f1a;
            font-weight: 700;
            font-size: .95rem;
            cursor: pointer;
            transition: background .25s, transform .15s;
        }
        .search-bar button:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 32px 0 48px;
        }
        .main-article {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: calc(var(--header-h) + 24px);
            align-self: start;
        }
        @media(max-width:992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
        }
        .sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid var(--border);
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-bottom: 16px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .sidebar-links li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .03);
            transition: background .25s;
            font-size: .9rem;
        }
        .sidebar-links li a:hover {
            background: rgba(212, 168, 67, .12);
            color: var(--primary);
        }
        .sidebar-links li a i {
            width: 20px;
            color: var(--accent);
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: .5rem;
            background: linear-gradient(135deg, #f0d080, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
            border-bottom: 2px solid var(--border);
            padding-bottom: .5rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: .75rem;
            color: #f0d080;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 1.5rem;
            margin-bottom: .5rem;
            color: var(--text);
        }
        p {
            margin-bottom: 1.2rem;
            color: var(--text);
        }
        .lead {
            font-size: 1.15rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        .stat-block {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 20px 24px;
            border-left: 4px solid var(--primary);
            margin: 1.5rem 0;
        }
        .stat-block dt {
            font-weight: 700;
            color: var(--primary);
            margin-top: 8px;
        }
        .stat-block dd {
            margin-left: 20px;
            color: var(--text-muted);
        }
        .highlight-box {
            background: rgba(212, 168, 67, .08);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid rgba(212, 168, 67, .2);
            margin: 1.8rem 0;
        }
        .highlight-box strong {
            color: var(--primary);
        }
        .img-wrap {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border);
        }
        .img-wrap img {
            width: 100%;
            object-fit: cover;
        }
        .img-wrap figcaption {
            padding: 12px 18px;
            font-size: .85rem;
            color: var(--text-muted);
            font-style: italic;
        }
        ul,
        ol {
            margin-bottom: 1.2rem;
            padding-left: 24px;
        }
        li {
            margin-bottom: 6px;
        }
        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 30px;
            background: var(--primary);
            color: #0f0f1a;
            font-weight: 700;
            font-size: .9rem;
            transition: background .25s, transform .15s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
            color: #0f0f1a;
        }
        .comment-section,
        .rating-section {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 28px;
            border: 1px solid var(--border);
            margin-top: 40px;
        }
        .comment-section h2,
        .rating-section h2 {
            margin-top: 0;
            border-bottom: none;
            padding-bottom: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            font-size: .92rem;
            color: var(--text-muted);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, .04);
            color: var(--text);
            font-size: .95rem;
            font-family: var(--font);
            outline: none;
            transition: border-color .3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: var(--border);
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            transition: color .2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--primary);
        }
        footer {
            border-top: 1px solid var(--border);
            padding: 40px 0 30px;
            margin-top: 48px;
            background: rgba(0, 0, 0, .3);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media(max-width:768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
        }
        footer h4 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1rem;
        }
        footer a {
            color: var(--text-muted);
            font-size: .9rem;
            display: inline-block;
            margin-bottom: 6px;
        }
        footer a:hover {
            color: var(--primary);
        }
        friend-link {
            display: block;
            padding: 16px 20px;
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            margin-top: 16px;
            font-size: .9rem;
        }
        friend-link a {
            margin: 0 8px 0 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: .85rem;
        }
        .copyright strong {
            color: var(--text);
        }
        .last-updated {
            display: inline-block;
            background: rgba(212, 168, 67, .1);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: .8rem;
            color: var(--text-muted);
            margin-bottom: 16px;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        .tag {
            display: inline-block;
            padding: 2px 12px;
            border-radius: 20px;
            background: rgba(212, 168, 67, .12);
            color: var(--primary);
            font-size: .75rem;
            font-weight: 600;
            margin-right: 6px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: .9rem;
        }
        table th,
        table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        table th {
            background: rgba(212, 168, 67, .08);
            color: var(--primary);
            font-weight: 600;
        }
        table tr:hover td {
            background: rgba(255, 255, 255, .02);
        }
