:root {
            --bg-color: #1a1d24;
            --card-bg: #252a34;
            --primary-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --text-main: #ffffff;
            --text-dim: #b0b3b8;
            --accent-green: #00ff88;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #111317; 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 #333; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--primary-gold); letter-spacing: 1px; }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: var(--text-main); border: 1px solid var(--text-dim); }
        .btn-register { background: var(--cta-gradient); color: white; }
        .banner-container { width: 100%; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 2/1; display: block; object-fit: cover; }
        .jackpot-box { background: radial-gradient(circle, #2c3440 0%, #1a1d24 100%); padding: 20px; text-align: center; border-bottom: 2px solid var(--primary-gold); }
        .jackpot-label { font-size: 14px; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px; background: var(--card-bg); margin: 15px; border-radius: 12px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-size: 20px; margin-bottom: 10px; color: var(--primary-gold); line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-dim); }
        .section-title { padding: 15px 15px 5px; font-size: 18px; display: flex; align-items: center; gap: 10px; }
        .section-title i { color: var(--primary-gold); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--card-bg); border-radius: 10px; overflow: hidden; position: relative; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
        .game-provider { font-size: 11px; color: var(--text-dim); }
        .payments-section { background: #111317; padding: 25px 15px; text-align: center; margin: 20px 0; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; }
        .guidelines-grid { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 16px; color: var(--primary-gold); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-dim); }
        .winners-ticker { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .ticker-track { display: inline-flex; animation: scrollTicker 40s linear infinite; }
        @keyframes scrollTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { display: inline-flex; align-items: center; gap: 10px; background: #222; padding: 5px 15px; border-radius: 20px; margin: 0 10px; border: 1px solid #444; }
        .win-user { color: var(--accent-green); font-weight: bold; font-size: 13px; }
        .win-amount { color: var(--primary-gold); font-weight: bold; font-size: 13px; }
        .providers-wall { padding: 20px; text-align: center; background: var(--card-bg); margin: 15px; border-radius: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .provider-tag { background: #1a1d24; padding: 5px 12px; border-radius: 5px; font-size: 12px; border: 1px solid #333; }
        .reviews-container { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: 12px; border: 1px solid #333; }
        .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 10px; }
        .user-meta i { font-size: 20px; color: var(--text-dim); }
        .stars { color: var(--primary-gold); font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-dim); }
        .faq-section { padding: 15px; }
        .faq-item { background: var(--card-bg); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; border-bottom: 1px solid #333; color: var(--primary-gold); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-dim); }
        .security-section { padding: 20px 15px; text-align: center; border-top: 1px solid #333; }
        .security-badges { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge { font-size: 12px; color: var(--text-dim); border: 1px solid #444; padding: 4px 10px; border-radius: 4px; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #111317; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid var(--primary-gold); z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: var(--text-dim); gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active i { color: var(--primary-gold); }
        footer { background: #0b0d10; padding: 30px 15px 100px; text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { font-size: 14px; color: var(--primary-gold); border: 1px solid var(--primary-gold); padding: 5px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 12px; color: var(--text-dim); }
        .footer-copy { font-size: 12px; color: #666; padding-top: 20px; border-top: 1px solid #222; }