:root {
            --primary-gold: #FFD700;
            --primary-gold-hover: #FFC400;
            --accent-gold-glow: #FFF176;
            --brand-secondary: #1A1D23;
            --main-bg: #0B0E11;
            --surface-card: #1E2329;
            --surface-overlay: #2B3139;
            --text-high: #FFFFFF;
            --text-medium: #B7BDC6;
            --text-brand: #FFD700;
            --success: #02C076;
            --error: #F84960;
            --border-default: #2B2F36;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
            --font-numbers: 'Orbitron', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-high);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--brand-secondary);
            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-default);
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-brand); }
        .header-right { display: flex; gap: 10px; }
        .btn-login {
            background: transparent;
            border: 1px solid var(--primary-gold);
            color: var(--primary-gold);
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
        }
        .btn-register {
            background: var(--primary-gold);
            border: none;
            color: #000;
            padding: 6px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(135deg, #1E2329 0%, #0B0E11 100%);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary-gold); font-size: 18px; margin-bottom: 10px; font-weight: 600; }
        .jackpot-amount {
            font-family: var(--font-numbers);
            font-size: 32px;
            color: var(--accent-gold-glow);
            text-shadow: 0 0 10px rgba(255, 241, 118, 0.5);
        }
        .intro-card {
            background: var(--surface-card);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-gold);
        }
        .intro-card h1 { font-family: var(--font-heading); font-size: 20px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { color: var(--text-medium); font-size: 14px; }
        h2 { font-family: var(--font-heading); font-size: 18px; margin: 20px 0 15px; border-left: 3px solid var(--primary-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--surface-card); border-radius: 10px; overflow: hidden; text-decoration: none; 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-high); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
        .payment-item { background: var(--surface-overlay); padding: 10px; border-radius: 8px; text-align: center; }
        .payment-item i { font-size: 20px; color: var(--primary-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-medium); }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-card { background: var(--surface-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .guide-card h3 { color: var(--primary-gold); margin-bottom: 8px; font-size: 16px; }
        .guide-card p { font-size: 13px; color: var(--text-medium); }
        .winners-list { background: var(--surface-card); border-radius: 12px; padding: 15px; margin-bottom: 20px; }
        .winner-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .winner-item:last-child { border: none; }
        .win-amt { color: var(--success); font-weight: 600; }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-item { background: linear-gradient(45deg, #1A1D23, #2B3139); padding: 15px; border-radius: 8px; text-align: center; color: var(--primary-gold); font-weight: 700; border: 1px solid var(--border-default); }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .review-card { background: var(--surface-card); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-medium); }
        .stars { color: var(--warning-alert); font-size: 12px; }
        .faq-section { margin-bottom: 20px; }
        .faq-item { background: var(--surface-card); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-gold); font-size: 14px; cursor: pointer; border-bottom: 1px solid var(--border-default); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-medium); }
        .security-section { background: var(--surface-overlay); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .age-limit { border: 2px solid var(--error); color: var(--error); display: inline-block; padding: 5px 10px; border-radius: 50%; font-weight: 800; margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--brand-secondary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-medium); font-size: 11px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item:active { color: var(--primary-gold); }
        footer { background: var(--main-bg); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: var(--text-medium); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-medium); text-decoration: none; font-size: 12px; }
        .footer-copy { text-align: center; color: var(--text-medium); font-size: 11px; }