* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { background-color: #0D0E12; color: #FFFFFF; font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif; line-height: 1.6; overflow-x: hidden; }
        header { background: #1A1D23; 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 #2D323E; }
        header .logo-box { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #FFFFFF; }
        header .logo-box img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-box strong { font-size: 16px; font-weight: normal; }
        header .auth-btns { display: flex; gap: 10px; }
        header .auth-btns button { border: none; border-radius: 4px; padding: 6px 12px; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700 !important; }
        .btn-register { background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%); color: #000000; }
        main { padding-bottom: 80px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #1A1D23; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid rgba(255, 215, 0, 0.3); text-align: center; }
        .jackpot-title { color: #FFD700; font-size: 18px; margin-bottom: 10px; font-weight: bold; }
        .jackpot-amount { font-family: 'Orbitron', sans-serif; font-size: 28px; color: #00FF41; text-shadow: 0 0 10px rgba(0, 255, 65, 0.5); }
        .intro-card { background: linear-gradient(135deg, #1A1D23 0%, #0D0E12 100%); margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 24px; color: #FFD700; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { font-size: 16px; color: #B0B3B8; }
        .section-header { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 20px; color: #FFFFFF; position: relative; padding-left: 12px; }
        .section-header h2::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 18px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1A1D23; border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid #2D323E; transition: 0.3s; }
        .game-card:active { transform: scale(0.96); }
        .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; }
        .payment-section { background: #1A1D23; padding: 20px 15px; margin-top: 25px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: #FFD700; }
        .payment-item span { font-size: 10px; color: #B0B3B8; }
        .guide-section { padding: 20px 15px; }
        .guide-card { background: #242933; padding: 15px; border-radius: 10px; margin-bottom: 12px; }
        .guide-card h3 { font-size: 18px; color: #FFD700; margin-bottom: 8px; }
        .guide-card p { font-size: 14px; color: #B0B3B8; text-align: justify; }
        .lottery-marquee { background: #1A1D23; margin: 15px; border-radius: 10px; overflow: hidden; border: 1px solid #2D323E; height: 150px; position: relative; }
        .marquee-content { position: absolute; width: 100%; animation: scrollMarquee 20s linear infinite; }
        @keyframes scrollMarquee { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 10px 15px; border-bottom: 1px solid #2D323E; display: flex; justify-content: space-between; font-size: 13px; }
        .lottery-item .user { color: #FFD700; }
        .lottery-item .win { color: #00FF41; font-weight: bold; }
        .providers-section { padding: 0 15px; margin-bottom: 25px; }
        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .provider-btn { background: #242933; color: #FFD700; padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; border: 1px solid #2D323E; }
        .comment-section { padding: 0 15px; margin-bottom: 25px; }
        .comment-card { background: #1A1D23; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2D323E; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 20px; color: #B0B3B8; background: #2D323E; padding: 8px; border-radius: 50%; }
        .comment-name { font-weight: 600; font-size: 15px; }
        .stars { color: #FFD700; font-size: 12px; margin-bottom: 8px; }
        .comment-text { font-size: 14px; color: #B0B3B8; margin-bottom: 8px; }
        .comment-date { font-size: 12px; color: #65676B; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #1A1D23; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #2D323E; }
        .faq-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #B0B3B8; }
        .security-section { background: #0D0E12; border: 1px solid #2D323E; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #00C853; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1A1D23; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2D323E; z-index: 1001; }
        .navigator a { text-decoration: none; color: #B0B3B8; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; }
        .navigator a i { font-size: 20px; }
        footer { background: #0D0E12; padding: 30px 15px 100px; border-top: 1px solid #2D323E; }
        .footer-contacts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-contacts a { background: #1A1D23; color: #FFFFFF; text-decoration: none; padding: 10px; border-radius: 6px; font-size: 13px; text-align: center; border: 1px solid #2D323E; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: #B0B3B8; text-decoration: none; font-size: 13px; }
        .footer-copy { text-align: center; font-size: 12px; color: #65676B; line-height: 1.4; }