* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #0B0C10; color: #FFFFFF; font-family: 'Inter', sans-serif; line-height: 1.5; overflow-x: hidden; }
        header { height: 60px; background-color: #121212; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2C3531; }
        header .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #FFFFFF; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: #D4AF37; font-family: 'Montserrat', sans-serif; }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #D4AF37; color: #D4AF37; background: transparent; font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.3s; }
        .btn-register { padding: 6px 15px; border-radius: 20px; background: #D4AF37; color: #000000; border: none; font-weight: 600; font-size: 14px; cursor: pointer; transition: 0.3s; }
        main { padding: 10px 15px 100px 15px; max-width: 800px; margin: 0 auto; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 15px; margin-bottom: 20px; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: linear-gradient(135deg, #1F2833 0%, #121212 100%); border: 2px solid #D4AF37; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; position: relative; overflow: hidden; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
        .jackpot-box h2 { font-family: 'Montserrat', sans-serif; color: #FFD700; font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: 'Roboto Mono', monospace; font-size: 32px; color: #D4AF37; font-weight: 900; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
        .intro-card { background-color: #1F2833; border-radius: 15px; padding: 25px; margin-bottom: 25px; border: 1px solid #2C3531; }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; font-size: 24px; color: #D4AF37; margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { color: #C5C6C7; font-size: 15px; text-align: justify; }
        .section-title { font-family: 'Montserrat', sans-serif; font-size: 20px; color: #FFFFFF; margin: 25px 0 15px 0; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: #D4AF37; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1F2833; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #2C3531; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: #121212; padding: 20px; border-radius: 15px; margin-bottom: 25px; border: 1px solid #45A29E; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #C5C6C7; }
        .payment-item i { font-size: 24px; color: #D4AF37; }
        .payment-item span { font-size: 10px; text-transform: uppercase; font-weight: 600; }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-item { background: #1F2833; padding: 20px; border-radius: 12px; border-left: 4px solid #0047AB; }
        .guide-item h2 { font-size: 18px; color: #D4AF37; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: #C5C6C7; }
        .lottery-list { background: #121212; border-radius: 15px; padding: 15px; border: 1px solid #2C3531; }
        .lottery-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #2C3531; }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: #FFFFFF; font-size: 14px; font-weight: 600; }
        .lottery-game { color: #898E95; font-size: 12px; }
        .lottery-win { color: #28A745; font-family: 'Roboto Mono', monospace; font-weight: 700; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-btn { padding: 15px; text-align: center; border-radius: 10px; font-weight: 700; font-family: 'Montserrat', sans-serif; text-transform: uppercase; font-size: 14px; }
        .provider-btn:nth-child(odd) { background: #1F2833; color: #D4AF37; border: 1px solid #D4AF37; }
        .provider-btn:nth-child(even) { background: #D4AF37; color: #000000; }
        .review-card { background: #1F2833; padding: 20px; border-radius: 15px; margin-bottom: 15px; border: 1px solid #2C3531; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #898E95; }
        .review-info h3 { font-size: 16px; color: #FFFFFF; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 14px; color: #C5C6C7; font-style: italic; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: #898E95; text-align: right; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #121212; border-radius: 10px; padding: 15px; margin-bottom: 10px; border: 1px solid #2C3531; }
        .faq-item h3 { color: #D4AF37; font-size: 16px; margin-bottom: 8px; }
        .faq-item p { color: #C5C6C7; font-size: 14px; }
        .security-box { background: #000000; border: 1px solid #FF0000; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 25px; }
        .security-box i { font-size: 30px; color: #FF0000; margin-bottom: 10px; }
        .security-box h2 { font-size: 18px; color: #FFFFFF; margin-bottom: 10px; }
        .security-box p { font-size: 13px; color: #898E95; margin-bottom: 15px; }
        .security-links { display: flex; justify-content: center; gap: 15px; font-size: 12px; color: #D4AF37; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #121212; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #D4AF37; z-index: 1000; padding-bottom: 5px; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #898E95; font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #D4AF37; }
        footer { background: #0B0C10; padding: 30px 20px 85px 20px; border-top: 1px solid #2C3531; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .footer-social a { color: #FFFFFF; font-size: 20px; text-decoration: none; background: #1F2833; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid #D4AF37; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: #C5C6C7; font-size: 13px; text-decoration: none; text-align: center; }
        .footer-copy { text-align: center; font-size: 12px; color: #898E95; border-top: 1px solid #2C3531; padding-top: 20px; }