:root {
            --primary-gold: #FFD700;
            --primary-gold-dark: #B8860B;
            --secondary-charcoal: #1A1A1A;
            --accent-red: #E63946;
            --accent-emerald: #2ECC71;
            --deep-base: #0B0B0B;
            --surface-dark: #161616;
            --surface-light: #242424;
            --overlay: rgba(0, 0, 0, 0.85);
            --primary-white: #FFFFFF;
            --secondary-gray: #B0B0B0;
            --muted-gray: #666666;
            --border-default: #333333;
            --border-subtle: #222222;
            --font-main: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-heading: 'Montserrat', 'Inter', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--deep-base);
            color: var(--primary-white);
            font-family: var(--font-main);
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--secondary-charcoal);
            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-default);
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; font-family: var(--font-heading); color: var(--primary-gold); }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
        }
        .btn-login { background-color: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        .btn-register { background-color: var(--primary-gold); color: var(--secondary-charcoal); }
        main { max-width: 1200px; margin: 0 auto; padding: 15px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--surface-light), var(--surface-dark));
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-family: var(--font-heading); color: var(--primary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 36px; font-weight: 900; color: var(--primary-white); font-family: var(--font-heading); }
        .intro-card { background-color: var(--surface-dark); border-radius: 12px; padding: 20px; margin-bottom: 25px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 12px; font-family: var(--font-heading); }
        .intro-card p { font-size: 14px; color: var(--secondary-gray); }
        .section-title { font-size: 20px; font-family: var(--font-heading); margin-bottom: 15px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background-color: var(--surface-light); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 8px; color: var(--primary-white); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 30px; }
        .payment-item { background-color: var(--surface-dark); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 11px; color: var(--secondary-gray); }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-card { background-color: var(--surface-dark); padding: 15px; border-radius: 10px; border-left: 3px solid var(--accent-emerald); }
        .guide-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary-gold); }
        .guide-card p { font-size: 13px; color: var(--secondary-gray); }
        .lottery-container { background-color: var(--surface-dark); border-radius: 12px; padding: 15px; margin-bottom: 30px; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .user-win { color: var(--accent-emerald); font-weight: 600; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
        .provider-tag { flex: 1 1 calc(50% - 10px); background: linear-gradient(45deg, #1e1e1e, #2a2a2a); padding: 12px; text-align: center; border-radius: 6px; font-weight: 600; color: var(--primary-gold); border: 1px solid var(--border-default); }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .review-card { background-color: var(--surface-light); padding: 15px; border-radius: 12px; border: 1px solid var(--border-subtle); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--secondary-gray); }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: #ffc107; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--secondary-gray); font-style: italic; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: var(--muted-gray); }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background-color: var(--surface-dark); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-gold); cursor: pointer; display: flex; justify-content: space-between; border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--secondary-gray); }
        .security-section { background-color: #0d1117; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--accent-red); margin-bottom: 30px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--accent-emerald); }
        .security-section p { font-size: 12px; color: var(--secondary-gray); margin-bottom: 10px; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background-color: var(--secondary-charcoal);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { text-decoration: none; color: var(--secondary-gray); display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item.active { color: var(--primary-gold); }
        footer { background-color: var(--secondary-charcoal); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--secondary-gray); text-decoration: none; font-size: 14px; border: 1px solid var(--border-default); padding: 8px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: left; margin-bottom: 25px; }
        .footer-links a { color: var(--muted-gray); text-decoration: none; font-size: 13px; }
        .copyright { font-size: 12px; color: var(--muted-gray); border-top: 1px solid var(--border-subtle); padding-top: 20px; }
        @keyframes countUp { from { opacity: 0.8; } to { opacity: 1; } }
        .jackpot-amount { animation: countUp 0.5s infinite alternate; }