* { 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; padding-bottom: 70px; }
        header { background: #111317; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2a2e38; }
        .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; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 8px; }
        .btn { border: none; padding: 8px 14px; border-radius: 5px; font-weight: bold; cursor: pointer; font-size: 13px; transition: transform 0.2s; text-decoration: none; display: inline-block; color: #fff; }
        .btn-login { background: #2a2e38; border: 1px solid #FFD700; color: #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); }
        .btn:active { transform: scale(0.95); }
        .banner-container { width: 100%; position: relative; cursor: pointer; aspect-ratio: 2/1; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2a2e38 0%, #1a1d24 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #FFD700; position: relative; overflow: hidden; }
        .jackpot-title { font-size: 14px; color: #FFD700; text-transform: uppercase; margin-bottom: 5px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-size: 22px; color: #FFD700; margin-bottom: 12px; }
        .platform-intro p { font-size: 14px; color: #a0a0a0; max-width: 800px; margin: 0 auto; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; border-left: 4px solid #FFD700; margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #242830; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; border: 1px solid #2a2e38; transition: transform 0.2s; }
        .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: #fff; }
        .game-info p { font-size: 11px; color: #FFD700; }
        .payment-licensing { background: #111317; padding: 25px 15px; margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }
        .payment-licensing img { height: 30px; filter: grayscale(0.4) brightness(1.2); }
        .guidelines-grid { padding: 15px; display: grid; grid-template-columns: 1fr; gap: 15px; }
        .guideline-item { background: #242830; padding: 15px; border-radius: 10px; border-left: 2px solid #FF2E63; }
        .guideline-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guideline-item p { font-size: 13px; color: #ccc; }
        .win-marquee { background: #111317; padding: 15px 0; margin: 20px 0; overflow: hidden; white-space: nowrap; position: relative; border-top: 1px solid #2a2e38; border-bottom: 1px solid #2a2e38; }
        .marquee-content { display: inline-flex; animation: scrollMarquee 30s linear infinite; gap: 30px; }
        @keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .win-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
        .win-user { color: #FFD700; font-weight: bold; }
        .win-amount { color: #00ff88; font-weight: bold; }
        .providers-wall { padding: 20px 15px; text-align: center; background: #242830; margin: 20px 15px; border-radius: 15px; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-weight: bold; color: #a0a0a0; font-size: 14px; }
        .reviews-section { padding: 15px; }
        .review-card { background: #242830; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2a2e38; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .review-user-info h3 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; }
        .review-content { font-size: 13px; color: #ccc; }
        .faq-section { padding: 15px; }
        .faq-item { margin-bottom: 15px; background: #111317; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-size: 15px; font-weight: bold; color: #FFD700; border-bottom: 1px solid #2a2e38; }
        .faq-answer { padding: 15px; font-size: 13px; color: #ccc; }
        .security-section { padding: 25px 15px; text-align: center; background: #111317; margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #666; max-width: 600px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #111317; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2a2e38; z-index: 1000; }
        .nav-item { text-decoration: none; color: #a0a0a0; text-align: center; flex: 1; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 4px; }
        .nav-item span { font-size: 11px; }
        .nav-item:active { color: #FFD700; }
        footer { background: #0b0d10; padding: 40px 20px; border-top: 2px solid #FFD700; }
        .footer-contact { margin-bottom: 30px; text-align: center; }
        .contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 10px; }
        .contact-links a { color: #FFD700; text-decoration: none; font-size: 14px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-grid a { color: #a0a0a0; text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        .copyright { text-align: center; font-size: 12px; color: #555; border-top: 1px solid #222; padding-top: 20px; }