*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-dark: #0b0e14;
            --bg-card: #141a24;
            --bg-nav: #1a212e;
            --accent: #d4a843;
            --accent2: #c9362b;
            --text: #e8e6e3;
            --text-muted: #939ba8;
            --border: #2a3548;
            --radius: 12px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --font: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            --max-w: 1200px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg-dark);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus-visible {
            color: #f0d074;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--bg-nav);
            border-bottom: 2px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            padding: 10px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: var(--accent2);
        }
        .my-logo:hover {
            text-decoration: none;
            color: #f0d074;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border);
            color: var(--text);
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: var(--border);
        }
        .main-nav {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: all 0.2s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(212, 168, 67, 0.12);
            color: var(--accent);
            text-decoration: none;
        }
        .main-nav a.active {
            background: var(--accent);
            color: #0b0e14;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--text-muted);
        }
        .breadcrumb .sep {
            margin: 0 4px;
            color: var(--border);
        }
        .hero {
            padding: 40px 0 20px;
            text-align: center;
        }
        .hero h1 {
            font-size: clamp(2rem, 6vw, 3.6rem);
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.15;
            background: linear-gradient(135deg, var(--accent), #f0d074, var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero .sub {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-top: 12px;
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-meta {
            margin-top: 14px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .hero-meta i {
            margin-right: 6px;
            color: var(--accent);
        }
        .last-updated {
            font-weight: 600;
            color: var(--accent);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0 50px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 24px;
        }
        .sidebar-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--accent);
            border-bottom: 1px solid var(--border);
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid rgba(42, 53, 72, 0.4);
        }
        .sidebar-card ul li:last-child {
            border-bottom: none;
        }
        .sidebar-card ul li a {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card ul li a i {
            width: 18px;
            color: var(--accent2);
            font-size: 0.8rem;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin: 48px 0 16px;
            color: var(--accent);
            letter-spacing: -0.3px;
            border-left: 4px solid var(--accent2);
            padding-left: 16px;
        }
        h3 {
            font-size: 1.45rem;
            font-weight: 700;
            margin: 32px 0 12px;
            color: #f0d074;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: var(--accent);
        }
        p {
            margin-bottom: 16px;
            color: #d5d8dd;
        }
        .lead {
            font-size: 1.15rem;
            color: var(--text);
            font-weight: 400;
        }
        strong {
            color: #f5f3ef;
            font-weight: 600;
        }
        .highlight-box {
            background: rgba(212, 168, 67, 0.08);
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 20px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }
        .stat-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 16px;
            text-align: center;
        }
        .stat-item .num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
        }
        .stat-item .label {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .featured-image {
            margin: 28px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image figcaption {
            background: var(--bg-card);
            padding: 10px 16px;
            font-size: 0.85rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: var(--bg-card);
            border-radius: var(--radius);
            overflow: hidden;
        }
        th,
        td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background: rgba(212, 168, 67, 0.15);
            color: var(--accent);
            font-weight: 600;
        }
        tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 20px 0;
            max-width: 600px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--bg-card);
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-form input:focus {
            border-color: var(--accent);
        }
        .search-form button {
            padding: 12px 24px;
            background: var(--accent);
            color: #0b0e14;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: #f0d074;
        }
        .comment-section,
        .rating-section {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            margin: 32px 0;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            border-bottom: 1px solid var(--border);
            padding-bottom: 12px;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--bg-dark);
            color: var(--text);
            font-family: var(--font);
            font-size: 0.95rem;
            margin-bottom: 12px;
            outline: none;
            transition: border 0.25s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: var(--accent);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .btn-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-primary {
            padding: 10px 28px;
            background: var(--accent);
            color: #0b0e14;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .btn-primary:hover {
            background: #f0d074;
        }
        .btn-outline {
            padding: 10px 28px;
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.25s;
        }
        .btn-outline:hover {
            background: rgba(212, 168, 67, 0.1);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            cursor: pointer;
            margin: 12px 0;
        }
        .star-rating i {
            color: var(--border);
            transition: color 0.2s;
        }
        .star-rating i.active,
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: var(--accent);
        }
        .star-rating i:hover {
            transform: scale(1.1);
        }
        .site-footer {
            background: var(--bg-nav);
            border-top: 2px solid var(--border);
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 28px;
        }
        .footer-grid h4 {
            color: var(--accent);
            font-size: 1.05rem;
            margin-bottom: 12px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 6px;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            padding: 4px 0;
        }
        .footer-grid ul li a {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .footer-grid ul li a:hover {
            color: var(--accent);
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid var(--border);
            margin-top: 16px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        friend-link a {
            margin: 0 10px 0 4px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .copyright strong {
            color: var(--accent);
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
            }
            .main-content {
                order: 1;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--bg-nav);
                padding: 12px 0;
                border-top: 1px solid var(--border);
                margin-top: 10px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 16px;
                border-radius: 0;
                border-bottom: 1px solid rgba(42, 53, 72, 0.3);
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .comment-section,
            .rating-section {
                padding: 18px;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
