* { 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; }
        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: #111317; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo-box { display: flex; align-items: center; gap: 10px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        
        .header-btns { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; font-size: 14px; border: 1px solid #FFD700; color: #FFD700; font-weight: 600; }
        .btn-register { padding: 6px 15px; border-radius: 20px; font-size: 14px; background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #fff; font-weight: 600; border: none; }

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

        .jackpot-container { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; margin: 20px 0; position: relative; overflow: hidden; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }

        .intro-card { background: #252932; padding: 25px; border-radius: 15px; margin-bottom: 30px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { font-size: 15px; color: #ccc; }

        .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-left: 3px solid #FF2E63; padding-left: 10px; }
        .section-header h2 { font-size: 18px; color: #fff; text-transform: uppercase; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card:active { transform: scale(0.98); }
        .game-img-wrapper { width: 100%; aspect-ratio: 1/1; background: #333; }
        .game-card img { width: 100%; height: 100%; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 11px; color: #999; margin-top: 2px; }

        .trust-section { background: #111317; padding: 20px; border-radius: 15px; margin-bottom: 30px; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; align-items: center; justify-items: center; opacity: 0.8; }
        .trust-item { font-size: 24px; color: #666; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: #252932; padding: 20px; border-radius: 12px; }
        .guide-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        .guide-item p { font-size: 14px; color: #bbb; }

        .win-ticker { background: #111317; padding: 10px 0; margin-bottom: 30px; overflow: hidden; white-space: nowrap; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .ticker-track { display: inline-flex; animation: scrollTicker 40s linear infinite; }
        .ticker-item { display: flex; align-items: center; background: #252932; padding: 5px 15px; border-radius: 20px; margin-right: 15px; font-size: 12px; gap: 10px; }
        .ticker-user { color: #FFD700; font-weight: bold; }
        .ticker-game { color: #fff; }
        .ticker-amount { color: #00ff88; font-weight: bold; }

        @keyframes scrollTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; padding: 10px; }
        .provider-tag { background: #252932; color: #FFD700; padding: 5px 12px; border-radius: 5px; font-size: 12px; font-weight: bold; border: 1px solid #3d424d; }

        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
        .review-card { background: #252932; padding: 20px; border-radius: 12px; position: relative; }
        .review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: #3d424d; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #FFD700; }
        .review-user-info h3 { font-size: 14px; color: #fff; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #777; margin-top: 2px; }
        .review-content { font-size: 14px; color: #ccc; font-style: italic; }

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

        .safety-section { background: #111317; padding: 20px; border-radius: 15px; text-align: center; margin-bottom: 30px; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: #FF2E63; }
        .safety-text { font-size: 13px; color: #888; }
        .age-limit { 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; font-size: 16px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111317; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #999; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }

        footer { background: #0d0f13; padding: 40px 15px 100px; border-top: 1px solid #333; }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact h2 { font-size: 16px; color: #fff; margin-bottom: 15px; }
        .contact-links { display: flex; flex-wrap: wrap; gap: 15px; }
        .contact-links a { color: #FFD700; font-size: 14px; }
        
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-col a { display: block; font-size: 13px; color: #777; margin-bottom: 8px; }
        .footer-col a:hover { color: #fff; }
        
        .copyright { text-align: center; 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-grid { grid-template-columns: repeat(2, 1fr); }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }