* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg: #0d0d1a;
            --surface: #16162b;
            --surface2: #1e1e3a;
            --gold: #f0c040;
            --gold2: #dbaa2a;
            --accent: #ff7a2f;
            --text: #f0eee6;
            --text2: #b8b6ae;
            --border: #2a2a4a;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --radius: 16px;
            --maxw: 1200px;
            --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: var(--accent);
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .site-header {
            background: var(--surface);
            border-bottom: 2px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 12px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--gold), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            font-size: 1.6rem;
            -webkit-text-fill-color: var(--gold);
            color: var(--gold);
        }
        .my-logo:hover {
            opacity: 0.85;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 4px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            display: block;
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text2);
            transition: all 0.2s;
            background: transparent;
            border: 1px solid transparent;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: var(--surface2);
            color: var(--gold);
            border-color: var(--gold2);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: var(--surface2);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 10px 24px 0;
            font-size: 0.85rem;
            color: var(--text2);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: var(--gold2);
        }
        .breadcrumb span {
            color: var(--text2);
        }
        .breadcrumb .sep {
            margin: 0 4px;
        }
        .container {
            max-width: var(--maxw);
            margin: 0 auto;
            padding: 24px 24px 40px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: var(--surface);
            border-radius: var(--radius);
            padding: 24px 20px;
            border: 1px solid var(--border);
            max-height: calc(100vh - 140px);
            overflow-y: auto;
        }
        .sidebar h3 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 16px;
            border-bottom: 2px solid var(--border);
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .sidebar ul li a {
            display: block;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--text2);
            border-left: 3px solid transparent;
            transition: all 0.2s;
        }
        .sidebar ul li a:hover {
            color: var(--gold);
            background: var(--surface2);
            border-left-color: var(--gold);
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--gold);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--gold);
            margin: 40px 0 16px;
            border-bottom: 2px solid var(--border);
            padding-bottom: 8px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--accent);
            margin: 28px 0 12px;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text);
            margin: 20px 0 8px;
        }
        p {
            margin-bottom: 16px;
            color: var(--text2);
        }
        .lead {
            font-size: 1.2rem;
            color: var(--text);
            font-weight: 400;
            line-height: 1.6;
            margin-bottom: 24px;
        }
        .highlight-box {
            background: var(--surface2);
            border-left: 4px solid var(--gold);
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 20px 0;
        }
        .highlight-box p {
            margin-bottom: 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .featured-img {
            margin: 24px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--surface2);
        }
        .featured-img img {
            width: 100%;
            object-fit: cover;
            min-height: 200px;
            background: var(--surface2);
        }
        .featured-img figcaption {
            padding: 12px 16px;
            font-size: 0.85rem;
            color: var(--text2);
            background: var(--surface);
            border-top: 1px solid var(--border);
        }
        .search-box {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin: 32px 0;
            border: 1px solid var(--border);
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .search-box label {
            font-weight: 600;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border-radius: 40px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
        }
        .search-box input[type="text"]:focus {
            border-color: var(--gold);
        }
        .search-box button {
            padding: 12px 28px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, var(--gold), var(--gold2));
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-box button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(240, 192, 64, 0.3);
        }
        .rating-area {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 24px 28px;
            margin: 32px 0;
            border: 1px solid var(--border);
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            align-items: center;
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: var(--gold2);
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            transition: transform 0.15s, color 0.2s;
            cursor: pointer;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: var(--gold);
            transform: scale(1.1);
        }
        .rating-area .avg {
            font-size: 1.1rem;
            color: var(--text);
        }
        .rating-area .avg strong {
            color: var(--gold);
            font-size: 1.4rem;
        }
        .comments-section {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 28px;
            margin: 32px 0;
            border: 1px solid var(--border);
        }
        .comments-section h2 {
            margin-top: 0;
            border-bottom: 2px solid var(--border);
            padding-bottom: 12px;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin: 20px 0 28px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--text);
            font-size: 1rem;
            font-family: var(--font);
            outline: none;
            transition: border 0.25s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: var(--gold);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            padding: 12px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, var(--gold), var(--gold2));
            color: #0d0d1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .comment-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(240, 192, 64, 0.3);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 16px;
        }
        .comment-item {
            background: var(--surface2);
            padding: 16px 20px;
            border-radius: 12px;
            border-left: 3px solid var(--gold2);
        }
        .comment-item .meta {
            font-size: 0.8rem;
            color: var(--text2);
            display: flex;
            gap: 12px;
            margin-bottom: 6px;
        }
        .comment-item .meta strong {
            color: var(--gold);
        }
        .friend-link {
            display: block;
            padding: 8px 16px;
            margin: 6px 0;
            background: var(--surface2);
            border-radius: 10px;
            color: var(--text2);
            border: 1px solid var(--border);
            transition: all 0.2s;
            font-size: 0.9rem;
        }
        .friend-link:hover {
            color: var(--gold);
            border-color: var(--gold2);
            background: var(--surface);
            transform: translateX(4px);
        }
        .site-footer {
            background: var(--surface);
            border-top: 2px solid var(--border);
            padding: 40px 24px 24px;
            margin-top: 40px;
        }
        .footer-inner {
            max-width: var(--maxw);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        .footer-inner .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            font-size: 0.85rem;
            color: var(--text2);
        }
        .footer-inner .copyright strong {
            color: var(--gold);
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-links h4 {
            color: var(--gold);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        @media (max-width: 920px) {
            .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                max-height: none;
                margin-top: 32px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 700px) {
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--surface);
                padding: 12px 0;
                border-radius: 0 0 var(--radius) var(--radius);
                border-top: 1px solid var(--border);
                margin-top: 8px;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 0;
                border: none;
            }
            .hamburger {
                display: block;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrap {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .container {
                padding: 16px;
            }
            .search-box {
                padding: 16px;
                flex-direction: column;
                align-items: stretch;
            }
            .search-box button {
                justify-content: center;
            }
            .rating-area {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px;
            }
            .comments-section {
                padding: 16px;
            }
            .breadcrumb {
                padding: 8px 16px 0;
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            body {
                font-size: 15px;
            }
            .featured-img figcaption {
                font-size: 0.75rem;
                padding: 8px 12px;
            }
        }
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 12px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold2);
        }
        .schema-hidden {
            display: none;
        }
