* { margin: 0; padding: 0; box-sizing: border-box; }
        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; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        header { background-color: #11141a; padding: 10px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .header-flex { display: flex; justify-content: space-between; align-items: center; }
        .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-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #ffffff; }
        .banner { width: 100%; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px; margin: 20px 0; text-align: center; border: 1px solid rgba(255, 215, 0, 0.2); border-radius: 15px; }
        .jackpot-title { color: #FFD700; font-size: 14px; font-weight: bold; margin-bottom: 5px; text-transform: uppercase; }
        .jackpot-counter { font-size: 32px; font-weight: 800; color: #FFD700; text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .intro-card { background: #252a34; padding: 25px; border-radius: 15px; margin-bottom: 30px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 15px; }
        .intro-card p { font-size: 14px; color: #cccccc; }
        .section-title { font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; position: relative; display: block; box-shadow: 0 4px 6px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: 0.5s; }
        .game-card:hover img { transform: scale(1.05); }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 11px; color: #888; }
        .payments-license { background: #11141a; padding: 20px; border-radius: 15px; margin: 30px 0; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 28px; color: #FFD700; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 30px 0; }
        .guide-item { background: #252a34; padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 10px; }
        .guide-item p { font-size: 13px; color: #aaa; }
        .marquee-container { background: #11141a; padding: 15px 0; overflow: hidden; margin: 20px 0; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; width: max-content; }
        .winner-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 13px; }
        .winner-item strong { color: #FFD700; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 20px 0; }
        .provider-tag { background: #252a34; padding: 5px 12px; border-radius: 5px; font-size: 12px; color: #FFD700; border: 1px solid rgba(255,215,0,0.3); }
        .comments-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 30px 0; }
        .comment-card { background: #252a34; padding: 20px; border-radius: 12px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: #FFD700; }
        .user-meta { flex: 1; }
        .user-name { font-size: 14px; font-weight: bold; }
        .stars { color: #FFD700; font-size: 10px; }
        .comment-date { font-size: 11px; color: #666; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: #252a34; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; cursor: pointer; color: #FFD700; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .faq-answer { padding: 15px; font-size: 13px; color: #aaa; }
        .security-section { text-align: center; padding: 30px 20px; background: #11141a; border-radius: 15px; margin: 30px 0; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: #4CAF50; }
        .security-text { font-size: 12px; color: #888; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 2000; border-top: 1px solid rgba(255,215,0,0.2); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #888; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0b0d11; padding: 40px 15px 100px; text-align: center; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-social a { font-size: 14px; color: #FFD700; border: 1px solid #FFD700; padding: 5px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 12px; color: #888; }
        .footer-copyright { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines, .comments-section { grid-template-columns: repeat(2, 1fr); }
            .intro-card h1 { font-size: 26px; }
            .jackpot-counter { font-size: 48px; }
        }