:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #996515;
            --secondary-navy: #0B101B;
            --accent-red: #E63946;
            --main-canvas: #05070A;
            --surface-card: #121826;
            --surface-elevated: #1C2433;
            --primary-text: #F8F9FA;
            --secondary-text: #ADB5BD;
            --muted-text: #6C757D;
            --interactive-text: #D4AF37;
            --success: #28A745;
            --jackpot: #FF00FF;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numbers: 'Roboto Mono', monospace;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-canvas);
            color: var(--primary-text);
            font-family: var(--font-body);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background: var(--secondary-navy);
            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(--primary-gold-dark);
        }
        .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(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register {
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            border: none;
            font-weight: 600;
        }
        .btn-login { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background: var(--primary-gold); color: var(--secondary-navy); }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 20px;
            cursor: pointer;
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(145deg, #1C2433, #0B101B);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-box h2 { font-family: var(--font-heading); color: var(--jackpot); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-numbers); font-size: 32px; color: var(--primary-gold-light); font-weight: 800; }
        .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-size: 24px; color: var(--primary-gold); margin-bottom: 10px; font-family: var(--font-heading); }
        .intro-card p { font-size: 14px; color: var(--secondary-text); }
        .section-title { font-family: var(--font-heading); font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--accent-red); display: inline-block; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--surface-card); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--surface-elevated); 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(--primary-text); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license { background: var(--surface-elevated); padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 25px; }
        .pl-item { text-align: center; font-size: 10px; color: var(--muted-text); }
        .pl-item i { display: block; font-size: 24px; color: var(--primary-gold-light); margin-bottom: 5px; }
        .guides-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: var(--surface-card); padding: 15px; border-radius: 8px; }
        .guide-item h3 { color: var(--primary-gold); font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--secondary-text); }
        .lottery-container { background: var(--surface-card); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .lottery-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--surface-elevated); font-size: 12px; }
        .lottery-row span:nth-child(2) { color: var(--primary-gold); font-weight: bold; }
        .lottery-row span:last-child { color: var(--success); font-family: var(--font-numbers); }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-btn { background: var(--secondary-navy); border: 1px solid var(--primary-gold-dark); padding: 10px; text-align: center; border-radius: 6px; color: var(--primary-gold-light); font-weight: 600; font-size: 14px; }
        .reviews-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--surface-elevated); padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--muted-text); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: #FFC107; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--secondary-text); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--muted-text); }
        .faq-container { margin-bottom: 25px; }
        .faq-item { background: var(--surface-card); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--surface-elevated); color: var(--primary-gold-light); cursor: pointer; }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--secondary-text); }
        .security-section { background: var(--surface-elevated); padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success); }
        .security-text { font-size: 12px; color: var(--muted-text); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--secondary-navy);
            height: 65px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 2px solid var(--primary-gold);
            z-index: 1001;
        }
        .nav-item { text-align: center; text-decoration: none; color: var(--secondary-text); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; color: var(--primary-gold); }
        footer {
            background: var(--secondary-navy);
            padding: 30px 15px 100px;
            color: var(--secondary-text);
            text-align: center;
            border-top: 1px solid var(--surface-elevated);
        }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-contact a { color: var(--primary-gold); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--muted-text); text-decoration: none; font-size: 13px; }
        .footer-copy { font-size: 11px; color: var(--muted-text); border-top: 1px solid var(--surface-elevated); padding-top: 15px; }