* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0A0B; color: #FFFFFF; font-family: 'Montserrat', sans-serif; line-height: 1.5; overflow-x: hidden; }
        header { background: #121214; border-bottom: 1px solid #2C2C2E; padding: 12px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; }
        .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: 400; color: #D4AF37; }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: transform 0.2s; }
        .btn:active { transform: scale(0.95); }
        .btn-login { background: transparent; color: #FFFFFF; border: 1px solid #D4AF37; }
        .btn-register { background: linear-gradient(135deg, #D4AF37, #FFD700); color: #000000; }
        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .hero-banner { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; cursor: pointer; display: block; }
        .jackpot-container { background: #1C1C1E; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #D4AF37; text-align: center; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
        .jackpot-title { color: #D4AF37; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; color: #FFD700; font-weight: 700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: #1C1C1E; margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 24px; color: #D4AF37; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: #B0B0B0; text-align: justify; }
        .section-header { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 20px; font-weight: 700; color: #FFFFFF; }
        .section-header i { color: #D4AF37; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1C1C1E; border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid #2C2C2E; transition: border-color 0.3s; }
        .game-card:hover { border-color: #D4AF37; }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-info { padding: 10px; }
        .game-info h3 { font-size: 14px; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info span { font-size: 12px; color: #B0B0B0; font-family: 'Inter', sans-serif; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: #121214; margin: 15px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
        .payment-item i { font-size: 20px; color: #D4AF37; }
        .payment-item span { font-size: 10px; color: #B0B0B0; font-weight: 600; }
        .guides-section { padding: 15px; }
        .guide-card { background: #1C1C1E; padding: 15px; border-radius: 10px; margin-bottom: 12px; border: 1px solid #2C2C2E; }
        .guide-card h2 { font-size: 18px; color: #D4AF37; margin-bottom: 8px; }
        .guide-card p { font-size: 14px; color: #B0B0B0; line-height: 1.6; }
        .win-marquee { background: rgba(212, 175, 55, 0.1); padding: 10px 0; overflow: hidden; white-space: nowrap; margin: 20px 0; }
        .marquee-content { display: inline-flex; animation: scrollMarquee 30s linear infinite; gap: 30px; }
        .win-item { display: flex; align-items: center; gap: 8px; font-size: 13px; }
        .win-user { color: #D4AF37; font-weight: 700; }
        .win-amount { color: #28A745; font-weight: 700; }
        @keyframes scrollMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; background: #0A0A0B; opacity: 0.8; }
        .provider-tag { font-size: 14px; font-weight: 600; color: #666666; text-transform: uppercase; letter-spacing: 1px; }
        .reviews-section { padding: 15px; }
        .review-card { background: #1C1C1E; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-top: 2px solid #D4AF37; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: #D4AF37; }
        .review-meta h3 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666666; }
        .review-text { font-size: 13px; color: #B0B0B0; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1C1C1E; padding: 15px; border-radius: 8px; margin-bottom: 10px; border: 1px solid #2C2C2E; }
        .faq-item h2 { font-size: 16px; color: #D4AF37; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #B0B0B0; }
        .security-section { padding: 20px 15px; text-align: center; background: #121214; margin-top: 30px; border-top: 1px solid #2C2C2E; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #D4AF37; }
        .security-text { font-size: 12px; color: #666666; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #121214; border-top: 1px solid #D4AF37; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1001; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 18px; color: #B0B0B0; }
        .nav-item span { font-size: 11px; color: #B0B0B0; }
        .nav-item:nth-child(3) i { color: #D4AF37; font-size: 22px; }
        .nav-item:nth-child(3) span { color: #D4AF37; font-weight: 700; }
        footer { padding: 30px 15px 100px; background: #0A0A0B; border-top: 1px solid #2C2C2E; }
        .footer-row { margin-bottom: 25px; }
        .footer-title { color: #D4AF37; font-size: 14px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; }
        .contact-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .contact-links a { color: #B0B0B0; text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
        .footer-links a { color: #666666; text-decoration: none; font-size: 12px; }
        .footer-links a:hover { color: #D4AF37; }
        .copyright { text-align: center; font-size: 11px; color: #444444; border-top: 1px solid #222; pt: 15px; }