* { 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-color: #161618; 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 #27272A; }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        header .actions { display: flex; gap: 10px; }
        header button { padding: 8px 16px; border-radius: 20px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; transition: 0.3s; }
        header .btn-login { background-color: transparent; color: #D4AF37; border: 1px solid #D4AF37; }
        header .btn-register { background-color: #D4AF37; 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: linear-gradient(135deg, #1A1A1D 0%, #000000 100%); margin: 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #D4AF37; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
        .jackpot-label { color: #FFD700; font-family: 'Oswald', sans-serif; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { color: #FF00FF; font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 900; margin-top: 5px; text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
        .intro-card { background-color: #161618; margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #27272A; }
        .intro-card h1 { font-family: 'Oswald', sans-serif; font-size: 24px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { color: #A1A1AA; font-size: 14px; }
        .section-title { font-family: 'Oswald', sans-serif; font-size: 20px; margin: 20px 15px 10px; color: #FFFFFF; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background-color: #D4AF37; display: block; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background-color: #1F1F22; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #27272A; transition: 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { color: #FFFFFF; font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; }
        .payment-item { background-color: #1F1F22; padding: 10px; border-radius: 8px; text-align: center; border: 1px solid #1F1F22; }
        .payment-item i { font-size: 20px; color: #D4AF37; margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 10px; color: #A1A1AA; display: block; }
        .guide-section { padding: 15px; }
        .guide-card { background-color: #161618; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid #D4AF37; }
        .guide-card h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-card p { font-size: 14px; color: #A1A1AA; }
        .winning-list { margin: 15px; background-color: #161618; border-radius: 15px; padding: 10px; border: 1px solid #27272A; }
        .winning-item { display: flex; justify-content: space-between; align-items: center; padding: 10px; border-bottom: 1px solid #1F1F22; }
        .winning-item:last-child { border-bottom: none; }
        .win-info .user { font-weight: 600; color: #FFFFFF; font-size: 14px; }
        .win-info .game { color: #A1A1AA; font-size: 12px; }
        .win-amount { color: #22C55E; font-weight: 700; font-size: 14px; }
        .win-time { color: #71717A; font-size: 11px; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-btn { background-color: #1F1F22; padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; color: #D4AF37; border: 1px solid #27272A; }
        .reviews-container { padding: 0 15px; }
        .review-card { background-color: #1F1F22; padding: 15px; border-radius: 15px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #D4AF37; }
        .review-user { font-weight: 600; font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 12px; margin-bottom: 8px; }
        .review-content { color: #A1A1AA; font-size: 13px; margin-bottom: 8px; }
        .review-date { color: #71717A; font-size: 11px; }
        .faq-section { padding: 15px; }
        .faq-item { background-color: #161618; margin-bottom: 10px; border-radius: 10px; border: 1px solid #27272A; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #A1A1AA; }
        .security-section { margin: 15px; padding: 20px; background-color: #050505; border: 1px dashed #E63946; border-radius: 15px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; font-size: 20px; color: #E63946; }
        .security-section p { font-size: 12px; color: #71717A; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background-color: #161618; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #27272A; z-index: 1000; padding-bottom: env(safe-area-inset-bottom); }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: #A1A1AA; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        footer { background-color: #050505; padding: 30px 15px 100px; border-top: 1px solid #1F1F22; }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contact a { color: #D4AF37; text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; text-align: center; }
        .footer-links a { color: #71717A; text-decoration: none; font-size: 12px; }
        .copyright { text-align: center; color: #71717A; font-size: 11px; border-top: 1px solid #1F1F22; pt: 20px; }