:root {
            --primary: #FFD700;
            --primary-variant: #FFC107;
            --secondary: #D32F2F;
            --accent: #00C4FF;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #B8860B 100%);
            --bg-base: #0A0B0D;
            --bg-surface: #161A1E;
            --bg-elevated: #21262C;
            --text-primary: #FFFFFF;
            --text-secondary: #929AA5;
            --border-default: #363C4E;
            --success: #0ECB81;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header {
            background: var(--bg-surface);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .brand { display: flex; align-items: center; gap: 8px; }
        .brand img { width: 25px; height: 25px; object-fit: contain; }
        .brand strong { font-size: 16px; font-weight: 400; }
        .auth-btns { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: opacity 0.2s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--gold-gradient); color: #000; }
        .banner-box { width: 100%; cursor: pointer; }
        .banner-box img { width: 100%; height: auto; aspect-ratio: 2/1; display: block; }
        .jackpot-section {
            background: var(--bg-elevated);
            margin: 20px 0;
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            border: 1px solid var(--primary);
        }
        .jackpot-label { color: var(--primary); font-size: 14px; text-transform: uppercase; font-weight: 700; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }
        .intro-card { background: var(--bg-surface); padding: 25px; border-radius: 12px; margin-bottom: 25px; }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 14px; }
        .section-title { font-size: 20px; margin-bottom: 15px; padding-left: 10px; border-left: 4px solid var(--primary); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: var(--text-secondary); }
        .payments-section { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 30px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .payment-icons i { font-size: 28px; color: var(--text-secondary); }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-elevated); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-marquee { background: rgba(0,0,0,0.3); padding: 10px 0; overflow: hidden; margin-bottom: 30px; white-space: nowrap; border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: var(--bg-elevated); padding: 5px 15px; border-radius: 20px; margin-right: 15px; font-size: 12px; border: 1px solid var(--border-default); }
        .winner-tag strong { color: var(--success); margin-left: 5px; }
        @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; padding: 10px; background: var(--bg-surface); border-radius: 12px; }
        .provider-name { padding: 6px 12px; background: var(--bg-elevated); border-radius: 4px; font-size: 12px; color: var(--text-secondary); border: 1px solid var(--border-default); }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border-left: 3px solid var(--primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-secondary); }
        .review-user h4 { font-size: 14px; }
        .review-user .stars { color: var(--primary); font-size: 10px; }
        .review-content { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); padding: 15px; border-radius: 8px; margin-bottom: 10px; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: var(--primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .responsible-gaming { background: var(--secondary); padding: 20px; border-radius: 12px; margin-bottom: 30px; text-align: center; }
        .responsible-gaming h2 { font-size: 18px; margin-bottom: 10px; }
        .responsible-gaming p { font-size: 13px; margin-bottom: 15px; }
        .age-badge { display: inline-block; border: 2px solid #fff; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; font-size: 14px; }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .copyright { text-align: center; font-size: 11px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1a1d24;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-secondary); font-size: 10px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines, .reviews-grid { grid-template-columns: 1fr 1fr; }
        }