* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0A0A; color: #FFFFFF; font-family: 'Montserrat', 'Inter', sans-serif; line-height: 1.6; overflow-x: hidden; }
        header { background-color: #121212; 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 #2C2C2C; }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: 400; color: #FFD700; }
        header .auth-btns { display: flex; gap: 10px; }
        header button { padding: 6px 12px; border-radius: 4px; border: none; font-weight: 600; cursor: pointer; font-size: 14px; transition: 0.3s; }
        header .login-btn { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        header .reg-btn { background: linear-gradient(135deg, #FFD700, #C5A022); color: #0A0A0A; }
        main { max-width: 1200px; margin: 0 auto; padding-bottom: 80px; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-sec { background: #1E1E1E; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #C5A022; }
        .jackpot-label { color: #FFD700; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-val { font-family: 'Roboto Mono', monospace; font-size: 32px; font-weight: 800; color: #FFFFFF; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { margin: 15px; padding: 20px; background: #121212; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-family: 'Poppins', sans-serif; font-size: 24px; color: #FFD700; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 14px; color: #BDBDBD; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-family: 'Poppins', sans-serif; font-size: 20px; color: #FFD700; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: #E60000; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1E1E1E; border-radius: 8px; overflow: hidden; text-decoration: none; border: 1px solid #2C2C2C; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; color: #FFFFFF; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-sec { background: #121212; margin: 20px 15px; padding: 20px; border-radius: 12px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .pay-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #BDBDBD; font-size: 10px; }
        .pay-item i { font-size: 24px; color: #FFD700; }
        .guides-sec { padding: 15px; }
        .guide-item { background: #1E1E1E; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #2C2C2C; }
        .guide-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: #BDBDBD; }
        .lottery-sec { margin: 15px; background: #121212; border-radius: 12px; overflow: hidden; }
        .lottery-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; border-bottom: 1px solid #2C2C2C; font-size: 13px; }
        .lottery-row:last-child { border-bottom: none; }
        .lottery-user { color: #FFD700; font-weight: 600; }
        .lottery-amt { color: #00E676; font-weight: 700; }
        .lottery-game { color: #FFFFFF; font-style: italic; }
        .lottery-time { color: #616161; font-size: 11px; }
        .providers-sec { padding: 0 15px; margin: 20px 0; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-tag { background: #1E1E1E; color: #FFD700; padding: 10px; text-align: center; border-radius: 6px; font-weight: 600; font-size: 14px; border: 1px solid #404040; }
        .comment-sec { padding: 15px; }
        .review-card { background: #1E1E1E; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2C2C2C; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #FFD700; }
        .review-info h3 { font-size: 14px; color: #FFFFFF; }
        .review-stars { color: #FFAB00; font-size: 12px; }
        .review-content { font-size: 13px; color: #BDBDBD; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: #616161; }
        .faq-sec { padding: 15px; }
        .faq-item { background: #121212; border-radius: 8px; margin-bottom: 10px; border: 1px solid #2C2C2C; }
        .faq-ques { padding: 15px; font-weight: 600; color: #FFD700; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-ans { padding: 0 15px 15px 15px; font-size: 14px; color: #BDBDBD; }
        .trust-sec { background: #003366; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; }
        .trust-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 20px; }
        .trust-text { font-size: 12px; color: #FFFFFF; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #121212; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2C2C2C; z-index: 1001; }
        .nav-item { text-decoration: none; color: #BDBDBD; display: flex; flex-direction: column; align-items: center; font-size: 11px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0A0A0A; padding: 30px 15px 80px 15px; border-top: 1px solid #2C2C2C; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: #FFD700; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: #BDBDBD; text-decoration: none; font-size: 13px; text-align: center; }
        .footer-copy { text-align: center; color: #616161; font-size: 12px; border-top: 1px solid #2C2C2C; padding-top: 20px; }