:root {
            --primary: #FFD700;
            --primary-variant: #C5A028;
            --secondary: #E63946;
            --accent-gold: #F9A825;
            --premium-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
            --bg-base: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --text-highlight: #FFD700;
            --border-default: #2C2C2C;
            --border-active: #FFD700;
            --success: #00C853;
            --font-main: 'Inter', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
            --font-numeric: 'Roboto Mono', monospace;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-base); 
            color: var(--text-primary); 
            font-family: var(--font-main); 
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        a { text-decoration: none; color: inherit; }

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn {
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--premium-gradient); color: #000; }

        main { max-width: 600px; 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: var(--bg-elevated);
            border: 2px solid var(--accent-gold);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-heading); font-weight: 900; font-size: 14px; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-family: var(--font-numeric); font-size: 32px; color: var(--primary); font-weight: 700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

        .intro-section { margin-bottom: 30px; text-align: center; }
        .intro-section h1 { font-family: var(--font-heading); font-size: 24px; color: var(--primary); margin-bottom: 12px; }
        .intro-section p { color: var(--text-secondary); font-size: 14px; }

        .section-title { font-family: var(--font-heading); font-size: 20px; color: var(--text-primary); margin: 20px 0 15px; border-left: 4px solid var(--primary); padding-left: 10px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); 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 { font-size: 14px; padding: 8px; text-align: center; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-license { background: var(--bg-surface); padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .payment-item i { font-size: 24px; color: var(--text-secondary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-muted); }

        .guide-section { margin-bottom: 30px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 10px; margin-bottom: 15px; border-left: 3px solid var(--primary-variant); }
        .guide-item h2 { font-size: 18px; color: var(--primary); margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .lottery-marquee { background: #000; padding: 10px; border-radius: 8px; overflow: hidden; height: 150px; position: relative; border: 1px solid var(--border-default); }
        .marquee-content { animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .lottery-item { padding: 8px 0; border-bottom: 1px solid #111; font-size: 12px; display: flex; justify-content: space-between; }
        .lottery-user { color: var(--success); }
        .lottery-win { color: var(--primary); font-weight: bold; }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
        .provider-tag { flex: 1 1 calc(50% - 10px); background: linear-gradient(90deg, #1f1f1f, #161616); padding: 10px; border-radius: 6px; text-align: center; font-weight: bold; font-size: 14px; color: var(--text-secondary); border: 1px solid var(--border-default); }

        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-muted); }
        .review-name { font-weight: bold; font-size: 14px; }
        .review-stars { color: var(--accent-gold); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--text-muted); margin-top: 5px; text-align: right; }

        .faq-section { margin-bottom: 30px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid var(--border-default); padding-bottom: 10px; }
        .faq-item h2 { font-size: 16px; color: var(--primary); margin-bottom: 5px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-section { text-align: center; padding: 20px; background: var(--bg-surface); border-radius: 12px; border: 1px dashed var(--text-muted); }
        .security-icons { font-size: 30px; color: var(--text-muted); display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; }
        .security-text { font-size: 12px; color: var(--text-muted); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #121212;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 12px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item:active { color: var(--primary); }

        footer {
            background: #050505;
            padding: 30px 15px 100px;
            text-align: center;
            font-size: 14px;
            color: var(--text-secondary);
        }
        footer .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        footer .contact-row a { color: var(--primary); }
        footer .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: left; margin-bottom: 25px; }
        footer .footer-links a { color: var(--text-muted); font-size: 13px; }
        footer .copyright { border-top: 1px solid var(--border-default); padding-top: 20px; font-size: 12px; color: var(--text-muted); }