:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #F0B90B;
            --highlight: #FFFFFF;
            --bg-p: #0B0E11;
            --bg-s: #1E2329;
            --bg-t: #2B3139;
            --text-p: #FFFFFF;
            --text-s: #B7BDC6;
            --success: #0ECB81;
            --error: #F6465D;
            --border: #474D57;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-p);
            color: var(--text-p);
            font-family: 'Inter', 'Montserrat', sans-serif;
            line-height: 1.5;
            -webkit-tap-highlight-color: transparent;
        }
        header {
            background-color: var(--bg-s);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }
        header .logo-area { display: flex; align-items: center; gap: 8px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-reg { background: var(--primary); color: var(--bg-p); }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            margin: 15px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        }
        .jackpot-title { font-size: 14px; color: var(--bg-p); font-weight: 700; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--bg-p); font-family: 'Roboto Mono', monospace; margin: 5px 0; }
        .intro-card { margin: 15px; background: var(--bg-s); padding: 20px; border-radius: 12px; border: 1px solid var(--bg-t); }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
        .intro-card p { color: var(--text-s); font-size: 14px; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 20px; color: var(--highlight); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-s); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--bg-t); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .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; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: var(--bg-s); margin: 15px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-s); }
        .payment-item i { font-size: 20px; color: var(--primary); }
        .payment-item span { font-size: 10px; }
        .guide-section { padding: 15px; }
        .guide-item { background: var(--bg-t); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .guide-item h3 { color: var(--primary); margin-bottom: 8px; font-size: 16px; }
        .guide-item p { color: var(--text-s); font-size: 13px; }
        .win-records { margin: 15px; background: var(--bg-s); border-radius: 12px; padding: 15px; }
        .win-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--bg-t); font-size: 12px; }
        .win-row:last-child { border-bottom: none; }
        .win-user { color: var(--accent); font-weight: 600; }
        .win-amount { color: var(--success); font-weight: 700; }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-tag { background: var(--bg-t); color: var(--primary); padding: 10px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 14px; border: 1px solid var(--secondary); }
        .reviews { padding: 15px; }
        .review-card { background: var(--bg-s); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 4px solid var(--primary); }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: 600; display: flex; align-items: center; gap: 5px; }
        .stars { color: var(--primary); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-s); margin-bottom: 5px; }
        .review-date { font-size: 10px; color: var(--border); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--bg-s); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-q { padding: 15px; font-weight: 600; color: var(--highlight); border-bottom: 1px solid var(--bg-t); display: flex; justify-content: space-between; align-items: center; }
        .faq-a { padding: 15px; color: var(--text-s); font-size: 13px; background: var(--bg-p); }
        .security-section { margin: 15px; padding: 15px; background: rgba(14, 203, 129, 0.05); border: 1px dashed var(--success); border-radius: 12px; text-align: center; }
        .security-section h2 { color: var(--success); font-size: 18px; margin-bottom: 10px; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-top: 10px; font-size: 24px; color: var(--success); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--bg-s); display: flex; justify-content: space-around; align-items: center; border-top: 1px solid var(--border); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-s); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        footer { background: var(--bg-s); padding: 30px 15px 100px; border-top: 1px solid var(--border); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-s); font-size: 18px; text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-s); font-size: 13px; text-decoration: none; }
        .copyright { text-align: center; font-size: 12px; color: var(--border); border-top: 1px solid var(--bg-t); padding-top: 20px; }