:root {
            --brand-primary: #D4AF37;
            --brand-primary-hover: #F9D71C;
            --brand-secondary: #B8860B;
            --brand-secondary-hover: #DAA520;
            --brand-accent: #FFD700;
            --bg-main: #0A0A0A;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2A2A2A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-brand-contrast: #000000;
            --text-link: #D4AF37;
            --text-link-hover: #F9D71C;
            --btn-bg: #D4AF37;
            --btn-text: #000000;
            --btn-hover-bg: #F9D71C;
            --btn-hover-text: #000000;
            --semantic-success: #2ECC71;
            --semantic-error: #E74C3C;
            --semantic-warning: #F1C40F;
            --semantic-info: #3498DB;
            --border-default: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: var(--font-body);
            font-size: clamp(15px, 3.9vw, 16px);
            line-height: 1.65;
            padding-inline: 14px;
            padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
            overflow-x: hidden;
            background-color: var(--bg-main);
            color: var(--text-primary);
        }
        img, video, iframe { max-width: 100%; height: auto; display: block; }
        a { color: var(--text-link); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--text-link-hover); }
        button, .btn, .cta {
            min-height: 44px;
            min-inline-size: 44px;
            padding: 12px 18px;
            cursor: pointer;
            border: none;
            border-radius: 8px;
            font-family: var(--font-body);
            font-weight: 600;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .btn-primary { background-color: var(--btn-bg); color: var(--btn-text); }
        .btn-primary:hover { background-color: var(--btn-hover-bg); color: var(--btn-hover-text); }
        
        h1, h2, h3 { font-family: var(--font-headings); color: var(--text-primary); margin: 0; }
        h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem; }
        h2 { font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2.5rem; margin-bottom: 1.2rem; letter-spacing: -0.02em; }
        h3 { font-size: clamp(1.05rem, 4.2vw, 1.25rem); line-height: 1.3; margin-bottom: 0.75rem; }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--bg-main);
        }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo strong { font-size: 16px; font-weight: 400; }
        .header-actions { display: flex; gap: 8px; }

        main { max-width: 100%; }
        
        .hero-section { text-align: center; }
        .hero-banner { aspect-ratio: 2/1; width: 100%; object-fit: cover; border-radius: 0; }
        .hero-intro { margin: 1.5rem 0; color: var(--text-secondary); }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 2rem;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:hover { transform: translateY(-4px); border-color: var(--border-brand); }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; margin: 0; }

        .facts-container {
            background: var(--bg-surface);
            border-radius: 16px;
            padding: 20px;
            margin: 2rem 0;
            border: 1px solid var(--border-strong);
        }
        .facts-table { width: 100%; border-collapse: collapse; }
        .facts-table tr { border-bottom: 1px solid var(--border-default); }
        .facts-table td { padding: 12px 0; font-size: 14px; }
        .facts-label { color: var(--text-muted); width: 40%; }
        .facts-value { color: var(--text-primary); font-weight: 500; }
        .freshness-notice { font-style: italic; color: var(--text-muted); font-size: 13px; margin-bottom: 1rem; display: block; }

        .toc-nav {
            display: flex;
            overflow-x: auto;
            gap: 10px;
            padding: 1rem 0;
            scrollbar-width: none;
        }
        .toc-nav::-webkit-scrollbar { display: none; }
        .toc-link {
            background: var(--bg-elevated);
            color: var(--text-secondary);
            padding: 8px 16px;
            border-radius: 20px;
            white-space: nowrap;
            font-size: 14px;
            border: 1px solid var(--border-default);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin: 2rem 0;
        }
        .cat-tile {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border-default);
        }
        .cat-tile i { font-size: 24px; color: var(--brand-primary); margin-bottom: 10px; display: block; }
        .cat-tile h3 { font-size: 16px; margin-bottom: 5px; }
        .cat-tile p { font-size: 12px; color: var(--text-muted); margin: 0; }

        .announcement-list { display: flex; flex-direction: column; gap: 16px; }
        .announcement-item {
            background: var(--bg-surface);
            padding: 16px;
            border-radius: 12px;
            border-left: 4px solid var(--brand-primary);
        }
        .announcement-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .announcement-header i { color: var(--brand-primary); }
        .announcement-date { font-size: 12px; color: var(--text-muted); display: block; margin-top: 8px; }

        .usp-bar { display: flex; flex-direction: column; gap: 16px; margin: 2rem 0; }
        .usp-item {
            display: flex;
            gap: 15px;
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            align-items: center;
        }
        .usp-item i { font-size: 24px; color: var(--brand-primary); width: 30px; text-align: center; }
        .usp-content h3 { font-size: 16px; margin-bottom: 2px; }
        .usp-content p { font-size: 13px; color: var(--text-muted); margin: 0; }

        .promo-card {
            background: var(--bg-surface);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 16px;
            border: 1px solid var(--border-default);
        }
        .promo-card h3 { color: var(--brand-primary); }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .pay-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .pay-card i { font-size: 28px; color: var(--text-primary); margin-bottom: 10px; display: block; }
        .pay-card h3 { font-size: 15px; margin-bottom: 5px; }
        .pay-card p { font-size: 12px; color: var(--text-muted); margin: 0; }

        .guide-step {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        .step-badge {
            background: var(--brand-primary);
            color: var(--btn-text);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        .provider-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .provider-item h3 { font-size: 16px; margin-bottom: 5px; }
        .provider-item p { font-size: 12px; color: var(--text-muted); margin: 0; }

        .player-guide-item {
            background: var(--bg-surface);
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 12px;
        }
        .guide-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; display: block; }

        .article-card {
            display: flex;
            gap: 15px;
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 12px;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 100px; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }
        .article-content h3 { font-size: 15px; margin-bottom: 5px; }
        .article-content p { font-size: 13px; color: var(--text-muted); margin: 0; }

        .vip-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 12px;
        }
        .vip-card {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
            padding: 20px;
            border-radius: 16px;
            border: 1px solid var(--border-brand);
            text-align: center;
        }

        .faq-item {
            background: var(--bg-surface);
            border-radius: 12px;
            margin-bottom: 12px;
            border: 1px solid var(--border-default);
        }
        .faq-item summary {
            padding: 15px;
            cursor: pointer;
            font-weight: 600;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item summary::after { content: '\f054'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--brand-primary); }
        .faq-answer { padding: 0 15px 15px 15px; color: var(--text-secondary); font-size: 14px; }

        .team-card {
            background: var(--bg-elevated);
            padding: 20px;
            border-radius: 16px;
            margin-top: 2rem;
            border: 1px solid var(--border-strong);
        }

        footer {
            background: var(--bg-surface);
            padding: 40px 0 20px 0;
            margin-top: 3rem;
            border-top: 2px solid var(--border-brand);
        }
        .footer-sitemap {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .footer-sitemap a { color: var(--text-muted); font-size: 14px; }
        .footer-legal {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            padding: 0 20px;
        }

        .navigator {
            position: fixed;
            inset-inline: 0;
            bottom: 0;
            height: 72px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding-bottom: env(safe-area-inset-bottom);
            border-top: 1px solid var(--border-brand);
            z-index: 2000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-muted);
            font-size: 11px;
            gap: 4px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--brand-primary); }

        section { content-visibility: auto; contain-intrinsic-size: 1px 500px; }

        @media (min-width: 768px) {
            body { padding-inline: 24px; padding-bottom: 24px; }
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .category-grid { grid-template-columns: repeat(3, 1fr); }
            .payment-grid { grid-template-columns: repeat(4, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
            .vip-grid { grid-template-columns: repeat(4, 1fr); }
            .navigator { display: none; }
        }
        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
        }