* { 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; }
        header { background: #13151a; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #333; }
        .nav-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; object-fit: contain; }
        .logo-box 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-weight: bold; border: none; cursor: pointer; font-size: 14px; transition: opacity 0.3s; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .jackpot-section { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px; text-align: center; margin: 15px; border-radius: 15px; border: 1px 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-amount { font-family: 'Courier New', monospace; font-size: 32px; font-weight: 800; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); letter-spacing: 2px; }
        .intro-card { padding: 20px; margin: 15px; background: #242832; border-radius: 12px; }
        .intro-card h1 { font-size: 22px; color: #FFD700; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: #ccc; text-align: justify; }
        .section-header { padding: 0 15px; margin-top: 25px; display: flex; justify-content: space-between; align-items: center; }
        .section-header h2 { font-size: 18px; color: #FFD700; border-left: 4px solid #FF2E63; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: #242832; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s; border: 1px solid #333; }
        .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: #fff; }
        .game-info p { font-size: 12px; color: #888; }
        .payment-methods { background: #13151a; padding: 25px 15px; margin: 20px 0; text-align: center; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; opacity: 0.7; }
        .payment-icons i { font-size: 30px; color: #fff; }
        .guidelines { padding: 20px 15px; display: grid; gap: 15px; }
        .guide-box { background: #242832; padding: 15px; border-radius: 10px; border-top: 2px solid #FFD700; }
        .guide-box h3 { color: #FFD700; font-size: 16px; margin-bottom: 10px; }
        .guide-box p { font-size: 13px; color: #bbb; }
        .marquee-container { background: #13151a; padding: 15px 0; overflow: hidden; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 30px; white-space: nowrap; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .win-item { display: flex; align-items: center; gap: 10px; font-size: 13px; background: #242832; padding: 8px 15px; border-radius: 20px; border: 1px solid #444; }
        .win-item strong { color: #FFD700; }
        .providers-wall { padding: 20px 15px; text-align: center; }
        .provider-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-weight: bold; color: #888; font-size: 14px; }
        .reviews { padding: 20px 15px; }
        .review-card { background: #242832; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 4px solid #FF6B35; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: #FFD700; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; margin-left: auto; }
        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 15px; }
        .faq-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: #bbb; }
        .safety-section { padding: 30px 15px; background: #13151a; text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .safety-icons i { font-size: 32px; color: #2ecc71; }
        .safety-text { font-size: 12px; color: #888; max-width: 600px; margin: 0 auto; }
        .safety-links { margin-top: 15px; display: flex; justify-content: center; gap: 15px; font-size: 12px; color: #FF6B35; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #13151a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 11px; color: #888; transition: color 0.3s; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        .nav-item:hover { color: #FFD700; }
        footer { padding: 40px 15px 100px; background: #0d0f13; }
        .footer-contact { margin-bottom: 30px; text-align: center; }
        .footer-contact a { margin: 0 10px; font-size: 14px; color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #888; }
        .copyright { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 12px; color: #666; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines { grid-template-columns: repeat(3, 1fr); }
        }