:root {
            --brand-primary: #FFD700;
            --brand-secondary: #D4AF37;
            --brand-accent: #E63946;
            --brand-glow: rgba(255, 215, 0, 0.4);
            --bg-base: #0A0B0D;
            --bg-surface: #161A1E;
            --bg-elevated: #21262C;
            --bg-gradient: linear-gradient(180deg, #161A1E 0%, #0A0B0D 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-muted: #707A8A;
            --text-brand: #FFD700;
            --semantic-success: #0ECB81;
            --border-subtle: #2B3139;
            --border-brand: #D4AF37;
            --font-primary: 'Montserrat', 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background: var(--bg-surface);
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--text-brand); }
        header .auth-btns { display: flex; gap: 10px; }
        header .auth-btns button {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-brand) !important; }
        .btn-register { background: var(--brand-primary); color: #000; }
        main { max-width: 1000px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .jackpot-container {
            background: var(--bg-gradient);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-brand);
            text-align: center;
            box-shadow: 0 0 15px var(--brand-glow);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 14px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px var(--brand-primary); }
        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-size: 20px; color: var(--brand-primary); margin-bottom: 12px; }
        .platform-intro p { color: var(--text-secondary); font-size: 14px; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: var(--brand-primary); display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-secondary); }
        .payment-methods { background: var(--bg-elevated); margin: 15px; padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .payment-item { text-align: center; font-size: 12px; color: var(--text-muted); }
        .payment-item i { display: block; font-size: 24px; color: var(--brand-primary); margin-bottom: 5px; }
        .guides-section { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 4px solid var(--brand-primary); }
        .guide-card h2 { font-size: 16px; margin-bottom: 8px; color: var(--text-primary); }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .marquee-box { background: #000; padding: 10px; margin: 15px 0; overflow: hidden; }
        .marquee-content { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; gap: 30px; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .lottery-item { font-size: 13px; color: var(--text-secondary); }
        .lottery-item span { color: var(--brand-primary); font-weight: 600; }
        .provider-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 15px; }
        .provider-item { background: var(--bg-elevated); padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; font-size: 14px; color: var(--brand-secondary); }
        .comment-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--text-muted); }
        .comment-info h3 { font-size: 14px; color: var(--text-primary); }
        .stars { color: var(--brand-primary); font-size: 12px; }
        .comment-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; color: var(--brand-primary); border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-secondary); background: rgba(255,255,255,0.02); }
        .security-section { padding: 20px; text-align: center; background: var(--bg-elevated); margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--brand-primary); }
        .security-text { font-size: 12px; color: var(--text-muted); max-width: 80%; margin: 0 auto; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-base); padding: 30px 15px 100px; border-top: 1px solid var(--border-subtle); }
        footer .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        footer .contact-link { color: var(--brand-primary); font-size: 14px; font-weight: 600; }
        footer .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        footer .footer-links a { color: var(--text-muted); font-size: 13px; }
        footer .copyright { text-align: center; font-size: 12px; color: var(--text-muted); padding-top: 20px; border-top: 1px solid var(--border-subtle); }