:root {
            --bg-color: #1a1d24;
            --accent-gold: #FFD700;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --card-bg: #252932;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-color); color: var(--text-white); line-height: 1.6; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        header { background-color: rgba(26, 29, 36, 0.95); position: sticky; top: 0; z-index: 1000; padding: 10px 15px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 5px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background-color: transparent; border: 1px solid var(--accent-gold); color: var(--accent-gold); }
        .btn-register { background: var(--cta-gradient); color: white; }
        .banner { width: 100%; cursor: pointer; display: block; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-container { margin: 20px 15px; padding: 20px; background: radial-gradient(circle, #3a3f4b 0%, #1a1d24 100%); border: 2px solid var(--accent-gold); border-radius: 15px; text-align: center; box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
        .jackpot-label { color: var(--accent-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #FFD700; font-family: 'Courier New', monospace; }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--card-bg); border-radius: 15px; }
        .intro-card h1 { font-size: 22px; color: var(--accent-gold); margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .game-section { padding: 0 15px 20px; }
        .game-section h2 { font-size: 20px; margin-bottom: 15px; padding-left: 10px; border-left: 4px solid var(--accent-gold); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; transition: transform 0.3s; display: block; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-bottom: 2px solid #333; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 11px; color: var(--text-gray); }
        .payment-licensing { margin: 20px 15px; padding: 20px; background: #22262f; border-radius: 15px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: var(--text-gray); }
        .guidelines { padding: 20px 15px; display: grid; gap: 15px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 12px; border-top: 2px solid var(--accent-gold); }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; color: var(--accent-gold); }
        .winners-marquee { background: #000; padding: 10px 0; margin: 20px 0; overflow: hidden; position: relative; }
        .marquee-track { display: flex; animation: scroll 40s linear infinite; white-space: nowrap; }
        .winner-tag { display: inline-flex; align-items: center; background: #333; padding: 5px 15px; border-radius: 20px; margin-right: 20px; font-size: 12px; border: 1px solid #444; }
        .winner-tag strong { color: var(--accent-gold); margin-right: 5px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { margin: 20px 15px; padding: 15px; background: #111; border-radius: 10px; text-align: center; font-size: 14px; color: var(--text-gray); }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
        .provider-name { background: #222; padding: 4px 10px; border-radius: 5px; color: #fff; }
        .comments-section { padding: 20px 15px; }
        .comment-card { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-header i { font-size: 24px; color: var(--accent-gold); }
        .comment-meta { flex: 1; }
        .comment-meta h3 { font-size: 14px; margin: 0; }
        .stars { color: var(--accent-gold); font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-gray); float: right; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: #252932; padding: 15px; border-radius: 10px; margin-bottom: 10px; }
        .faq-item h2 { font-size: 16px; margin-bottom: 8px; color: var(--accent-gold); }
        .faq-item p { font-size: 14px; color: var(--text-gray); }
        .security-section { margin: 20px 15px 100px; padding: 20px; border: 1px dashed var(--text-gray); border-radius: 15px; text-align: center; }
        .security-icons { font-size: 30px; display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-text { font-size: 12px; color: var(--text-gray); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: var(--text-gray); }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        footer { background: #0e1014; padding: 30px 15px 100px; border-top: 2px solid var(--accent-gold); }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { font-size: 14px; color: var(--accent-gold); border-bottom: 1px solid var(--accent-gold); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: var(--text-gray); font-size: 13px; }
        .copyright { text-align: center; font-size: 12px; color: var(--text-gray); }