:root {
            --bg-dark: #1a1d24;
            --card-bg: #252932;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35, #FF2E63);
            --text-white: #ffffff;
            --text-gray: #b1b1b1;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { background-color: var(--bg-dark); color: var(--text-white); line-height: 1.6; padding-bottom: 70px; }
        header { background-color: #11141a; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 14px; border-radius: 20px; border: none; font-size: 13px; font-weight: bold; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background-color: transparent; color: var(--text-white); border: 1px solid var(--text-gray); }
        .btn-register { background: var(--cta-gradient); color: white; }
        .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, #2c313c 0%, #1a1d24 100%); padding: 20px; text-align: center; border-bottom: 2px solid var(--accent-gold); }
        .jackpot-title { color: var(--accent-gold); font-size: 14px; text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #fff; text-shadow: 0 0 15px rgba(255, 215, 0, 0.6); font-family: monospace; }
        .intro-card { padding: 20px; margin: 15px; background: var(--card-bg); border-radius: 12px; border-left: 4px solid var(--accent-gold); }
        .intro-card h1 { font-size: 1.4rem; margin-bottom: 10px; color: var(--accent-gold); }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 1.2rem; border-left: 3px solid #FF2E63; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--card-bg); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s; border: 1px solid #333; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-white); }
        .game-info span { font-size: 10px; color: var(--text-gray); }
        .payments-license { background: #11141a; padding: 20px; margin-top: 30px; text-align: center; }
        .icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; opacity: 0.7; justify-items: center; }
        .icon-grid i { font-size: 24px; color: var(--text-gray); }
        .guidelines { padding: 20px; background: #1a1d24; }
        .guide-item { margin-bottom: 20px; background: var(--card-bg); padding: 15px; border-radius: 10px; }
        .guide-item h3 { color: var(--accent-gold); margin-bottom: 8px; font-size: 1.1rem; }
        .marquee-container { background: #000; padding: 10px 0; overflow: hidden; margin: 20px 0; border-y: 1px solid #333; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; white-space: nowrap; }
        .win-tag { background: #222; padding: 5px 15px; border-radius: 20px; margin: 0 10px; font-size: 12px; border: 1px solid #444; }
        .win-tag span { color: var(--accent-gold); font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .providers-wall { padding: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
        .provider-tag { background: #333; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: #ccc; }
        .reviews-section { padding: 15px; }
        .review-card { background: var(--card-bg); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--accent-gold); }
        .review-meta { flex: 1; }
        .review-meta h3 { font-size: 14px; }
        .stars { color: var(--accent-gold); font-size: 10px; }
        .review-date { font-size: 10px; color: var(--text-gray); }
        .faq-section { padding: 20px; }
        .faq-item { margin-bottom: 15px; background: #252932; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 14px; color: var(--accent-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #ccc; }
        .security-section { padding: 25px 15px; text-align: center; background: #11141a; border-top: 1px solid #333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #4CAF50; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .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; }
        footer { background: #0a0c10; padding: 30px 20px; text-align: center; font-size: 12px; color: var(--text-gray); }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        .footer-contacts a { color: var(--accent-gold); text-decoration: none; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: var(--text-gray); text-decoration: none; }
        .copyright { margin-top: 20px; border-top: 1px solid #222; padding-top: 20px; }