:root {
            --primary: #D4AF37;
            --primary-hover: #FFD700;
            --secondary: #B8860B;
            --secondary-hover: #DAA520;
            --accent: #FF4500;
            --bg-main: #0A0A0A;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2C2C2C;
            --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: #00C853;
            --error: #FF1744;
            --warning: #FFD600;
            --info: #2979FF;
            --border: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #D4AF37;
        }
        html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            font-size: clamp(15px, 3.9vw, 16px);
            line-height: 1.65;
            padding-inline: 14px;
            padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
            background-color: var(--bg-main);
            color: var(--text-primary);
            overflow-x: hidden;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-block: 12px;
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
        .header-logo img { width: 25px; height: 25px; object-fit: contain; }
        .header-logo strong { font-size: 16px; font-weight: 400; }
        .header-btns { display: flex; gap: 8px; }
        button, .btn, .cta {
            min-height: 44px;
            min-inline-size: 44px;
            padding: 12px 18px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-weight: 600;
            transition: transform 0.2s, background-color 0.2s, opacity 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        .btn-primary { background-color: var(--primary); color: var(--text-contrast); }
        .btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-1px); }
        .btn-outline { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-outline:hover { background-color: rgba(212, 175, 55, 0.1); }

        main { width: 100%; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; letter-spacing: -0.02em; color: var(--text-primary); }
        h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); line-height: 1.2; margin: 1.5rem 0; }
        h2 { font-size: clamp(1.3rem, 5.2vw, 1.8rem); line-height: 1.25; margin-top: 2.5rem; margin-bottom: 1.2rem; border-left: 4px solid var(--primary); padding-left: 12px; }
        h3 { font-size: clamp(1.05rem, 4.2vw, 1.25rem); line-height: 1.3; margin-bottom: 0.8rem; }

        .hero { display: flex; flex-direction: column; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 0; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .hero-content { padding-block: 1rem; }
        .hero-intro { margin-bottom: 1.5rem; color: var(--text-secondary); }

        .games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-block: 1rem; }
        .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); }
        .game-card:hover { transform: scale(1.02); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; margin: 0; text-align: center; color: var(--text-secondary); }

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

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

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

        .announcement-list { display: flex; flex-direction: column; gap: 12px; margin-block: 1rem; }
        .announcement-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; border-left: 4px solid var(--primary); }
        .announcement-card i { color: var(--primary); margin-right: 8px; }
        .announcement-card h3 { font-size: 16px; margin-bottom: 8px; display: flex; align-items: center; }
        .announcement-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
        .announcement-date { font-size: 12px; color: var(--text-muted); display: block; }

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

        .promo-card { background: var(--bg-surface); padding: 20px; border-radius: 16px; margin-block: 12px; border: 1px solid var(--border); }
        .promo-card h3 { color: var(--primary); }
        .promo-card p { color: var(--text-secondary); margin-bottom: 16px; }

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

        .guide-step { display: flex; gap: 16px; padding-block: 1rem; border-bottom: 1px solid var(--border); }
        .step-num { min-width: 32px; height: 32px; background: var(--primary); color: var(--text-contrast); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
        .step-content h3 { margin-bottom: 4px; }
        .step-content h3 a { color: inherit; text-decoration: none; }

        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-block: 1rem; }
        .provider-card { background: var(--bg-surface); padding: 16px; border-radius: 12px; text-align: center; border: 1px solid var(--border); }
        .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: 16px; border-radius: 12px; margin-block: 12px; }
        .player-guide h3 { font-size: 17px; margin-bottom: 4px; }
        .guide-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; display: block; }

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

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

        .faq-item { background: var(--bg-surface); margin-block: 8px; border-radius: 12px; overflow: hidden; }
        .faq-item summary { padding: 16px; cursor: pointer; font-weight: 600; color: var(--text-primary); 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-item p { padding: 0 16px 16px; color: var(--text-secondary); margin: 0; 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-block: 2rem; margin-top: 3rem; border-top: 2px solid var(--primary); }
        .footer-sitemap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 2rem; }
        .footer-sitemap a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-legal { font-size: 12px; color: var(--text-muted); text-align: center; line-height: 1.8; }

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

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

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