* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0E11; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.5; -webkit-font-smoothing: antialiased; }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #FFFFFF; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; display: block; }

        header { background: #15191E; 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 #2B3139; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: 500; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 4px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; }
        .btn-login { background: transparent; color: #D4AF37; border: 1px solid #D4AF37; }
        .btn-register { background: #D4AF37; color: #0B0E11; }

        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; background: #1E2329; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container { background: linear-gradient(135deg, #15191E 0%, #00875A 100%); margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #D4AF37; box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
        .jackpot-label { font-size: 14px; color: #F1D279; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; color: #D4AF37; font-weight: 700; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

        .platform-intro { padding: 20px; text-align: center; }
        .platform-intro h1 { font-size: 24px; margin-bottom: 12px; color: #D4AF37; }
        .platform-intro p { font-size: 14px; color: #9BA3AF; }

        .section-title { padding: 0 15px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; font-size: 20px; border-left: 4px solid #D4AF37; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1E2329; border-radius: 12px; overflow: hidden; border: 1px solid #2B3139; position: relative; }
        .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-provider { font-size: 12px; color: #707A8A; }

        .payment-methods { background: #15191E; padding: 25px 15px; margin: 20px 0; text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; opacity: 0.7; }
        .payment-grid i { font-size: 30px; color: #F1D279; }

        .guidelines { padding: 0 15px; }
        .guide-card { background: #1E2329; padding: 15px; border-radius: 8px; margin-bottom: 12px; border: 1px solid #2B3139; }
        .guide-card h2 { font-size: 18px; margin-bottom: 8px; color: #F1D279; }
        .guide-card p { font-size: 14px; color: #9BA3AF; }

        .winners-marquee { background: #15191E; padding: 10px 0; overflow: hidden; border-top: 1px solid #2B3139; border-bottom: 1px solid #2B3139; }
        .marquee-content { display: flex; gap: 30px; animation: marquee 30s linear infinite; white-space: nowrap; }
        .winner-item { color: #00C853; font-size: 13px; font-weight: 500; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .providers-wall { padding: 20px 15px; text-align: center; background: #0B0E11; }
        .providers-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; font-size: 13px; font-weight: 600; color: #707A8A; }
        .provider-tag { padding: 5px 12px; background: #1E2329; border-radius: 20px; }

        .reviews { padding: 0 15px; margin-top: 20px; }
        .review-card { background: #15191E; padding: 20px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2B3139; }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-header i { font-size: 32px; color: #D4AF37; }
        .review-name { font-weight: 600; font-size: 15px; }
        .stars { color: #FFAB00; font-size: 12px; }
        .review-date { font-size: 12px; color: #707A8A; margin-left: auto; }
        .review-text { font-size: 14px; color: #9BA3AF; font-style: italic; }

        .faq-section { padding: 20px 15px; }
        .faq-item { background: #1E2329; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: #FFFFFF; font-size: 15px; border-bottom: 1px solid #2B3139; }
        .faq-answer { padding: 15px; color: #9BA3AF; font-size: 14px; }

        .safety-section { padding: 30px 15px; text-align: center; background: #15191E; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #0052CC; }
        .safety-text { font-size: 13px; color: #707A8A; }

        .navigator { position: fixed; bottom: 0; width: 100%; background: #1E2329; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 2px solid #D4AF37; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #9BA3AF; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item:nth-child(3) { background: #D4AF37; color: #0B0E11; width: 55px; height: 55px; border-radius: 50%; transform: translateY(-15px); justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }

        footer { background: #0B0E11; padding: 40px 15px 100px; border-top: 1px solid #2B3139; }
        .footer-social { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 30px; }
        .footer-social a { color: #D4AF37; font-size: 14px; border: 1px solid #2B3139; padding: 8px 15px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: center; }
        .footer-links a { font-size: 13px; color: #707A8A; }
        .copyright { text-align: center; color: #707A8A; font-size: 12px; border-top: 1px solid #2B3139; padding-top: 20px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .banner { aspect-ratio: 3/1; }
        }