:root {
            --primary: #D4AF37;
            --primary-hover: #C5A028;
            --secondary: #B8860B;
            --secondary-hover: #A07000;
            --accent: #FFD700;
            --bg-main: #0A0A0A;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-contrast: #000000;
            --link: #D4AF37;
            --link-hover: #FFD700;
            --success: #2ECC71;
            --error: #E74C3C;
            --warning: #F1C40F;
            --info: #3498DB;
            --border: #333333;
            --border-strong: #444444;
            --border-brand: #D4AF37;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        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(--link); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--link-hover); }

        button, .btn, .cta {
            min-height: 44px;
            min-inline-size: 44px;
            padding: 12px 18px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-family: var(--font-headings);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.1s, background-color 0.2s;
            text-decoration: none;
        }

        .btn-primary { background-color: var(--primary); color: var(--text-contrast); }
        .btn-primary:hover { background-color: var(--accent); transform: translateY(-1px); }

        h1, h2, h3 { font-family: var(--font-headings); color: var(--text-primary); margin-top: 0; }
        h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; margin-bottom: 1rem; }
        h2 { font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2.5rem; margin-bottom: 1.25rem; }
        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: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--bg-main);
        }

        .brand-link { display: flex; align-items: center; gap: 8px; }
        .brand-link strong { font-size: 16px; font-weight: 400; }

        .header-actions { display: flex; gap: 8px; }

        main { width: 100%; }

        .hero { text-align: center; margin-bottom: 2rem; }
        .hero-banner { aspect-ratio: 2/1; width: 100%; object-fit: cover; border-radius: 12px; }
        .hero-content { margin-top: 1.5rem; }
        .hero-cta { width: 100%; font-size: 1.2rem; margin-top: 1rem; }

        .section-container { content-visibility: auto; contain-intrinsic-size: 1px 500px; margin-bottom: 3rem; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid var(--border); }
        .game-card:hover { transform: scale(1.02); border-color: var(--primary); }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-card h3 { font-size: 14px; padding: 8px; margin: 0; text-align: center; color: var(--text-secondary); }

        .facts-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border-radius: 12px; overflow: hidden; }
        .facts-table td { padding: 12px; border-bottom: 1px solid var(--border); }
        .facts-table td:first-child { font-weight: 600; color: var(--primary); width: 40%; }
        .freshness-notice { font-style: italic; color: var(--text-muted); font-size: 14px; margin-bottom: 1rem; }

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

        .category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .category-tile { background: var(--bg-surface); padding: 16px; border-radius: 12px; text-align: center; border: 1px solid var(--border); transition: 0.2s; }
        .category-tile:hover { border-color: var(--primary); background: var(--bg-elevated); }
        .category-tile i { font-size: 24px; color: var(--primary); margin-bottom: 8px; display: block; }
        .category-tile span { display: block; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
        .category-tile p { font-size: 12px; color: var(--text-muted); margin: 0; }

        .usp-bar { display: grid; grid-template-columns: 1fr; gap: 16px; }
        .usp-item { background: var(--bg-surface); padding: 16px; border-radius: 12px; display: flex; gap: 16px; align-items: center; border-left: 4px solid var(--primary); }
        .usp-item i { font-size: 24px; color: var(--primary); }
        .usp-text h3 { margin: 0 0 4px 0; font-size: 16px; }
        .usp-text p { margin: 0; font-size: 14px; color: var(--text-secondary); }

        .promo-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 12px; }
        .promo-card:hover { border-color: var(--primary); }

        .payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .payment-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; text-align: center; border: 1px solid var(--border); }
        .payment-card i { font-size: 32px; color: var(--primary); margin-bottom: 8px; display: block; }
        .payment-card span { display: block; font-weight: 600; margin-bottom: 8px; }
        .payment-card p { font-size: 12px; color: var(--text-muted); margin: 0; }

        .guide-step { display: flex; gap: 16px; align-items: flex-start; background: var(--bg-surface); padding: 20px; border-radius: 16px; margin-bottom: 16px; }
        .step-number { background: var(--primary); color: var(--text-contrast); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }

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

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

        .article-card { display: flex; gap: 16px; background: var(--bg-surface); border-radius: 16px; overflow: hidden; margin-bottom: 16px; border: 1px solid var(--border); }
        .article-card img { width: 100px; aspect-ratio: 4/3; object-fit: cover; }
        .article-content { padding: 12px; }
        .article-content h3 { font-size: 16px; margin: 0 0 8px 0; color: var(--text-primary); }
        .article-content p { font-size: 13px; color: var(--text-secondary); margin: 0; }

        .vip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
        .vip-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; text-align: center; border: 1px solid var(--border); }
        .vip-card h3 { color: var(--primary); font-size: 18px; }
        .vip-card p { font-size: 12px; color: var(--text-secondary); }

        .faq-item { background: var(--bg-surface); border-radius: 12px; margin-bottom: 12px; overflow: hidden; border: 1px solid var(--border); }
        .faq-item summary { padding: 16px; 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(--primary); transition: 0.3s; }
        .faq-item[open] summary::after { transform: rotate(180deg); }
        .faq-item p { padding: 0 16px 16px 16px; margin: 0; color: var(--text-secondary); font-size: 14px; }

        .about-content { background: var(--bg-surface); padding: 24px; border-radius: 16px; }
        .team-card { margin-top: 24px; padding: 20px; background: var(--bg-elevated); border-radius: 12px; border: 1px solid var(--primary); }

        footer { padding: 40px 0 24px 0; background: var(--bg-surface); border-top: 1px solid var(--border); margin-top: 4rem; }
        .footer-sitemap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px; }
        .footer-sitemap a { font-size: 14px; color: var(--text-secondary); }
        .footer-legal { text-align: center; font-size: 12px; color: var(--text-muted); line-height: 1.8; }

        .navigator {
            position: fixed;
            inset-inline: 0;
            bottom: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0px));
            border-top: 1px solid var(--border);
            z-index: 2000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 10px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { display: block; font-weight: 500; }

        @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); }
            .usp-bar { grid-template-columns: repeat(2, 1fr); }
            .payment-grid { grid-template-columns: repeat(4, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
            .navigator { position: static; display: none; }
            .footer-sitemap { grid-template-columns: repeat(4, 1fr); }
        }

        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
        }