*,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --bg-dark: #0b0e1a;
            --bg-card: #12172e;
            --bg-section: #0f1325;
            --gold: #f0b90b;
            --gold-light: #fcd43b;
            --gold-dark: #c7910a;
            --text-primary: #f5f5f5;
            --text-secondary: #b8c0d0;
            --text-muted: #7a82a0;
            --accent-red: #e74c3c;
            --accent-green: #2ecc71;
            --shadow-gold: 0 0 30px rgba(240, 185, 11, 0.15);
            --radius: 12px;
            --transition: 0.3s ease;
            --max-width: 1200px;
            --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--gold-light);
            text-decoration: underline;
        }
        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 {
            background: linear-gradient(135deg, #0b0e1a 0%, #1a1f3a 100%);
            border-bottom: 2px solid var(--gold-dark);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(240, 185, 11, 0.3);
            transition: transform var(--transition);
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: var(--text-secondary);
            display: block;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--gold);
            color: var(--gold);
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: background var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(240, 185, 11, 0.15);
        }
        nav#main-nav ul {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav#main-nav ul li a {
            display: block;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-secondary);
            transition: all var(--transition);
            border: 1px solid transparent;
        }
        nav#main-nav ul li a:hover {
            color: var(--gold);
            background: rgba(240, 185, 11, 0.08);
            border-color: rgba(240, 185, 11, 0.2);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 10px 0 6px;
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb span {
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--gold);
        }
        .breadcrumb .current {
            color: var(--gold);
        }
        .hero {
            background: linear-gradient(145deg, #0f1325 0%, #1a1f3a 100%);
            padding: 50px 0 40px;
            text-align: center;
            border-bottom: 1px solid rgba(240, 185, 11, 0.15);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--gold);
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 0 40px rgba(240, 185, 11, 0.2);
        }
        .hero p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .hero-meta {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .hero-meta i {
            color: var(--gold);
            margin-right: 6px;
        }
        .last-updated {
            display: inline-block;
            background: rgba(240, 185, 11, 0.1);
            padding: 4px 16px;
            border-radius: 20px;
            border: 1px solid rgba(240, 185, 11, 0.2);
        }
        .search-section {
            background: var(--bg-section);
            padding: 30px 0;
            border-bottom: 1px solid rgba(240, 185, 11, 0.08);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 8px;
            border: 2px solid rgba(240, 185, 11, 0.2);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-size: 1rem;
            transition: border var(--transition);
        }
        .search-form input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 20px rgba(240, 185, 11, 0.1);
        }
        .search-form button {
            padding: 14px 30px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(240, 185, 11, 0.3);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid rgba(240, 185, 11, 0.1);
            box-shadow: var(--shadow-gold);
        }
        .sidebar h3 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 16px;
            border-bottom: 2px solid rgba(240, 185, 11, 0.15);
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            margin-bottom: 10px;
        }
        .sidebar ul li a {
            color: var(--text-secondary);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 0;
        }
        .sidebar ul li a:hover {
            color: var(--gold);
        }
        .sidebar ul li a i {
            width: 16px;
            color: var(--gold-dark);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            margin: 50px 0 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid rgba(240, 185, 11, 0.15);
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), transparent);
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gold-light);
            margin: 36px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 28px 0 10px;
            padding-left: 12px;
            border-left: 4px solid var(--gold-dark);
        }
        p {
            margin-bottom: 18px;
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
        }
        .highlight {
            color: var(--gold);
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 4px;
        }
        .feature-box {
            background: rgba(240, 185, 11, 0.04);
            border-left: 4px solid var(--gold);
            padding: 20px 24px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 24px 0;
        }
        .feature-box p:last-child {
            margin-bottom: 0;
        }
        .feature-box strong {
            color: var(--gold-light);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 28px 0;
        }
        .stat-card {
            background: var(--bg-card);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid rgba(240, 185, 11, 0.1);
            transition: all var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-4px);
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(240, 185, 11, 0.1);
        }
        .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--gold);
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 6px;
        }
        .image-wrapper {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            background: var(--bg-card);
            padding: 12px;
        }
        .image-wrapper img {
            width: 100%;
            border-radius: calc(var(--radius) - 4px);
        }
        .image-wrapper figcaption {
            text-align: center;
            padding: 12px 8px 4px;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-style: italic;
        }
        blockquote {
            background: rgba(240, 185, 11, 0.06);
            border-left: 5px solid var(--gold);
            padding: 20px 24px;
            margin: 28px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            font-style: italic;
            color: var(--text-secondary);
        }
        blockquote strong {
            color: var(--gold);
            font-style: normal;
        }
        .tip {
            display: inline-block;
            background: rgba(46, 204, 113, 0.1);
            color: var(--accent-green);
            padding: 2px 12px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 50px 0 30px;
        }
        .comment-section,
        .rating-section {
            background: var(--bg-card);
            padding: 28px;
            border-radius: var(--radius);
            border: 1px solid rgba(240, 185, 11, 0.08);
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            margin-bottom: 18px;
            font-size: 1.3rem;
            color: var(--gold);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px 16px;
            margin-bottom: 12px;
            border-radius: 8px;
            border: 2px solid rgba(240, 185, 11, 0.15);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-primary);
            font-size: 0.95rem;
            font-family: var(--font-main);
            transition: border var(--transition);
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            outline: none;
            border-color: var(--gold);
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            color: #0b0e1a;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition);
            font-size: 0.95rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 185, 11, 0.25);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin: 12px 0 18px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: color var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
        }
        .rating-display {
            margin-top: 16px;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }
        .rating-display .stars {
            color: var(--gold);
            letter-spacing: 2px;
        }
        footer {
            background: linear-gradient(135deg, #0b0e1a, #080b14);
            border-top: 2px solid rgba(240, 185, 11, 0.1);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: var(--gold);
            border-left: none;
            padding-left: 0;
            margin-top: 0;
            font-size: 1.1rem;
        }
        footer p,
        footer a {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        footer a:hover {
            color: var(--gold);
        }
        friend-link {
            display: block;
            background: rgba(240, 185, 11, 0.03);
            padding: 20px 24px;
            border-radius: var(--radius);
            border: 1px solid rgba(240, 185, 11, 0.08);
            margin: 16px 0 24px;
        }
        friend-link::before {
            content: '🌐 Friend Links';
            display: block;
            font-weight: 700;
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(240, 185, 11, 0.06);
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .copyright strong {
            color: var(--text-secondary);
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
                margin-top: 30px;
            }
            footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            nav#main-nav {
                display: none;
                width: 100%;
                margin-top: 12px;
                border-top: 1px solid rgba(240, 185, 11, 0.1);
                padding-top: 12px;
            }
            nav#main-nav.open {
                display: block;
            }
            nav#main-nav ul {
                flex-direction: column;
                gap: 4px;
            }
            nav#main-nav ul li a {
                padding: 10px 16px;
                border-radius: 6px;
                background: rgba(240, 185, 11, 0.03);
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 0.95rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
            footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .sidebar {
                padding: 16px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.4rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .search-form input {
                min-width: 140px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold-dark);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold);
        }
        .schema-hidden {
            display: none;
        }
