* { 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; }
        ul { list-style: none; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header { background-color: #1a1d24; border-bottom: 1px solid #333; position: sticky; top: 0; z-index: 1000; height: 60px; display: flex; align-items: center; }
        header .container { 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; border-radius: 5px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #FFD700; color: #FFD700; font-size: 14px; font-weight: bold; }
        .btn-register { padding: 7px 16px; border-radius: 20px; background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #fff; font-size: 14px; font-weight: bold; border: none; }

        .banner-section { margin: 15px 0; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 2/1; }
        .banner-section img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box { background: #252a34; border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; font-size: 14px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.3); font-family: monospace; }

        .platform-intro { background: #252a34; padding: 20px; border-radius: 15px; margin-bottom: 30px; border-left: 4px solid #FFD700; }
        .platform-intro h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .platform-intro p { font-size: 14px; color: #cccccc; }

        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; border-left: 3px solid #FF2E63; padding-left: 10px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; display: block; border: 1px solid #333; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-img-wrapper { aspect-ratio: 1/1; width: 100%; background: #1a1d24; }
        .game-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .game-provider { font-size: 11px; color: #FFD700; opacity: 0.8; }

        .trust-section { background: #252a34; border-radius: 15px; padding: 20px; margin-bottom: 30px; text-align: center; }
        .methods-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .method-icon { width: 60px; height: 35px; background: #fff; border-radius: 5px; display: flex; align-items: center; justify-content: center; padding: 5px; }
        .method-icon i { color: #1a1d24; font-size: 20px; }

        .guidelines { margin-bottom: 30px; }
        .guideline-card { background: #252a34; padding: 15px; border-radius: 12px; margin-bottom: 10px; border-bottom: 1px solid #333; }
        .guideline-card h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guideline-card p { font-size: 13px; color: #bbb; }

        .marquee-container { background: #111; padding: 10px 0; overflow: hidden; margin-bottom: 30px; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; animation: marquee 40s linear infinite; gap: 30px; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { white-space: nowrap; font-size: 13px; display: flex; align-items: center; gap: 8px; }
        .win-user { color: #FFD700; font-weight: bold; }
        .win-amount { color: #00ff00; font-weight: bold; }

        .providers-wall { background: #252a34; padding: 20px; border-radius: 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; }
        .provider-tag { background: #1a1d24; padding: 5px 15px; border-radius: 20px; font-size: 12px; border: 1px solid #444; color: #ddd; }

        .reviews-grid { margin-bottom: 30px; }
        .review-card { background: #252a34; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #333; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-meta { display: flex; align-items: center; gap: 10px; }
        .user-meta i { background: #333; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #FFD700; }
        .user-name { font-size: 14px; font-weight: bold; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #777; }
        .review-body { font-size: 13px; color: #ccc; font-style: italic; }

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

        .security-section { background: #252a34; padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 40px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge { font-size: 12px; color: #aaa; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .badge i { font-size: 24px; color: #FFD700; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #252a34; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 2px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #aaa; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }

        footer { background: #111; padding: 30px 15px 100px; text-align: center; border-top: 2px solid #FFD700; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { font-size: 14px; color: #FFD700; border: 1px solid #FFD700; padding: 5px 12px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 12px; color: #777; }
        .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); }
            .review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        }