:root {
            --bg-main: #0A0B10;
            --bg-surface: #161B22;
            --bg-contrast: #1F2937;
            --primary-gold: #D4AF37;
            --secondary-red: #E63946;
            --accent-yellow: #FFD700;
            --premium-gradient: linear-gradient(180deg, #D4AF37 0%, #F9E2AF 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #9CA3AF;
            --text-muted: #6B7280;
            --border-strong: #D4AF37;
            --border-default: #374151;
            --success: #22C55E;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.25; }
        header {
            height: 60px;
            background: var(--bg-surface);
            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 .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(--primary-gold); }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-register { background: var(--premium-gradient); color: var(--bg-main); }
        main { max-width: 800px; 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-box {
            background: var(--bg-surface);
            border: 2px solid var(--border-strong);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-box h2 { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-value {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            color: var(--accent-yellow);
            font-weight: 900;
            margin-top: 10px;
        }
        .intro-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 20px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 12px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-contrast); border-radius: 10px; overflow: hidden; text-decoration: none; display: block; border: 1px solid var(--border-default); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; color: var(--text-primary); padding: 8px; 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: 25px; }
        .payment-item { background: var(--bg-surface); padding: 10px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 20px; color: var(--primary-gold); display: block; margin-bottom: 5px; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); font-weight: 600; }
        .guide-section { margin-bottom: 25px; }
        .guide-item { background: var(--bg-surface); border-radius: 10px; padding: 15px; margin-bottom: 15px; }
        .guide-item h2 { font-size: 18px; color: var(--accent-yellow); margin-bottom: 10px; }
        .lottery-section { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .lottery-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-default); font-size: 13px; }
        .lottery-row span:last-child { color: var(--success); font-weight: bold; }
        .providers-section { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
        .provider-tag { flex: 1 1 45%; background: var(--bg-contrast); padding: 12px; text-align: center; border-radius: 6px; font-weight: bold; color: var(--primary-gold); }
        .review-grid { margin-bottom: 25px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 4px solid var(--primary-gold); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .review-stars { color: var(--accent-yellow); font-size: 12px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; padding: 15px; margin-bottom: 10px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--primary-gold); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--bg-contrast); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 25px; border: 1px solid var(--border-strong); }
        .security-section h2 { font-size: 18px; margin-bottom: 15px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; font-size: 24px; color: var(--primary-gold); margin-bottom: 15px; }
        .security-text { font-size: 12px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            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-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 2px; }
        .nav-item span { font-size: 11px; }
        footer { background: var(--bg-surface); 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-primary); 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-secondary); text-decoration: none; font-size: 13px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); pt: 15px; }