* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0B0C; color: #FFFFFF; font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif; line-height: 1.5; overflow-x: hidden; }
        header { background-color: #16181A; 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 #303336; }
        header .logo-area { display: flex; align-items: center; gap: 8px; }
        header .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        header .logo-area strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { padding: 6px 16px; border-radius: 20px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        header .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #FFD700; }
        header .btn-register { background-color: #FFD700; color: #0A0B0C; }
        header .btn-register:hover { background-color: #FFC400; }
        main { padding-bottom: 80px; max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .jackpot-container { background: linear-gradient(135deg, #16181A 0%, #222528 100%); margin: 15px; padding: 20px; border-radius: 16px; border: 1px solid #FFD700; text-align: center; position: relative; overflow: hidden; }
        .jackpot-label { color: #FFD700; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
        .jackpot-value { font-size: 32px; font-weight: 700; color: #00FF41; text-shadow: 0 0 15px rgba(0, 255, 65, 0.5); font-family: 'system-ui'; }
        .intro-card { background-color: #16181A; margin: 15px; padding: 20px; border-radius: 16px; border: 1px solid #303336; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { color: #B0B3B8; font-size: 14px; }
        .section-title { padding: 0 15px; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; color: #FFFFFF; position: relative; padding-left: 12px; }
        .section-title h2::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 18px; background-color: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background-color: #16181A; border-radius: 12px; overflow: hidden; border: 1px solid #303336; text-decoration: none; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background-color: #16181A; margin: 20px 15px; padding: 20px; border-radius: 16px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #B0B3B8; font-size: 10px; text-align: center; }
        .payment-item i { font-size: 24px; color: #FFD700; }
        .guidelines-section { padding: 0 15px; margin-top: 25px; }
        .guide-item { background-color: #16181A; padding: 15px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #1F2123; }
        .guide-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #B0B3B8; text-align: justify; }
        .lottery-ticker { background-color: #16181A; margin: 20px 0; padding: 10px 0; overflow: hidden; border-top: 1px solid #303336; border-bottom: 1px solid #303336; }
        .ticker-wrap { display: flex; animation: ticker 40s linear infinite; width: max-content; }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .ticker-item { display: flex; align-items: center; gap: 10px; padding: 0 20px; white-space: nowrap; border-right: 1px solid #303336; }
        .ticker-item span:first-child { color: #FFD700; font-weight: 600; }
        .ticker-item span:last-child { color: #00FF41; font-weight: 700; }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background-color: #222528; padding: 15px; text-align: center; border-radius: 8px; font-weight: 600; color: #FFD700; border: 1px solid #303336; }
        .review-section { padding: 0 15px; margin-top: 25px; }
        .review-card { background-color: #16181A; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid #FFD700; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: #B0B3B8; background: #222528; padding: 8px; border-radius: 50%; }
        .review-info h4 { font-size: 14px; color: #FFFFFF; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: #B0B3B8; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: #65676B; }
        .faq-section { padding: 0 15px; margin-top: 25px; }
        .faq-item { background-color: #16181A; border-radius: 8px; margin-bottom: 10px; border: 1px solid #303336; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; font-size: 14px; color: #FFD700; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 13px; color: #B0B3B8; line-height: 1.6; }
        .security-section { margin: 25px 15px; padding: 20px; background-color: #16181A; border-radius: 16px; text-align: center; border: 1px dashed #E60000; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; font-size: 24px; color: #28A745; }
        .security-section p { font-size: 12px; color: #B0B3B8; margin-bottom: 10px; }
        .security-link { color: #FFD700; text-decoration: underline; font-size: 12px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background-color: #16181A; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #303336; z-index: 1000; padding: 0 10px; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; color: #B0B3B8; width: 20%; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; font-weight: 500; }
        .nav-item:nth-child(3) i { background-color: #FFD700; color: #0A0B0C; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-top: -30px; border: 4px solid #0A0B0C; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
        footer { background-color: #16181A; padding: 30px 15px 100px; border-top: 1px solid #303336; }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .contact-btn { background-color: #222528; padding: 10px; border-radius: 8px; text-decoration: none; color: #FFFFFF; font-size: 13px; display: flex; align-items: center; gap: 8px; border: 1px solid #303336; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: #B0B3B8; text-decoration: none; font-size: 13px; }
        .footer-bottom { text-align: center; color: #65676B; font-size: 12px; border-top: 1px solid #303336; padding-top: 20px; }