:root {
            --primary-gold: #D4AF37;
            --primary-gold-light: #F9E076;
            --primary-gold-dark: #996515;
            --secondary-blue: #0A192F;
            --accent-gold: #FFD700;
            --main-dark: #050505;
            --surface-dark: #121212;
            --elevated-dark: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --gold-border: #8E6E17;
            --success-win: #22C55E;
            --jackpot-red: #FF0000;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--main-dark);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 80px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; }
        header {
            background: var(--surface-dark);
            border-bottom: 1px solid var(--gold-border);
            padding: 12px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--primary-gold); }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; border: 1px solid var(--primary-gold); color: var(--primary-gold); }
        .btn-register { background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark)); color: var(--main-dark); }
        main { padding: 0; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            margin: 20px 15px;
            background: linear-gradient(180deg, #1e1e1e 0%, #0a0a0a 100%);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { font-size: 14px; color: var(--primary-gold-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 36px; color: var(--jackpot-red); font-weight: 700; text-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }
        .intro-card { margin: 20px 15px; background: var(--surface-dark); border-radius: 15px; padding: 25px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-size: 24px; color: var(--primary-gold); margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { font-size: 15px; color: var(--text-secondary); text-align: justify; }
        .section-title { padding: 0 15px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 20px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: var(--elevated-dark); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payments-section { padding: 25px 15px; background: var(--surface-dark); margin: 30px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .payment-item { text-align: center; }
        .payment-item i { font-size: 24px; color: var(--primary-gold); margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: var(--text-secondary); }
        .guides-container { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--elevated-dark); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .guide-item h3 { color: var(--primary-gold); font-size: 18px; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: var(--text-secondary); }
        .winners-list { margin: 20px 15px; background: var(--surface-dark); border-radius: 12px; padding: 15px; border: 1px solid var(--border-subtle); }
        .winner-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2a2a; font-size: 13px; }
        .winner-row:last-child { border-bottom: none; }
        .win-user { color: var(--text-primary); font-weight: 600; }
        .win-game { color: var(--text-secondary); }
        .win-amount { color: var(--success-win); font-weight: 700; }
        .providers-section { padding: 20px 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-block { background: var(--secondary-blue); padding: 15px; text-align: center; border-radius: 8px; border: 1px solid var(--primary-gold-dark); font-weight: 700; color: var(--primary-gold-light); }
        .reviews-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--elevated-dark); padding: 15px; border-radius: 12px; border-left: 4px solid var(--primary-gold); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { color: var(--primary-gold); font-size: 20px; }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: var(--accent-gold); font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin: 8px 0; font-style: italic; }
        .review-date { font-size: 11px; color: var(--disabled); }
        .faq-section { padding: 25px 15px; }
        .faq-item { margin-bottom: 15px; background: var(--surface-dark); border-radius: 8px; overflow: hidden; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-gold-light); font-size: 15px; border-bottom: 1px solid var(--border-subtle); }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); }
        .security-section { margin: 20px 15px; padding: 20px; background: #0c1a10; border-radius: 12px; border: 1px solid #1b4d2e; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--success-win); }
        .security-text { font-size: 12px; color: #a0c4ab; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--surface-dark);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--gold-border);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; text-align: center; color: var(--text-secondary); flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        footer {
            background: var(--main-dark);
            padding: 40px 15px 100px;
            border-top: 1px solid var(--border-subtle);
        }
        .footer-contact { text-align: center; margin-bottom: 30px; }
        .footer-contact h2 { font-size: 18px; color: var(--primary-gold); margin-bottom: 15px; }
        .contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .contact-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-bottom { text-align: center; border-top: 1px solid #1a1a1a; padding-top: 20px; font-size: 12px; color: var(--disabled); }