:root {
            --primary: #D4AF37;
            --primary-hover: #FFD700;
            --secondary: #B8860B;
            --secondary-hover: #DAA520;
            --accent: #FF4500;
            --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;
            --text-link: #D4AF37;
            --text-link-hover: #FFD700;
            --btn-bg: #D4AF37;
            --btn-text: #000000;
            --btn-hover-bg: #FFD700;
            --success: #2ECC71;
            --error: #E74C3C;
            --warning: #F1C40F;
            --info: #3498DB;
            --border-def: #333333;
            --border-strong: #4D4D4D;
            --border-brand: #D4AF37;
            --font-head: '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));
            background-color: var(--bg-main);
            color: var(--text-primary);
            overflow-x: hidden;
        }
        img, video, iframe { max-width: 100%; height: auto; display: block; }
        a { color: var(--text-link); text-decoration: none; transition: color 0.3s; }
        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-weight: 600; 
            transition: transform 0.2s, background 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .btn-primary { background: var(--btn-bg); color: var(--btn-text); }
        .btn-primary:hover { background: var(--btn-hover-bg); transform: translateY(-2px); }
        h1, h2, h3 { font-family: var(--font-head); color: var(--text-primary); margin-top: 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.8rem; }
        header { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            padding: 12px 0; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            background: var(--bg-main); 
            border-bottom: 1px solid var(--border-def);
        }
        .header-logo { display: flex; align-items: center; gap: 8px; }
        .header-logo strong { font-size: 16px; font-weight: normal; }
        .header-btns { display: flex; gap: 10px; }
        main { width: 100%; }
        .hero-banner { aspect-ratio: 2/1; width: 100%; overflow: hidden; border-radius: 12px; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .hero-section { text-align: center; padding: 20px 0; }
        .section-container { 
            content-visibility: auto; 
            contain-intrinsic-size: 1px 500px; 
            margin-bottom: 40px; 
        }
        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-def);
            transition: border-color 0.3s;
        }
        .game-card:hover { border-color: var(--primary); }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-card h3 { font-size: 14px; padding: 10px; margin: 0; text-align: center; color: var(--text-secondary); }
        .info-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            margin: 15px 0;
        }
        .info-table tr { border-bottom: 1px solid var(--border-def); }
        .info-table td { padding: 12px; font-size: 14px; }
        .info-table td:first-child { font-weight: 600; color: var(--text-muted); width: 40%; }
        .toc-nav { 
            display: flex; 
            overflow-x: auto; 
            gap: 10px; 
            padding-bottom: 10px; 
            margin: 20px 0;
            scrollbar-width: none; 
        }
        .toc-nav::-webkit-scrollbar { display: none; }
        .toc-link { 
            white-space: nowrap; 
            background: var(--bg-elevated); 
            padding: 8px 16px; 
            border-radius: 20px; 
            font-size: 13px; 
            border: 1px solid var(--border-strong);
        }
        .category-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 12px; 
            margin-bottom: 30px;
        }
        .category-tile { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            text-align: center; 
            border: 1px solid var(--border-def);
        }
        .category-tile i { font-size: 24px; color: var(--primary); margin-bottom: 10px; display: block; }
        .category-tile span { display: block; font-weight: 600; margin-bottom: 5px; }
        .category-tile p { font-size: 12px; color: var(--text-muted); margin: 0; }
        .usp-tile { 
            display: flex; 
            align-items: center; 
            gap: 15px; 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 12px; 
            margin-bottom: 10px; 
            border-left: 4px solid var(--primary);
        }
        .usp-tile i { font-size: 20px; color: var(--primary); }
        .usp-content h3 { font-size: 16px; margin: 0; }
        .usp-content p { font-size: 13px; margin: 0; color: var(--text-muted); }
        .promo-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            margin-bottom: 15px; 
            border: 1px solid var(--border-def);
            position: relative;
        }
        .promo-card:hover { border-color: var(--primary); }
        .announcement-item { 
            display: flex; 
            gap: 15px; 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 12px; 
            margin-bottom: 12px; 
            font-size: 14px;
        }
        .announcement-item i { color: var(--primary); font-size: 18px; }
        .announcement-date { display: block; font-size: 11px; color: var(--text-muted); margin-top: 8px; }
        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 12px; 
        }
        .payment-card { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 12px; 
            text-align: center; 
            border: 1px solid var(--border-def);
        }
        .payment-card i { font-size: 24px; color: var(--text-secondary); margin-bottom: 10px; display: block; }
        .payment-card h3 { font-size: 14px; margin-bottom: 8px; }
        .payment-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-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; 
        }
        .provider-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 12px; 
        }
        .provider-tile { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 12px; 
            text-align: center; 
            border: 1px solid var(--border-def);
        }
        .provider-tile h3 { font-size: 15px; margin-bottom: 5px; }
        .provider-tile p { font-size: 12px; color: var(--text-muted); margin: 0; }
        .article-card { 
            display: flex; 
            gap: 15px; 
            background: var(--bg-surface); 
            padding: 12px; 
            border-radius: 12px; 
            margin-bottom: 15px; 
            border: 1px solid var(--border-def);
        }
        .article-card img { width: 100px; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }
        .article-content h3 { font-size: 15px; margin: 0 0 5px 0; }
        .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: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-def);
            text-align: center;
        }
        .vip-card h3 { color: var(--primary); }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 12px; 
            border: 1px solid var(--border-def);
        }
        .faq-item summary { 
            padding: 15px; 
            cursor: pointer; 
            font-weight: 600; 
            list-style: none; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
        }
        .faq-item p { padding: 0 15px 15px; margin: 0; color: var(--text-secondary); font-size: 14px; }
        .trust-card { 
            background: var(--bg-elevated); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--primary); 
            margin-top: 20px;
        }
        footer { 
            margin-top: 40px; 
            padding: 30px 0; 
            border-top: 1px solid var(--border-def); 
            text-align: center; 
        }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            margin-bottom: 20px; 
            text-align: left;
        }
        .footer-links a { font-size: 14px; color: var(--text-muted); }
        .legal-line { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
        .navigator { 
            position: fixed; 
            inset-inline: 0; 
            bottom: 0; 
            background: var(--bg-surface); 
            display: flex; 
            justify-content: space-around; 
            align-items: center; 
            padding: 10px 0 env(safe-area-inset-bottom, 0px); 
            border-top: 1px solid var(--border-strong); 
            z-index: 2000;
        }
        .nav-item { text-align: center; color: var(--text-muted); text-decoration: none; font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:hover { color: var(--primary); }

        @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(3, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
            .vip-grid { grid-template-columns: repeat(4, 1fr); }
            .navigator { position: static; display: none; }
            .header-logo strong { font-size: 20px; }
        }
        @media (min-width: 1200px) {
            body { padding-inline: 32px; max-width: 1200px; margin-inline: auto; }
        }