* { 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; }
        header { background-color: #1a1d24; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2d323d; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; font-size: 14px; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #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, #2d323d 0%, #1a1d24 100%); padding: 20px; text-align: center; border-bottom: 2px solid #FFD700; margin-bottom: 20px; }
        .jackpot-title { color: #FFD700; font-size: 18px; font-weight: bold; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-variant-numeric: tabular-nums; }
        .intro-card { padding: 20px; margin: 15px; background: #252932; border-radius: 15px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #b0b3b8; }
        .section-container { padding: 0 15px; margin-bottom: 30px; }
        .section-title { font-size: 18px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ffffff; }
        .game-info span { font-size: 11px; color: #8a8d91; display: block; }
        .payment-methods { background: #252932; padding: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; justify-items: center; margin: 15px; border-radius: 15px; }
        .payment-methods i { font-size: 24px; color: #FFD700; opacity: 0.8; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 15px; }
        .guide-item { background: #252932; padding: 15px; border-radius: 12px; }
        .guide-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #b0b3b8; }
        .marquee-wins { background: #000000; padding: 10px 0; overflow: hidden; white-space: nowrap; margin-bottom: 20px; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .win-item { display: inline-flex; align-items: center; background: #252932; padding: 5px 15px; border-radius: 20px; margin: 0 10px; border: 1px solid #3d424d; }
        .win-item span { font-size: 12px; margin-left: 8px; }
        .win-name { color: #FFD700; font-weight: bold; }
        .win-amount { color: #00ff88; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px; background: #252932; margin: 15px; border-radius: 15px; text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
        .provider-tag { background: #1a1d24; padding: 5px 12px; border-radius: 5px; font-size: 12px; color: #FFD700; border: 1px solid #3d424d; }
        .reviews-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 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: 30px; color: #FFD700; }
        .review-user-info h3 { font-size: 14px; color: #ffffff; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { position: absolute; top: 15px; right: 15px; font-size: 11px; color: #8a8d91; }
        .review-content { font-size: 13px; color: #b0b3b8; font-style: italic; }
        .faq-section { margin: 15px; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-size: 15px; font-weight: bold; color: #FFD700; border-bottom: 1px solid #3d424d; display: flex; align-items: center; gap: 10px; }
        .faq-answer { padding: 15px; font-size: 13px; color: #b0b3b8; }
        .security-section { background: #11141b; padding: 25px 15px; text-align: center; margin-top: 20px; border-top: 1px solid #2d323d; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 32px; color: #00ff88; }
        .security-content h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .security-content p { font-size: 12px; color: #8a8d91; margin-bottom: 15px; }
        .age-badge { display: inline-block; border: 2px solid #ff4444; color: #ff4444; border-radius: 50%; width: 40px; height: 40px; line-height: 36px; font-weight: bold; font-size: 14px; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323d; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #8a8d91; font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { color: #FFD700; }
        footer { background: #11141b; padding: 30px 15px 100px; border-top: 1px solid #2d323d; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: #FFD700; font-size: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: #8a8d91; }
        .copyright { text-align: center; font-size: 12px; color: #585e6a; border-top: 1px solid #2d323d; padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines, .reviews-section { grid-template-columns: repeat(2, 1fr); }
        }