:root {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-tertiary: #262626;
            --bg-surface: #121212;
            --brand-gold: #D4AF37;
            --brand-gold-light: #FFD700;
            --trust-blue: #0047AB;
            --success: #28A745;
            --error: #DC3545;
            --text-main: #FFFFFF;
            --text-secondary: #B0B3B8;
            --border-strong: #333333;
            --border-soft: #222222;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-main);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-strong);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--text-main); }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        header .login-btn { background: transparent; color: var(--text-main); border: 1px solid var(--brand-gold); }
        header .register-btn { background: linear-gradient(to bottom, var(--brand-gold-light), var(--brand-gold)); color: #000; }
        main { max-width: 800px; margin: 0 auto; padding: 15px; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; cursor: pointer; margin-bottom: 20px; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: radial-gradient(circle, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
            border: 1px solid var(--brand-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-box h2 { font-family: 'Bebas Neue', cursive; color: var(--brand-gold-light); font-size: 24px; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-value { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 10px var(--brand-gold); }
        .intro-card { background: var(--bg-surface); border-radius: 12px; padding: 20px; margin-bottom: 25px; border: 1px solid var(--border-soft); }
        .intro-card h1 { font-size: 20px; color: var(--brand-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); text-align: justify; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid var(--brand-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-secondary); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-soft); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; color: var(--text-main); padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .payment-item { background: var(--bg-surface); padding: 10px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-soft); }
        .payment-item i { font-size: 20px; color: var(--brand-gold); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: var(--text-secondary); }
        .guide-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; border: 1px solid var(--border-soft); }
        .guide-card h2 { font-size: 16px; color: var(--brand-gold); margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: var(--text-secondary); }
        .winners-box { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 25px; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-soft); font-size: 12px; }
        .winner-row:last-child { border: none; }
        .winner-name { color: var(--brand-gold); font-weight: 600; }
        .winner-amount { color: var(--success); font-weight: bold; }
        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
        .provider-tag { flex: 1; min-width: 45%; background: var(--bg-tertiary); padding: 12px; border-radius: 8px; text-align: center; color: var(--brand-gold); font-weight: bold; font-size: 14px; border: 1px solid var(--brand-gold); }
        .reviews-container { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: var(--bg-secondary); padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-header i { color: var(--brand-gold); font-size: 20px; }
        .review-user { font-weight: 600; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-secondary); margin-top: 5px; }
        .review-date { font-size: 11px; color: var(--text-secondary); margin-top: 8px; text-align: right; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; overflow: hidden; border: 1px solid var(--border-soft); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--brand-gold); }
        .faq-answer { padding: 0 15px 15px 15px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
        .security-box { background: linear-gradient(135deg, #0d0d0d, #1a1a1a); border-radius: 12px; padding: 20px; border: 1px solid var(--trust-blue); text-align: center; margin-bottom: 25px; }
        .security-box h2 { font-size: 18px; margin-bottom: 12px; color: var(--text-main); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 24px; color: var(--trust-blue); }
        .security-box p { font-size: 12px; color: var(--text-secondary); margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); border-top: 1px solid var(--border-strong); display: flex; justify-content: space-around; padding: 10px 0; 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: 3px; }
        .nav-item span { font-size: 11px; }
        footer { background: var(--bg-secondary); padding: 30px 15px 80px 15px; border-top: 1px solid var(--border-strong); }
        .footer-row { margin-bottom: 20px; }
        .footer-title { color: var(--brand-gold); font-size: 16px; font-weight: bold; margin-bottom: 10px; display: block; }
        .contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .footer-link { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: 0.3s; }
        .footer-link:hover { color: var(--brand-gold); }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-secondary); border-top: 1px solid var(--border-soft); padding-top: 20px; }
        @keyframes scrollJackpot {
            0% { transform: translateY(0); }
            100% { transform: translateY(-5px); }
        }
        .scrolling-num { display: inline-block; animation: scrollJackpot 0.5s infinite alternate ease-in-out; }