* { 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; }
        img { max-width: 100%; height: auto; display: block; }

        header { background-color: #11141a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #FFD700; letter-spacing: 0.5px; }
        .auth-buttons { 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-color: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }

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

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

        .intro-card { padding: 20px; margin: 15px; background: #252932; border-radius: 12px; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }

        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 18px; border-left: 4px solid #FFD700; margin-left: 15px; }

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

        .trust-section { background: #11141a; padding: 25px 15px; margin-top: 30px; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 20px; opacity: 0.7; }
        .payment-icons i { font-size: 24px; text-align: center; color: #ffffff; }

        .guidelines { padding: 15px; display: grid; gap: 15px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 10px; border-left: 2px solid #FFD700; }
        .guide-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guide-item p { font-size: 13px; color: #b0b3b8; }

        .marquee-container { background: #11141a; padding: 15px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #2a2e38; border-bottom: 1px solid #2a2e38; }
        .marquee-content { display: inline-block; animation: scrollMarquee 30s linear infinite; }
        .winner-item { display: inline-block; margin-right: 30px; font-size: 13px; color: #FFD700; }
        .winner-item span { color: #ffffff; margin: 0 5px; }

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

        .providers-wall { padding: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: #252932; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: #FFD700; border: 1px solid #3a3f4a; }

        .reviews-grid { padding: 15px; display: grid; gap: 15px; }
        .review-card { background: #252932; padding: 15px; border-radius: 12px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FF6B35; }
        .user-name { font-weight: 600; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; margin: 5px 0; }
        .review-date { font-size: 11px; color: #8a8d91; position: absolute; top: 15px; right: 15px; }
        .review-text { font-size: 13px; color: #b0b3b8; font-style: italic; }

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

        .security-footer { text-align: center; padding: 30px 15px; background: #11141a; border-top: 2px solid #2a2e38; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .badge { font-size: 12px; color: #8a8d91; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .badge i { font-size: 20px; color: #4CAF50; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #8a8d91; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:active { color: #FFD700; }

        footer { padding: 30px 15px 100px; background: #0a0c10; font-size: 13px; color: #666; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; margin: 20px 0; }
        .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 20px; border-bottom: 1px solid #222; padding-bottom: 20px; }
        .contact-row a { color: #FFD700; }
        .copyright { text-align: center; border-top: 1px solid #222; padding-top: 20px; font-size: 11px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines, .reviews-grid { grid-template-columns: 1fr 1fr; }
        }