* { 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; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { background-color: #11141a; 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 #2a2e37; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn-login { background-color: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); color: #ffffff; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: radial-gradient(circle, #2a2e37 0%, #11141a 100%); margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #FFD700; text-align: center; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.5); font-family: monospace; }
        .intro-card { margin: 15px; padding: 20px; background: #252932; border-radius: 15px; text-align: center; }
        .intro-card h1 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; border-left: 4px solid #FF2E63; margin-left: 15px; font-size: 18px; color: #ffffff; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.2s; position: relative; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #FFD700; opacity: 0.8; }
        .trust-section { margin: 25px 15px; background: #252932; border-radius: 15px; padding: 20px; text-align: center; }
        .payment-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; }
        .payment-icons i { font-size: 24px; color: #b0b3b8; }
        .guidelines-grid { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guideline-item { background: #252932; padding: 15px; border-radius: 12px; border-top: 2px solid #FFD700; }
        .guideline-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guideline-item p { font-size: 13px; color: #b0b3b8; }
        .marquee-container { background: #11141a; padding: 10px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #2a2e37; border-bottom: 1px solid #2a2e37; }
        .marquee-content { display: inline-block; animation: scroll 40s linear infinite; }
        .winner-tag { display: inline-flex; align-items: center; background: #252932; padding: 5px 15px; border-radius: 20px; margin-right: 15px; font-size: 12px; }
        .winner-tag span { color: #FFD700; margin: 0 5px; font-weight: bold; }
        @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .providers-wall { padding: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: #2a2e37; padding: 6px 12px; border-radius: 6px; font-size: 12px; border: 1px solid #3d424d; color: #FFD700; }
        .reviews-container { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #252932; padding: 15px; border-radius: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FF6B35; }
        .review-name { font-weight: bold; font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #6e7681; margin-left: auto; }
        .review-text { font-size: 13px; color: #b0b3b8; }
        .faq-section { padding: 15px; margin-bottom: 80px; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; display: flex; justify-content: space-between; cursor: pointer; color: #FFD700; }
        .faq-answer { padding: 0 15px 15px 15px; font-size: 13px; color: #b0b3b8; }
        .security-section { padding: 20px; text-align: center; background: #11141a; margin-top: 20px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge-item { font-size: 12px; color: #6e7681; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .badge-item i { font-size: 20px; color: #FFD700; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #11141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e37; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #b0b3b8; }
        .nav-item i { font-size: 18px; margin-bottom: 4px; }
        .nav-item.active { color: #FF2E63; }
        footer { background: #0d0f13; padding: 30px 15px 100px; text-align: center; border-top: 2px solid #252932; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { font-size: 14px; color: #FFD700; border: 1px solid #FFD700; padding: 5px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #b0b3b8; }
        .footer-copy { font-size: 12px; color: #6e7681; border-top: 1px solid #2a2e37; pt: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: 1fr 1fr; }
            .reviews-container { display: grid; grid-template-columns: 1fr 1fr; }
        }