* { 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 { padding: 0 15px; max-width: 1200px; margin: 0 auto; }
        
        header { background: #111419; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 8px 15px; border-radius: 5px; font-weight: 600; font-size: 14px; border: none; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }

        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .jackpot-section { background: #252a34; margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; border: 2px solid #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 18px; margin-bottom: 10px; text-transform: uppercase; font-weight: bold; }
        #jackpot-counter { font-size: 32px; font-weight: 800; color: #fff; text-shadow: 0 0 10px #FFD700; font-family: monospace; }

        .intro-card { background: #252a34; margin: 20px 15px; padding: 20px; border-radius: 15px; border-left: 5px solid #FFD700; }
        h1 { font-size: 22px; color: #FFD700; margin-bottom: 10px; }
        h2 { font-size: 20px; color: #FFD700; margin: 25px 15px 15px; text-align: left; position: relative; padding-left: 15px; }
        h2::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: #FF2E63; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 15px; }
        .game-card { background: #252a34; border-radius: 12px; overflow: hidden; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 12px; color: #aaa; }

        .payments-section { background: #111419; margin: 20px 0; padding: 20px 15px; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-icons i { font-size: 30px; color: #FFD700; }

        .guidelines { padding: 0 15px; display: grid; gap: 15px; }
        .guide-item { background: #252a34; padding: 15px; border-radius: 12px; font-size: 14px; border-bottom: 2px solid #FF2E63; }

        .winners-ticker { background: #111419; margin: 20px 0; overflow: hidden; position: relative; height: 40px; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .ticker-track { display: flex; white-space: nowrap; animation: ticker 40s linear infinite; align-items: center; height: 100%; }
        .winner-item { padding: 0 20px; font-size: 13px; color: #FFD700; display: flex; gap: 10px; }
        .winner-item span { color: #fff; }

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

        .reviews { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #252a34; padding: 15px; border-radius: 12px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #888; margin-left: auto; }

        .faq { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #252a34; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #FFD700; cursor: pointer; border-bottom: 1px solid #333; display: flex; justify-content: space-between; }
        .faq-answer { padding: 15px; font-size: 14px; color: #ddd; }

        .security { background: #111419; margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; }
        .security i { font-size: 40px; color: #FFD700; margin-bottom: 15px; }
        .age-limit { display: inline-block; border: 2px solid #FF2E63; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; color: #FF2E63; margin-top: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #111419; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: #888; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }

        footer { background: #0b0d10; padding: 30px 15px 100px; text-align: center; border-top: 5px solid #FFD700; }
        .footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-socials a { color: #FFD700; font-size: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: #888; transition: 0.2s; }
        .footer-links a:hover { color: #FFD700; }
        .footer-copy { font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 15px; }

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