:root {
            --primary-gold: #FFD700;
            --primary-gold-glow: #FFF176;
            --secondary-navy: #0A1128;
            --accent-red: #E63946;
            --bg-body: #05070A;
            --bg-card: #121826;
            --bg-elevated: #1E293B;
            --text-high: #FFFFFF;
            --text-medium: #D1D5DB;
            --text-low: #9CA3AF;
            --border-subtle: #1F2937;
            --border-interactive: #FFD700;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-body);
            color: var(--text-medium);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
        }

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--text-high); font-weight: 700; }
        a { text-decoration: none; color: inherit; }

        header {
            background-color: 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(--border-subtle);
        }
        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(--primary-gold); }
        header .auth-btns { display: flex; gap: 10px; }
        header button {
            padding: 6px 14px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
        }
        .btn-login { background: transparent; border: 1px solid var(--primary-gold); color: var(--primary-gold); }
        .btn-reg { background: var(--primary-gold); color: #000; }

        main { max-width: 800px; margin: 0 auto; padding: 15px; }

        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }

        .jackpot-box {
            background: linear-gradient(135deg, #121826 0%, #0A1128 100%);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { color: var(--primary-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; color: var(--text-high); text-shadow: 0 0 15px var(--primary-gold-glow); font-weight: 900; }

        .intro-card { background: var(--bg-card); padding: 25px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 24px; margin-bottom: 12px; line-height: 1.2; color: var(--primary-gold); }
        .intro-card p { font-size: 16px; color: var(--text-medium); }

        .section-title { margin: 30px 0 15px; font-size: 22px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 24px; background: var(--accent-red); border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; transition: transform 0.3s; border: 1px solid var(--border-subtle); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-license { background: var(--bg-elevated); padding: 20px; border-radius: 15px; margin: 30px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 11px; color: var(--text-low); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); }

        .guide-section { margin: 30px 0; }
        .guide-card { background: var(--bg-card); padding: 20px; border-radius: 12px; margin-bottom: 15px; border-bottom: 1px solid var(--border-subtle); }
        .guide-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary-gold); }
        .guide-card p { font-size: 14px; color: var(--text-medium); text-align: justify; }

        .winners-box { background: var(--bg-card); border-radius: 15px; padding: 15px; margin: 30px 0; }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--divider); font-size: 13px; }
        .winner-row span:nth-child(1) { color: var(--primary-gold); font-weight: bold; width: 25%; }
        .winner-row span:nth-child(2) { color: var(--text-high); width: 40%; }
        .winner-row span:nth-child(3) { color: var(--success-green); font-weight: bold; width: 35%; text-align: right; }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
        .provider-tag { background: linear-gradient(45deg, #1E293B, #0F172A); color: var(--text-high); padding: 12px 20px; border-radius: 8px; flex: 1 1 calc(50% - 10px); text-align: center; font-weight: bold; font-size: 14px; border: 1px solid var(--border-subtle); }

        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 30px 0; }
        .review-card { background: var(--bg-card); padding: 20px; border-radius: 15px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-header i { font-size: 30px; color: var(--text-low); }
        .review-meta { flex-grow: 1; }
        .review-name { font-weight: bold; color: var(--text-high); }
        .review-stars { color: var(--primary-gold); font-size: 12px; }
        .review-text { font-size: 14px; font-style: italic; color: var(--text-medium); margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-low); text-align: right; }

        .faq-section { margin: 40px 0; }
        .faq-item { background: var(--bg-card); border-radius: 12px; margin-bottom: 10px; padding: 15px; }
        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary-gold); }
        .faq-item p { font-size: 14px; color: var(--text-medium); }

        .security-section { background: #0A1128; padding: 25px; border-radius: 15px; text-align: center; border: 1px dashed var(--primary-gold); margin: 30px 0; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--primary-gold); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #0A1128;
            height: 65px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 2px solid var(--primary-gold);
            z-index: 1001;
            padding: 5px 0;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-low); gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }

        footer { background: var(--bg-body); padding: 40px 20px; border-top: 1px solid var(--border-subtle); color: var(--text-low); text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: var(--primary-gold); font-size: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 13px; color: var(--text-medium); }
        .copyright { font-size: 12px; border-top: 1px solid var(--border-subtle); padding-top: 20px; margin-top: 20px; }