:root {
            --primary: #D4AF37; --primary-hover: #FFD700; --secondary: #B8860B; --secondary-hover: #DAA520; --accent: #FF4500;
            --bg-main: #0A0A0A; --bg-surface: #1A1A1A; --bg-elevated: #262626; --overlay: rgba(0,0,0,0.85);
            --text-primary: #FFFFFF; --text-secondary: #CCCCCC; --text-muted: #888888; --text-brand: #000000;
            --link: #D4AF37; --link-hover: #FFD700;
            --btn-bg: #D4AF37; --btn-text: #000000; --btn-hover-bg: #FFD700;
            --border: #333333; --border-strong: #444444; --border-brand: #D4AF37;
            --success: #28A745; --error: #DC3545; --warning: #FFC107; --info: #17A2B8;
            --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;
            background-color: var(--bg-main); color: var(--text-primary); padding-inline: 14px;
            padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); overflow-x: hidden;
        }
        header {
            display: flex; justify-content: space-between; align-items: center; padding: 12px 0;
            position: sticky; top: 0; z-index: 100; background: var(--bg-main);
        }
        .brand-link { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
        .brand-name { font-size: 16px; font-weight: normal; }
        .header-actions { display: flex; gap: 8px; }
        .btn {
            min-height: 44px; min-inline-size: 44px; padding: 10px 16px; border-radius: 8px;
            border: none; cursor: pointer; font-weight: 600; transition: 0.3s; text-decoration: none;
            display: inline-flex; align-items: center; justify-content: center; font-family: inherit;
        }
        .btn-primary { background: var(--btn-bg); color: var(--btn-text); }
        .btn-primary:hover { background: var(--btn-hover-bg); }
        .btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
        .btn-outline:hover { background: var(--primary); color: var(--btn-text); }
        
        main { width: 100%; }
        h1, h2, h3 { font-family: var(--font-headings); letter-spacing: -0.02em; line-height: 1.2; color: var(--text-primary); }
        h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); margin: 1rem 0; text-align: center; }
        h2 { font-size: clamp(1.3rem, 5.2vw, 1.8rem); margin-top: 2rem; margin-bottom: 1rem; border-left: 4px solid var(--primary); padding-left: 12px; }
        h3 { font-size: clamp(1.05rem, 4.2vw, 1.25rem); margin: 0; }
        
        .hero-banner { display: block; width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .hero-intro { text-align: center; margin-bottom: 2rem; }
        .hero-intro p { color: var(--text-secondary); max-width: 800px; margin: 0 auto 1.5rem; }
        
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 2rem; }
        .game-card { 
            background: var(--bg-surface); border-radius: 12px; text-decoration: none; color: inherit;
            transition: transform 0.2s; border: 1px solid var(--border); overflow: hidden;
        }
        .game-card:hover { transform: translateY(-4px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 12px; font-size: 14px; text-align: center; }

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

        .toc-nav { display: flex; overflow-x: auto; gap: 12px; padding: 12px 0; margin-bottom: 2rem; 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; text-decoration: none; white-space: nowrap; font-size: 13px; border: 1px solid var(--border);
        }
        .toc-link:hover { color: var(--primary); border-color: var(--primary); }

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

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

        .promo-card { 
            background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 12px; 
            border: 1px solid var(--border); display: flex; flex-direction: column;
        }
        .promo-card h3 { margin-bottom: 10px; color: var(--primary); }
        .promo-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }

        .payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 2rem; }
        .payment-card { 
            background: var(--bg-surface); padding: 16px; border-radius: 12px; text-align: center; 
            border: 1px solid var(--border); transition: 0.3s;
        }
        .payment-card i { font-size: 32px; color: var(--primary); margin-bottom: 10px; display: block; }
        .payment-card h3 { font-size: 15px; 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: 12px; margin-bottom: 12px; border: 1px solid var(--border);
        }
        .step-num { 
            background: var(--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; 
        }
        .step-content h3 { margin-bottom: 8px; }
        .step-content a { color: inherit; text-decoration: none; }

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

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

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

        .vip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 2rem; }
        .vip-card { 
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated)); 
            padding: 20px; border-radius: 12px; border: 1px solid var(--border); text-align: center;
        }
        .vip-card h3 { color: var(--primary); margin-bottom: 10px; }
        .vip-card p { font-size: 13px; color: var(--text-secondary); margin: 0; }

        .faq-item { background: var(--bg-surface); border-radius: 12px; margin-bottom: 12px; 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: '+'; color: var(--primary); font-size: 20px; }
        .faq-item[open] summary::after { content: '-'; }
        .faq-answer { padding: 0 16px 16px; font-size: 14px; color: var(--text-secondary); }

        .trust-statement { background: var(--bg-surface); padding: 24px; border-radius: 12px; border: 1px solid var(--border); margin-bottom: 2rem; }
        .team-card { 
            background: var(--bg-elevated); padding: 20px; border-radius: 12px; margin-top: 20px; 
            border-left: 4px solid var(--primary); 
        }
        .team-card h3 { font-size: 17px; margin-bottom: 10px; }
        .team-card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }

        footer { 
            background: var(--bg-surface); padding: 40px 0 20px; border-top: 1px solid var(--border); 
            text-align: center; margin-top: 3rem;
        }
        .footer-sitemap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 600px; margin: 0 auto 30px; text-align: left; }
        .footer-link { color: var(--text-secondary); text-decoration: none; font-size: 14px; padding: 4px 0; }
        .footer-link:hover { color: var(--primary); }
        .footer-legal { font-size: 12px; color: var(--text-muted); padding: 0 20px; line-height: 1.8; }

        .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); z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-muted); display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

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

        @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 { flex-direction: row; flex-wrap: wrap; }
            .usp-item { flex: 1 1 calc(50% - 12px); }
            .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; }
        }