* { 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: #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 #2a2e37; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #FFD700; color: #FFD700; font-size: 14px; font-weight: bold; background: transparent; }
        .btn-register { padding: 6px 15px; border-radius: 20px; border: none; color: #ffffff; font-size: 14px; font-weight: bold; background: linear-gradient(90deg, #FF6B35 0%, #FF2E63 100%); }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle at center, #2c313a 0%, #1a1d24 100%); padding: 20px 15px; text-align: center; border-bottom: 1px solid #333; }
        .jackpot-label { color: #FFD700; font-size: 14px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; display: block; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .platform-intro { padding: 25px 15px; background-color: #1f232b; margin: 15px; border-radius: 12px; border-left: 4px solid #FFD700; }
        .platform-intro h1 { font-size: 20px; margin-bottom: 10px; color: #FFD700; }
        .platform-intro p { font-size: 14px; color: #cccccc; }
        .section-container { padding: 10px 15px; }
        .section-title { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
        .section-title h2 { font-size: 18px; color: #ffffff; border-left: 3px solid #FF2E63; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #252932; border-radius: 10px; overflow: hidden; display: block; border: 1px solid #333; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; display: block; object-fit: cover; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 13px; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-provider { font-size: 11px; color: #888; text-transform: uppercase; }
        .payments-licenses { background: #111419; padding: 25px 15px; text-align: center; margin: 20px 0; }
        .payment-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px; opacity: 0.8; }
        .payment-icons i { font-size: 24px; color: #ffffff; }
        .provider-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 15px; background: #1a1d24; border-radius: 8px; }
        .provider-item { background: #252932; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: #FFD700; border: 1px solid #333; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-top: 20px; }
        .guideline-card { background: #252932; padding: 20px; border-radius: 12px; border-top: 2px solid #FFD700; }
        .guideline-card h2 { font-size: 16px; margin-bottom: 10px; color: #FFD700; }
        .guideline-card p { font-size: 13px; color: #bbb; }
        .winner-marquee { background: #111419; padding: 10px 0; overflow: hidden; white-space: nowrap; position: relative; margin: 20px 0; }
        .marquee-content { display: inline-block; animation: scrollMarquee 40s linear infinite; }
        .winner-item { display: inline-flex; align-items: center; background: #252932; padding: 8px 15px; margin-right: 15px; border-radius: 20px; font-size: 12px; border: 1px solid #333; }
        .winner-item i { color: #FFD700; margin-right: 8px; }
        .winner-item span { color: #FF2E63; font-weight: bold; margin-left: 5px; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .reviews-container { display: flex; flex-direction: column; 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: #888; background: #1a1d24; padding: 8px; border-radius: 50%; }
        .review-user { font-size: 14px; font-weight: bold; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; position: absolute; top: 15px; right: 15px; }
        .review-content { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { background: #1f232b; padding: 25px 15px; border-radius: 12px; margin: 15px; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 15px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #ccc; }
        .security-section { text-align: center; padding: 30px 15px; background: #111419; }
        .security-logos { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: #444; }
        .security-section p { font-size: 12px; color: #777; max-width: 300px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111419; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e37; z-index: 1001; }
        .nav-item { text-align: center; color: #888; flex: 1; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0c0e12; padding: 30px 15px 100px; text-align: center; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact h2 { font-size: 16px; margin-bottom: 15px; }
        .contact-links { display: flex; justify-content: center; gap: 15px; }
        .contact-links a { font-size: 13px; background: #252932; padding: 8px 12px; border-radius: 5px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: left; margin-bottom: 30px; }
        .footer-grid a { font-size: 12px; color: #888; display: block; margin-bottom: 5px; }
        .copyright { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 20px; }