:root {
            --bg-p: #0B0E11;
            --bg-s: #161A1E;
            --bg-t: #1E2329;
            --bg-a: #2B3139;
            --brand-p: #FFD700;
            --brand-v: #F3BA2F;
            --brand-s: #C0C0C0;
            --gold-g: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --text-p: #FFFFFF;
            --text-s: #B0B3B8;
            --text-m: #848E9C;
            --text-c: #0B0E11;
            --success: #02C076;
            --error: #CF304A;
            --warning: #F0B90B;
            --win: #00FF7F;
            --border-l: #2F3336;
            --border-h: #474D57;
            --focus: #F3BA2F;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-p);
            color: var(--text-p);
            font-family: 'Inter', -apple-system, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--bg-s);
            border-bottom: 1px solid var(--border-l);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--brand-p); }
        .header-right { display: flex; gap: 10px; }
        .btn-login {
            background: transparent;
            color: var(--text-p);
            border: 1px solid var(--brand-p);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-register {
            background: var(--gold-g);
            color: var(--text-c);
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        main { width: 100%; max-width: 800px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: var(--bg-t);
            margin: 15px 10px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-v);
            box-shadow: 0 0 15px rgba(243, 186, 47, 0.2);
        }
        .jackpot-label { color: var(--brand-p); font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 900; color: var(--win); text-shadow: 0 0 10px rgba(0, 255, 127, 0.5); }
        .intro-card { background: var(--bg-s); margin: 10px; padding: 20px; border-radius: 12px; border: 1px solid var(--border-l); }
        .intro-card h1 { font-size: 24px; color: var(--brand-p); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-s); font-size: 14px; }
        .section-title { font-size: 20px; padding: 15px 10px 10px; color: var(--text-p); display: flex; align-items: center; gap: 8px; }
        .section-title i { color: var(--brand-p); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 10px; }
        .game-card { background: var(--bg-t); border-radius: 8px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-l); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; color: var(--text-p); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px 10px; background: var(--bg-s); margin: 10px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-m); }
        .payment-item i { font-size: 24px; color: var(--brand-s); }
        .payment-item span { font-size: 10px; }
        .guide-section { padding: 10px; }
        .guide-item { background: var(--bg-t); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 4px solid var(--brand-p); }
        .guide-item h2 { font-size: 18px; color: var(--brand-p); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-s); text-align: justify; }
        .win-marquee { background: var(--bg-a); padding: 10px 0; margin: 15px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-l); border-bottom: 1px solid var(--border-l); }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .win-entry { display: inline-flex; align-items: center; gap: 10px; background: var(--bg-p); padding: 5px 15px; border-radius: 20px; margin: 0 10px; border: 1px solid var(--border-h); }
        .win-entry span { font-size: 13px; }
        .win-entry .user { color: var(--brand-v); font-weight: 600; }
        .win-entry .amount { color: var(--win); font-weight: 700; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-mural { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px; }
        .provider-block { background: var(--bg-t); padding: 15px; border-radius: 8px; text-align: center; color: var(--brand-s); border: 1px solid var(--border-l); }
        .provider-block span { display: block; font-size: 12px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
        .reviews-section { padding: 10px; }
        .review-card { background: var(--bg-s); padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--border-l); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-m); }
        .review-header .name { font-weight: 600; color: var(--text-p); }
        .review-header .stars { color: var(--brand-p); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-s); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-m); margin-top: 8px; display: block; }
        .faq-section { padding: 10px; }
        .faq-item { background: var(--bg-t); margin-bottom: 8px; border-radius: 8px; overflow: hidden; }
        .faq-item h3 { padding: 15px; font-size: 15px; cursor: pointer; color: var(--brand-p); border-bottom: 1px solid var(--border-l); }
        .faq-item p { padding: 15px; font-size: 14px; color: var(--text-s); line-height: 1.6; }
        .security-section { background: var(--bg-s); margin: 10px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--border-l); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: var(--brand-p); }
        .security-section p { font-size: 12px; color: var(--text-m); margin-bottom: 10px; }
        .age-badge { display: inline-block; border: 2px solid var(--error); color: var(--error); border-radius: 50%; width: 35px; height: 35px; line-height: 31px; font-weight: bold; margin: 10px 0; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-s); height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border-h); z-index: 1000; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; color: var(--text-m); gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        .nav-item:active { color: var(--brand-p); }
        footer { background: var(--bg-p); padding: 30px 16px 80px; border-top: 1px solid var(--border-l); }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact h4 { color: var(--text-p); margin-bottom: 10px; }
        .footer-contact a { display: block; color: var(--text-s); text-decoration: none; margin-bottom: 5px; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-m); text-decoration: none; font-size: 13px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-m); border-top: 1px solid var(--border-l); padding-top: 20px; }