:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E498;
            --primary-gold-dark: #996515;
            --secondary-charcoal: #121212;
            --accent-emerald: #00C853;
            --main-bg: #0A0A0A;
            --surface-card: #1E1E1E;
            --surface-elevated: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #757575;
            --border-default: #333333;
            --border-active: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-bg);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--secondary-charcoal);
            border-bottom: 2px solid var(--primary-gold);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 500; color: var(--primary-gold); }
        header .auth-buttons { display: flex; gap: 10px; }
        header button {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            transition: transform 0.2s;
        }
        header button:active { transform: scale(0.95); }
        .login-btn { background-color: transparent; color: var(--text-primary); border: 1px solid var(--primary-gold); }
        .register-btn { background-color: var(--primary-gold); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 15px; }
        .banner { width: 100%; aspect-ratio: 2 / 1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(145deg, #1e1e1e, #0a0a0a);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-label { font-family: 'Oswald', sans-serif; color: var(--primary-gold); font-size: 20px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 36px; color: var(--primary-gold-light); text-shadow: 0 0 10px rgba(212,175,55,0.5); margin: 5px 0; }
        .intro-card { background-color: var(--surface-card); padding: 25px; border-radius: 15px; border-left: 4px solid var(--primary-gold); margin-bottom: 25px; }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title { font-family: 'Montserrat', sans-serif; font-size: 20px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-left: 3px solid var(--accent-emerald); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background-color: var(--surface-card); border-radius: 12px; overflow: hidden; text-decoration: none; transition: 0.3s; border: 1px solid var(--border-default); }
        .game-card:hover { border-color: var(--primary-gold); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { color: var(--text-primary); font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: 'Inter', sans-serif; font-weight: 500; }
        .payment-section { background-color: var(--surface-elevated); padding: 20px; border-radius: 15px; margin-bottom: 25px; }
        .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: 8px; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); }
        .payment-item span { font-size: 10px; color: var(--text-muted); text-transform: uppercase; }
        .guides-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-box { background-color: var(--surface-card); padding: 15px; border-radius: 10px; border-top: 2px solid var(--border-default); }
        .guide-box h2 { font-size: 18px; color: var(--primary-gold-light); margin-bottom: 8px; font-family: 'Montserrat', sans-serif; }
        .guide-box p { font-size: 14px; color: var(--text-secondary); }
        .lottery-section { background-color: var(--secondary-charcoal); border-radius: 15px; padding: 15px; margin-bottom: 25px; border: 1px solid var(--border-default); }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--divider); }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--accent-emerald); font-weight: 600; font-size: 14px; }
        .lottery-info { text-align: right; }
        .lottery-amount { color: var(--primary-gold); font-weight: 700; font-size: 14px; }
        .lottery-game { font-size: 12px; color: var(--text-muted); }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
        .provider-tag { flex: 1; min-width: calc(50% - 5px); background: linear-gradient(90deg, #1E1E1E, #252525); padding: 12px; text-align: center; border-radius: 8px; color: var(--primary-gold); font-weight: 700; font-family: 'Oswald', sans-serif; border: 1px solid var(--border-default); }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background-color: var(--surface-card); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-user-info h3 { font-size: 14px; color: var(--text-primary); }
        .review-stars { color: #FFCC00; font-size: 12px; }
        .review-content { font-size: 14px; color: var(--text-secondary); font-style: italic; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--text-muted); }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background-color: var(--surface-card); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; color: var(--primary-gold-light); display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }
        .security-section { background-color: #121212; padding: 20px; border-radius: 15px; text-align: center; border: 1px dashed var(--primary-gold); margin-bottom: 25px; }
        .security-logos { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-emerald); }
        .security-text { font-size: 13px; color: var(--text-muted); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background-color: #121212; border-top: 1px solid var(--primary-gold); display: flex; justify-content: space-around; padding: 10px 5px; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .navigator a { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; width: 20%; }
        .navigator i { font-size: 20px; }
        .navigator a:nth-child(3) { color: var(--primary-gold); font-weight: bold; transform: translateY(-5px); }
        .navigator a:nth-child(3) i { font-size: 24px; background: var(--secondary-charcoal); padding: 8px; border-radius: 50%; border: 1px solid var(--primary-gold); }
        footer { background-color: #050505; padding: 30px 15px 80px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: var(--primary-gold); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
        .footer-links a:hover { color: var(--primary-gold); }
        .footer-copy { color: var(--text-muted); font-size: 12px; border-top: 1px solid var(--divider); padding-top: 20px; }