:root {
            --bg-dark: #1a1d24;
            --card-bg: #252a34;
            --accent-gold: #FFD700;
            --cta-gradient: linear-gradient(135deg, #FF6B35, #FF2E63);
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
        }
        * { 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; overflow-x: hidden; }
        header { background: #11141a; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .logo-box { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text-white); }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; }
        .header-buttons { display: flex; gap: 10px; }
        .btn { border: none; padding: 8px 15px; border-radius: 20px; font-weight: bold; cursor: pointer; text-decoration: none; font-size: 13px; transition: transform 0.2s; }
        .btn-login { background: transparent; color: var(--text-white); border: 1px solid var(--text-white); }
        .btn-register { background: var(--cta-gradient); color: white; }
        .btn:active { transform: scale(0.95); }
        main { padding: 0 0 80px 0; max-width: 800px; margin: 0 auto; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .jackpot-section { background: #000; margin: 15px; padding: 15px; border-radius: 12px; border: 1px solid var(--accent-gold); text-align: center; }
        .jackpot-label { color: var(--accent-gold); font-size: 14px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: var(--text-white); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px; background: var(--card-bg); margin: 15px; border-radius: 15px; border-left: 4px solid var(--accent-gold); }
        .intro-card h1 { font-size: 20px; color: var(--accent-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-gray); }
        .section-title { padding: 0 15px; margin-top: 25px; font-size: 18px; border-left: 3px 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: flex; flex-direction: column; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-bottom: 2px solid #333; }
        .game-info { padding: 10px; flex-grow: 1; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: var(--text-gray); }
        .payment-section { background: #111; padding: 20px 15px; margin: 15px; border-radius: 12px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; filter: grayscale(1); opacity: 0.7; }
        .payment-icons i { font-size: 30px; color: #fff; }
        .guidelines { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: var(--card-bg); padding: 15px; border-radius: 10px; }
        .guide-item h2 { font-size: 16px; color: var(--accent-gold); margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-gray); }
        .winners-ticker { background: #000; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee { display: inline-block; animation: marquee 30s linear infinite; }
        .winner-record { display: inline-flex; align-items: center; gap: 8px; margin-right: 30px; font-size: 13px; }
        .winner-record span { color: var(--accent-gold); font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 15px; background: #111; margin: 15px; border-radius: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-size: 12px; color: var(--text-gray); font-weight: bold; }
        .provider-tag { padding: 5px 12px; border: 1px solid #333; border-radius: 4px; }
        .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: 24px; color: var(--accent-gold); }
        .review-meta { flex-grow: 1; }
        .review-name { font-size: 14px; font-weight: bold; display: block; }
        .review-stars { color: #ffcc00; font-size: 12px; }
        .review-date { font-size: 11px; color: var(--text-gray); float: right; }
        .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; cursor: pointer; color: var(--accent-gold); font-size: 14px; border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-gray); }
        .responsible-section { padding: 20px; text-align: center; background: #0d0f14; border-top: 2px solid #333; }
        .age-badge { display: inline-block; width: 40px; height: 40px; border: 2px solid #ff4d4d; color: #ff4d4d; border-radius: 50%; line-height: 36px; font-weight: bold; font-size: 16px; margin-bottom: 10px; }
        .responsible-links { display: flex; justify-content: center; gap: 15px; margin-top: 15px; flex-wrap: wrap; }
        .responsible-links a { color: var(--text-gray); font-size: 12px; text-decoration: none; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: var(--text-gray); font-size: 10px; flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        .nav-item:nth-child(3) i { color: var(--accent-gold); font-size: 24px; margin-top: -5px; }
        footer { background: #000; padding: 30px 20px 100px; text-align: center; }
        .footer-contact { margin-bottom: 25px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
        .footer-contact a { color: var(--text-white); text-decoration: none; font-size: 13px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: var(--text-gray); text-decoration: none; font-size: 12px; }
        .footer-copy { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }