* { 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; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }
        
        .container { width: 92%; max-width: 1200px; margin: 0 auto; }
        
        header { background: #13161b; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .nav-top { 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; }
        .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-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-reg { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: white; }
        .btn:active { transform: scale(0.95); }

        .banner { margin: 15px 0; cursor: pointer; border-radius: 12px; overflow: hidden; aspect-ratio: 2/1; }
        
        .jackpot-sec { background: #000; padding: 20px; border-radius: 15px; text-align: center; border: 2px solid #FFD700; margin-bottom: 20px; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 14px; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; font-family: monospace; }

        .intro-card { background: #252932; padding: 20px; border-radius: 15px; margin-bottom: 25px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #ccc; }

        .section-title { font-size: 18px; margin: 25px 0 15px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .section-title i { font-size: 16px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: 0.3s; border: 1px solid #2a2e38; }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; border-bottom: 1px solid #2a2e38; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #888; text-transform: uppercase; }

        .trust-sec { background: #13161b; padding: 20px; border-radius: 15px; margin: 25px 0; }
        .trust-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.7; }
        .trust-icons i { font-size: 24px; color: #aaa; }
        .provider-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 15px; }
        .provider-item { background: #252932; padding: 5px 12px; border-radius: 5px; font-size: 12px; color: #FFD700; border: 1px solid #333; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 12px; }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guide-item p { font-size: 13px; color: #bbb; }

        .winner-marquee { background: #13161b; padding: 15px; border-radius: 10px; overflow: hidden; position: relative; }
        .marquee-content { display: flex; flex-direction: column; gap: 10px; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .win-row { display: flex; justify-content: space-between; font-size: 12px; border-bottom: 1px solid #222; padding-bottom: 5px; }
        .win-amt { color: #4CAF50; font-weight: bold; }

        .review-card { background: #252932; padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .user-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .user-meta i { font-size: 20px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; margin-left: auto; }

        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }

        .safety-sec { text-align: center; padding: 20px; background: #13161b; border-radius: 15px; margin: 25px 0; border: 1px dashed #444; }
        .safety-links { display: flex; justify-content: center; gap: 15px; margin-top: 10px; font-size: 12px; color: #888; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #13161b; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1000; }
        .nav-item { text-align: center; color: #888; font-size: 11px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }

        footer { background: #0d0f12; padding: 30px 0 100px; color: #777; font-size: 13px; }
        .footer-contacts { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid #222; padding-bottom: 15px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .copy-text { text-align: center; font-size: 11px; }