:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9A602;
            --secondary-red: #B22222;
            --accent-yellow: #FFD700;
            --main-bg: #0A0A0A;
            --surface-card: #161616;
            --navigation-bg: #000000;
            --overlay: rgba(0, 0, 0, 0.9);
            --primary-text: #FFFFFF;
            --secondary-text: #E0E0E0;
            --muted-text: #A0A0A0;
            --brand-text: #D4AF37;
            --inverse-text: #000000;
            --success-win: #22C55E;
            --error-danger: #EF4444;
            --warning-alert: #F59E0B;
            --info-notice: #3B82F6;
            --default-border: #262626;
            --active-border: #D4AF37;
            --divider: #1F1F1F;
            --heading-font: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;
            --body-font: 'Inter', 'Roboto', 'Arial', sans-serif;
            --num-font: 'Oswald', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: var(--main-bg); color: var(--primary-text); font-family: var(--body-font); line-height: 1.5; -webkit-font-smoothing: antialiased; padding-bottom: 70px; }
        header { position: sticky; top: 0; z-index: 1000; background-color: var(--navigation-bg); border-bottom: 1px solid var(--divider); padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; height: 60px; }
        header .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--primary-text); }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--brand-text); text-transform: uppercase; letter-spacing: 1px; }
        header .auth-btns { display: flex; gap: 10px; }
        header button { padding: 8px 16px; border-radius: 20px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; transition: 0.3s; }
        header .login-btn { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        header .reg-btn { background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light)); color: var(--inverse-text); }
        main { max-width: 1200px; margin: 0 auto; padding: 15px; }
        .hero-banner { width: 100%; aspect-ratio: 2 / 1; border-radius: 12px; overflow: hidden; cursor: pointer; margin-bottom: 20px; border: 1px solid var(--default-border); }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(180deg, #1a1a1a 0%, #000 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(--accent-yellow); font-family: var(--heading-font); font-weight: 800; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; display: block; }
        .jackpot-amount { font-family: var(--num-font); font-size: 36px; color: var(--primary-gold-light); font-weight: 700; text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
        .intro-card { background: var(--surface-card); border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid var(--divider); border-left: 4px solid var(--secondary-red); }
        .intro-card h1 { font-family: var(--heading-font); font-size: 24px; color: var(--brand-text); margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: var(--secondary-text); font-size: 15px; }
        .section-title { font-family: var(--heading-font); font-size: 20px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; color: var(--primary-gold); }
        .section-title::before { content: ""; width: 4px; height: 20px; background: var(--secondary-red); border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--surface-card); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--default-border); transition: 0.3s; display: flex; flex-direction: column; }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary-gold); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #222; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--primary-text); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-methods { background: var(--surface-card); border-radius: 15px; padding: 20px; 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: 8px; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); }
        .payment-item span { font-size: 11px; color: var(--muted-text); }
        .guides-section { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--surface-card); border-radius: 12px; padding: 18px; border: 1px solid var(--divider); }
        .guide-item h3 { color: var(--primary-gold); margin-bottom: 10px; font-size: 18px; }
        .guide-item p { font-size: 14px; color: var(--secondary-text); }
        .winners-list { background: var(--surface-card); border-radius: 15px; overflow: hidden; margin-bottom: 30px; }
        .winner-row { display: flex; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid var(--divider); align-items: center; }
        .winner-user { color: var(--secondary-text); font-weight: 500; }
        .winner-game { color: var(--muted-text); font-size: 13px; }
        .winner-val { color: var(--success-win); font-family: var(--num-font); font-weight: 600; }
        .winner-time { color: var(--muted-text); font-size: 12px; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
        .provider-tag { flex: 1 1 calc(50% - 10px); background: linear-gradient(90deg, #1e1e1e, #111); padding: 12px; border-radius: 8px; text-align: center; color: var(--brand-text); font-weight: 600; font-size: 14px; border: 1px solid var(--divider); }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--surface-card); border-radius: 12px; padding: 15px; border: 1px solid var(--divider); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-gold); font-size: 20px; }
        .review-info h4 { font-size: 15px; margin-bottom: 2px; }
        .stars { color: var(--accent-yellow); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--secondary-text); margin-bottom: 8px; font-style: italic; }
        .review-date { font-size: 11px; color: var(--muted-text); text-align: right; display: block; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--surface-card); border-radius: 10px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--divider); }
        .faq-question { padding: 15px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; color: var(--brand-text); font-size: 15px; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: var(--secondary-text); }
        .security-section { background: #111; border: 1px dashed var(--divider); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success-win); }
        .security-text { font-size: 13px; color: var(--muted-text); line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: var(--navigation-bg); border-top: 1px solid var(--divider); display: flex; justify-content: space-around; align-items: center; z-index: 1000; padding: 5px 0; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--muted-text); gap: 4px; flex: 1; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item.active { color: var(--primary-gold); }
        footer { background: #000; padding: 40px 20px 100px; border-top: 2px solid var(--primary-gold); text-align: center; }
        footer .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 30px; }
        footer .contact-link { color: var(--secondary-text); text-decoration: none; font-size: 14px; background: #161616; padding: 8px 15px; border-radius: 20px; border: 1px solid var(--divider); }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        footer .link-col a { color: var(--muted-text); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        footer .copyright { color: var(--muted-text); font-size: 12px; border-top: 1px solid var(--divider); padding-top: 20px; line-height: 1.8; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .provider-tag { flex: 1 1 calc(25% - 10px); }
        }