* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif; background-color: #0F0F0F; color: #FFFFFF; line-height: 1.6; overflow-x: hidden; }
        header { background-color: #1A1A1A; 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 #2F2F2F; }
        header .logo-box { display: flex; align-items: center; gap: 8px; }
        header .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-box strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { padding: 6px 15px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; 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; }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(180deg, #1A1A1A 0%, #0F0F0F 100%); padding: 20px; text-align: center; border-bottom: 1px solid #2F2F2F; }
        .jackpot-title { color: #D4AF37; font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 700; color: #F9E076; text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
        .intro-card { padding: 20px; margin: 15px; background: #1A1A1A; border-radius: 12px; border: 1px solid #2F2F2F; }
        .intro-card h1 { font-size: 20px; color: #D4AF37; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #B0B3B8; }
        .section-container { padding: 15px; }
        .section-header { display: flex; align-items: center; margin-bottom: 15px; gap: 10px; border-left: 4px solid #D4AF37; padding-left: 10px; }
        .section-header h2 { font-size: 20px; font-weight: 600; color: #FFFFFF; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1A1A1A; border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid #2F2F2F; 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: 8px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license { background: #1A1A1A; padding: 20px 15px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin: 15px 0; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 20px; color: #D4AF37; }
        .payment-item span { font-size: 10px; color: #B0B3B8; text-align: center; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
        .guide-card { background: #1A1A1A; padding: 15px; border-radius: 8px; border-left: 3px solid #00C853; }
        .guide-card h3 { font-size: 16px; color: #D4AF37; margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: #B0B3B8; }
        .lottery-ticker { background: #1A1A1A; height: 120px; overflow: hidden; position: relative; margin: 20px 0; border-top: 1px solid #2F2F2F; border-bottom: 1px solid #2F2F2F; }
        .ticker-wrap { animation: scrollTicker 30s linear infinite; display: flex; flex-direction: column; }
        @keyframes scrollTicker { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .ticker-item { padding: 10px 15px; border-bottom: 1px solid #252525; display: flex; justify-content: space-between; font-size: 13px; }
        .ticker-item span.user { color: #F9E076; }
        .ticker-item span.amount { color: #00C853; font-weight: 700; }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: #252525; padding: 12px; text-align: center; border-radius: 6px; font-weight: 600; color: #D4AF37; border: 1px solid #404040; }
        .comments-section { padding: 15px; }
        .comment-card { background: #1A1A1A; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2F2F2F; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 24px; color: #D4AF37; }
        .comment-rating { color: #FFC107; font-size: 12px; margin-bottom: 8px; }
        .comment-content { font-size: 14px; color: #B0B3B8; margin-bottom: 8px; }
        .comment-date { font-size: 12px; color: #65676B; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1A1A1A; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #2F2F2F; }
        .faq-item h3 { font-size: 15px; color: #D4AF37; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #B0B3B8; }
        .security-section { background: #111; padding: 25px 15px; text-align: center; border-top: 2px solid #2F2F2F; }
        .security-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; }
        .security-badge { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 12px; color: #B0B3B8; }
        .security-badge i { font-size: 24px; color: #00C853; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1A1A1A; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2F2F2F; z-index: 2000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #B0B3B8; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }
        footer { background: #0A0A0A; padding: 30px 15px 100px 15px; border-top: 1px solid #2F2F2F; }
        .footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: #D4AF37; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 8px; }
        .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-copy { text-align: center; font-size: 12px; color: #65676B; border-top: 1px solid #2F2F2F; padding-top: 15px; }