* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0C0D; color: #FFFFFF; font-family: 'Montserrat', system-ui, -apple-system, sans-serif; line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        
        header { background-color: #16181A; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 1rem; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #D4AF37; }
        header .header-left { display: flex; align-items: center; gap: 10px; }
        header .header-left img { width: 25px; height: 25px; object-fit: contain; }
        header .header-left strong { font-size: 16px; font-weight: 400; font-family: 'Oswald', sans-serif; color: #D4AF37; }
        header .header-right { display: flex; gap: 8px; }
        header button { padding: 8px 12px; border-radius: 6px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; }
        header .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #D4AF37; }
        header .btn-register { background-color: #D4AF37; color: #0B0C0D; }

        main { 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: radial-gradient(circle, #1F2225 0%, #0B0C0D 100%); padding: 20px; text-align: center; border-bottom: 1px solid #2D3035; }
        .jackpot-title { color: #FF00FF; font-family: 'Oswald', sans-serif; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 2.5rem; font-weight: 900; color: #FFD700; margin-top: 5px; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); font-variant-numeric: tabular-nums; }

        .intro-card { background: #16181A; margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid #D4AF37; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .intro-card h1 { font-size: 1.25rem; color: #D4AF37; margin-bottom: 10px; font-family: 'Oswald', sans-serif; }
        .intro-card p { color: #B0B3B8; font-size: 0.875rem; text-align: justify; }

        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 1.5rem; border-left: 4px solid #00A859; margin-left: 15px; font-family: 'Oswald', sans-serif; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1F2225; border-radius: 10px; overflow: hidden; border: 1px solid #2D3035; transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); border-color: #D4AF37; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 0.875rem; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }

        .payment-licensing { background: #16181A; padding: 20px 15px; margin-top: 20px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 1.5rem; color: #D4AF37; }
        .payment-item span { font-size: 0.65rem; color: #B0B3B8; }

        .guides-container { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-item { background: #1F2225; padding: 15px; border-radius: 8px; border: 1px solid #2D3035; }
        .guide-item h2 { font-size: 1.125rem; color: #F1D592; margin-bottom: 8px; }
        .guide-item p { font-size: 0.875rem; color: #B0B3B8; }

        .lottery-marquee { background: #0B0C0D; padding: 15px 0; border-top: 1px solid #2D3035; border-bottom: 1px solid #2D3035; overflow: hidden; position: relative; }
        .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 20px; white-space: nowrap; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .winner-item { background: #1F2225; padding: 8px 15px; border-radius: 20px; display: flex; align-items: center; gap: 10px; border: 1px solid #3E4248; }
        .winner-item span:nth-child(2) { color: #28A745; font-weight: bold; }

        .providers-section { padding: 15px; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; }
        .provider-tag { flex: 1 1 45%; background: #996515; color: #FFFFFF; padding: 10px; text-align: center; border-radius: 4px; font-weight: bold; font-size: 0.9rem; }
        .provider-tag:nth-child(even) { background: #00A859; }

        .comment-section { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: #16181A; padding: 15px; border-radius: 12px; border: 1px solid #2D3035; position: relative; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 2rem; color: #D4AF37; }
        .stars { color: #FFD700; font-size: 0.75rem; }
        .comment-body { font-size: 0.875rem; color: #B0B3B8; margin-bottom: 8px; }
        .comment-date { font-size: 0.75rem; color: #65676B; text-align: right; }

        .faq-section { padding: 15px; background: #16181A; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2D3035; padding-bottom: 15px; }
        .faq-item h3 { color: #D4AF37; font-size: 1rem; margin-bottom: 8px; }
        .faq-item p { color: #B0B3B8; font-size: 0.875rem; }

        .security-section { padding: 25px 15px; text-align: center; background: #0B0C0D; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 1.5rem; color: #00A859; }
        .security-section p { font-size: 0.875rem; color: #65676B; margin-bottom: 10px; }
        .security-links { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
        .security-links a { font-size: 0.75rem; color: #D4AF37; text-decoration: underline; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #16181A; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #D4AF37; z-index: 1000; box-shadow: 0 -5px 15px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 0.7rem; color: #B0B3B8; gap: 4px; }
        .nav-item i { font-size: 1.25rem; color: #D4AF37; }

        footer { background: #0B0C0D; padding: 30px 15px 100px; border-top: 1px solid #2D3035; color: #B0B3B8; }
        footer .contact-row { text-align: center; margin-bottom: 25px; }
        footer .contact-row h3 { color: #FFFFFF; margin-bottom: 10px; }
        footer .contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        footer .contact-links a { color: #D4AF37; font-size: 0.9rem; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        footer .links-grid a { font-size: 0.8rem; color: #B0B3B8; text-align: center; }
        footer .copyright { text-align: center; font-size: 0.75rem; color: #65676B; padding-top: 20px; border-top: 1px solid #1F2225; }

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