:root {
            --bg-color: #1a1d24;
            --accent-gold: #FFD700;
            --text-light: #ffffff;
            --text-gray: #a0a0a0;
            --cta-gradient: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%);
            --card-bg: #252a34;
        }
        * { 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-light); line-height: 1.6; padding-bottom: 70px; }
        header { background-color: #0f1116; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--accent-gold); }
        .logo-box { display: flex; align-items: center; text-decoration: none; color: var(--text-light); }
        .logo-box img { width: 25px; height: 25px; margin-right: 8px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; }
        .header-btns { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 16px; border-radius: 20px; font-weight: bold; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--text-light); border: 1px solid var(--text-light); }
        .btn-reg { background: var(--cta-gradient); color: white; }
        .btn:active { transform: scale(0.95); }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2c3e50, #000); padding: 20px; text-align: center; margin: 15px; border-radius: 15px; border: 2px solid var(--accent-gold); box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
        .jackpot-title { color: var(--accent-gold); font-size: 18px; text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px var(--accent-gold); }
        .platform-intro { padding: 20px; margin: 15px; background: var(--card-bg); border-radius: 15px; text-align: center; }
        .platform-intro h1 { font-size: 22px; color: var(--accent-gold); margin-bottom: 15px; line-height: 1.3; }
        .platform-intro p { color: var(--text-gray); font-size: 14px; }
        .section-title { padding: 0 20px; margin: 20px 0 10px; font-size: 18px; border-left: 4px solid var(--accent-gold); margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; text-decoration: none; color: white; display: block; border: 1px solid #333; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--accent-gold); }
        .game-info p { font-size: 11px; color: var(--text-gray); }
        .payments-licences { padding: 20px; background: #0f1116; margin: 15px; border-radius: 15px; text-align: center; }
        .icon-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .icon-row i { font-size: 30px; color: var(--text-gray); transition: color 0.3s; }
        .icon-row i:hover { color: var(--accent-gold); }
        .guidelines { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 12px; }
        .guide-item h2 { font-size: 16px; color: var(--accent-gold); margin-bottom: 10px; }
        .guide-item p { font-size: 13px; color: var(--text-gray); }
        .marquee-box { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-tag { display: inline-block; background: #1a1d24; padding: 5px 15px; margin-right: 15px; border-radius: 20px; border: 1px solid #444; font-size: 12px; }
        .win-tag span { color: var(--accent-gold); font-weight: bold; }
        .providers-wall { padding: 20px; text-align: center; background: var(--card-bg); margin: 15px; border-radius: 15px; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-size: 14px; color: var(--text-gray); margin-top: 10px; font-weight: bold; }
        .review-grid { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: 15px; border-left: 3px solid var(--accent-gold); }
        .review-header { display: flex; align-items: center; margin-bottom: 10px; }
        .review-header i { font-size: 24px; margin-right: 10px; color: var(--accent-gold); }
        .review-name { font-weight: bold; font-size: 14px; }
        .stars { color: #f1c40f; font-size: 12px; margin-left: auto; }
        .review-date { font-size: 11px; color: var(--text-gray); margin-bottom: 8px; }
        .review-text { font-size: 13px; color: var(--text-gray); font-style: italic; }
        .faq-section { padding: 20px; }
        .faq-item { background: var(--card-bg); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: var(--accent-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-gray); }
        .security-section { padding: 20px; margin: 15px; background: #0f1116; border-radius: 15px; text-align: center; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; flex-wrap: wrap; }
        .badge { font-size: 12px; color: var(--text-gray); border: 1px solid #333; padding: 5px 10px; border-radius: 5px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #0f1116; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-gray); text-align: center; font-size: 10px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item:active { color: var(--accent-gold); }
        footer { background: #0a0c10; padding: 30px 20px 80px; text-align: center; border-top: 2px solid #222; }
        .footer-contact { margin-bottom: 20px; }
        .footer-contact a { color: var(--text-light); text-decoration: none; margin: 0 10px; font-size: 13px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: var(--text-gray); text-decoration: none; font-size: 12px; }
        .copyright { font-size: 11px; color: #555; }