* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0b0d0e; color: #ffffff; font-family: 'Inter', sans-serif; line-height: 1.6; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; line-height: 1.2; font-weight: 700; color: #ffffff; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }

        header { background: #1a1d21; padding: 12px 20px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2c2c2c; display: flex; justify-content: space-between; align-items: center; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: #ffffff; }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; font-family: 'Montserrat', sans-serif; }
        .btn-login { background: transparent; color: #d4af37; border: 1px solid #d4af37; }
        .btn-register { background: #d4af37; color: #0b0d0e; }
        .btn:hover { opacity: 0.8; transform: translateY(-1px); }

        main { max-width: 1200px; margin: 0 auto; padding-bottom: 80px; }
        .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: #1a1d21; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #d4af37; position: relative; overflow: hidden; }
        .jackpot-label { color: #d4af37; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 30px; font-weight: 800; color: #f9c80e; text-shadow: 0 0 15px rgba(249, 200, 14, 0.4); }

        .intro-card { padding: 25px 20px; text-align: center; }
        .intro-card h1 { font-size: 24px; color: #d4af37; margin-bottom: 15px; }
        .intro-card p { font-size: 16px; color: #b0b0b0; max-width: 800px; margin: 0 auto; }

        .section-title { padding: 20px 15px 10px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 20px; border-left: 4px solid #d4af37; padding-left: 12px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: #1a1d21; border-radius: 12px; overflow: hidden; border: 1px solid #2c2c2c; transition: 0.3s; display: block; }
        .game-card:hover { border-color: #d4af37; transform: translateY(-3px); }
        .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; }
        .game-info p { font-size: 12px; color: #6c757d; }

        .payment-section { background: #1a1d21; margin: 15px; padding: 20px; border-radius: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }
        .payment-icon { font-size: 24px; color: #b0b0b0; opacity: 0.7; }

        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .guideline-item { background: #25292e; padding: 20px; border-radius: 12px; border-left: 3px solid #00875a; }
        .guideline-item h2 { font-size: 18px; margin-bottom: 10px; color: #d4af37; }
        .guideline-item p { font-size: 14px; color: #b0b0b0; }

        .marquee-container { background: #1a1d21; margin: 15px 0; padding: 15px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #2c2c2c; border-bottom: 1px solid #2c2c2c; }
        .marquee-content { display: inline-block; animation: marquee 40s linear infinite; }
        .win-record { display: inline-flex; align-items: center; background: #25292e; padding: 8px 15px; margin: 0 10px; border-radius: 20px; gap: 10px; border: 1px solid #2c2c2c; }
        .win-user { color: #d4af37; font-weight: 600; font-size: 13px; }
        .win-amount { color: #27ae60; font-family: 'Roboto Mono', monospace; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { background: #1a1d21; margin: 15px; padding: 25px; border-radius: 12px; text-align: center; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 15px; }
        .provider-tag { background: #25292e; padding: 6px 14px; border-radius: 4px; font-size: 13px; color: #b0b0b0; border: 1px solid #2c2c2c; }

        .testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 15px; }
        .testimonial-card { background: #25292e; padding: 20px; border-radius: 12px; border: 1px solid #2c2c2c; }
        .testi-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .testi-user { display: flex; align-items: center; gap: 10px; }
        .testi-user i { color: #d4af37; font-size: 20px; }
        .testi-stars { color: #f9c80e; font-size: 12px; }
        .testi-date { font-size: 12px; color: #6c757d; }
        .testi-content { font-size: 14px; color: #b0b0b0; font-style: italic; }

        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d21; margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid #2c2c2c; }
        .faq-question { padding: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Montserrat', sans-serif; font-size: 15px; color: #d4af37; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #b0b0b0; display: block; }

        .security-footer { background: #1a1d21; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #2c2c2c; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #27ae60; }
        .security-text { font-size: 12px; color: #6c757d; max-width: 600px; margin: 0 auto; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d21; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2c2c2c; z-index: 1001; box-shadow: 0 -5px 20px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #b0b0b0; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active, .nav-item:hover { color: #d4af37; }

        footer { background: #0b0d0e; padding: 40px 20px 100px; border-top: 1px solid #2c2c2c; text-align: center; }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact h2 { font-size: 18px; margin-bottom: 15px; }
        .contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .contact-link { color: #d4af37; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 13px; color: #6c757d; padding: 5px 0; }
        .footer-links a:hover { color: #ffffff; }
        .copyright { font-size: 12px; color: #6c757d; border-top: 1px solid #2c2c2c; padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .guidelines-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
            .intro-card h1 { font-size: 36px; }
        }