:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #FFD700;
            --accent-red: #E63946;
            --premium-black: #0B0B0B;
            --bg-main: #000000;
            --bg-surface: #121212;
            --bg-elevated: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --success: #00C851;
            --jackpot-color: #FF00FF;
            --font-primary: 'Montserrat', sans-serif;
            --font-display: 'Bebas Neue', cursive;
        }

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

        header {
            background-color: rgba(11, 11, 11, 0.95);
            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 #333;
        }
        .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(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            text-transform: uppercase;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--text-secondary); }
        .btn-register { background: var(--primary-gold); color: var(--premium-black); }

        main { max-width: 600px; margin: 0 auto; padding-bottom: 80px; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; border-radius: 0 0 12px 12px; }

        .jackpot-container {
            background: linear-gradient(180deg, #1e1e1e 0%, #000 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            border: 2px solid var(--primary-gold);
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { font-family: var(--font-display); font-size: 28px; color: var(--secondary-gold); letter-spacing: 2px; }
        .jackpot-amount { font-family: var(--font-display); font-size: 42px; color: var(--text-primary); text-shadow: 0 0 10px var(--jackpot-color); margin: 10px 0; }

        .intro-card { background: var(--bg-surface); margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid var(--primary-gold); }
        h1 { font-size: 20px; color: var(--secondary-gold); margin-bottom: 10px; }
        h2 { font-size: 22px; color: var(--primary-gold); margin: 25px 15px 15px; font-family: var(--font-display); text-transform: uppercase; border-bottom: 1px solid #333; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--bg-elevated); border-radius: 10px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid #2a2a2a; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .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 { background: var(--bg-surface); margin: 20px 15px; padding: 15px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .payment-item { text-align: center; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); display: block; margin-bottom: 5px; }

        .guide-section { padding: 0 15px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guide-item h3 { color: var(--secondary-gold); font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }

        .lottery-list { background: var(--bg-surface); margin: 15px; border-radius: 12px; overflow: hidden; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 15px; border-bottom: 1px solid #222; font-size: 13px; }
        .lottery-item span:nth-child(2) { color: var(--success); font-weight: bold; }

        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background: linear-gradient(45deg, #1a1a1a, #333); padding: 12px; text-align: center; border-radius: 8px; font-weight: bold; color: var(--primary-gold); border: 1px solid #444; }

        .review-card { background: var(--bg-elevated); margin: 15px; padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .star-rating { color: var(--secondary-gold); font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; }
        .review-date { font-size: 11px; color: var(--muted); margin-top: 8px; text-align: right; }

        .faq-section { padding: 0 15px; }
        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primary-gold); margin-bottom: 5px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-section { text-align: center; padding: 30px 15px; background: #080808; margin-top: 20px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-badges i { font-size: 32px; color: var(--primary-gold); }
        .age-limit { border: 2px solid var(--accent-red); color: var(--accent-red); display: inline-block; padding: 5px 10px; border-radius: 50%; font-weight: bold; margin-bottom: 15px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: #121212;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-secondary); flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }

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