* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: rgba(26, 29, 36, 0.95); position: sticky; top: 0; z-index: 1000; padding: 10px 15px; border-bottom: 1px solid rgba(255, 215, 0, 0.2); }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(to right, #FF6B35, #FF2E63); color: white; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; cursor: pointer; display: block; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-container { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); padding: 20px; text-align: center; border-bottom: 2px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 15px rgba(255, 215, 0, 0.6); font-family: monospace; }
        .intro-card { padding: 25px 15px; max-width: 1200px; margin: 0 auto; text-align: center; }
        .intro-card h1 { font-size: 24px; color: #FFD700; margin-bottom: 15px; }
        .intro-card p { font-size: 16px; color: #cccccc; }
        .section-title { padding: 20px 15px 10px; font-size: 20px; color: #FFD700; border-left: 4px solid #FF2E63; margin: 20px 15px; background: rgba(255,255,255,0.05); }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; }
        .game-info p { font-size: 12px; color: #888; }
        .payments-section, .providers-section { padding: 30px 15px; text-align: center; background: #252932; margin: 20px 0; }
        .icon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 20px; align-items: center; opacity: 0.8; }
        .icon-grid i { font-size: 30px; color: #FFD700; }
        .guidelines { padding: 20px 15px; display: grid; gap: 20px; }
        .guide-item { background: rgba(255,255,255,0.03); padding: 20px; border-radius: 15px; border-top: 2px solid #FFD700; }
        .guide-item h2 { font-size: 18px; margin-bottom: 10px; color: #FFD700; }
        .winners-marquee { background: #000; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #FFD700; border-bottom: 1px solid #FFD700; }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .winner-tag { display: inline-block; margin-right: 30px; font-size: 13px; color: #ddd; }
        .winner-tag strong { color: #FFD700; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .reviews-grid { padding: 0 15px; display: grid; gap: 15px; }
        .review-card { background: #252932; padding: 20px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-meta i { font-size: 30px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; margin: 5px 0; }
        .faq-section { padding: 20px 15px; max-width: 1200px; margin: 0 auto; }
        .faq-item { margin-bottom: 20px; background: rgba(255,255,255,0.02); padding: 15px; border-radius: 10px; }
        .faq-item h2 { font-size: 17px; color: #FFD700; margin-bottom: 10px; }
        .responsible-gaming { padding: 30px 15px; text-align: center; background: #111; border-top: 2px solid #FF2E63; }
        .responsible-gaming div { margin-bottom: 15px; }
        .age-badge { display: inline-block; border: 2px solid #FF2E63; color: #FF2E63; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1a1d24; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 2000; }
        .nav-item { text-align: center; color: #888; font-size: 11px; flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; }
        .nav-item:hover, .nav-item:active { color: #FFD700; }
        footer { background: #0d0f13; padding: 40px 15px 100px; text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: #FFD700; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .footer-links a { font-size: 13px; color: #888; }
        .copyright { font-size: 12px; color: #555; border-top: 1px solid #222; pt: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .intro-card h1 { font-size: 32px; }
            .reviews-grid { grid-template-columns: 1fr 1fr; }
        }