* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0D0D0D; color: #FFFFFF; font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif; line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        header { position: sticky; top: 0; z-index: 1000; background: #1A1A1B; border-bottom: 1px solid #333333; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; }
        .btn-login { background: #262628; color: #FFFFFF; border: 1px solid #333333; }
        .btn-register { background: #FFD700; color: #000000; }
        main { width: 100%; max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: linear-gradient(135deg, #1A1A1B 0%, #262628 100%); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #FFD700; text-align: center; }
        .jackpot-title { color: #FFD700; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Oswald', sans-serif; font-size: 36px; color: #00E676; letter-spacing: 2px; }
        .intro-card { padding: 20px; margin: 15px; background: #1E1E1E; border-radius: 12px; border: 1px solid #333333; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 12px; font-weight: 700; }
        .intro-card p { font-size: 14px; color: #B0B0B0; text-align: justify; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; color: #FFFFFF; font-weight: 600; border-left: 4px solid #FFD700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1E1E1E; border-radius: 10px; overflow: hidden; border: 1px solid #222222; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background: #1A1A1B; margin: 20px 0; padding: 20px 15px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: #FFD700; margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 12px; color: #B0B0B0; }
        .guidelines { padding: 0 15px; }
        .guide-item { background: #262628; padding: 15px; border-radius: 10px; margin-bottom: 12px; }
        .guide-item h3 { color: #00E676; font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #B0B0B0; }
        .lottery-section { background: #1E1E1E; margin: 20px 15px; border-radius: 12px; overflow: hidden; border: 1px solid #333333; }
        .lottery-marquee { height: 250px; overflow: hidden; position: relative; }
        .lottery-list { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -100%; } }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid #222222; display: flex; justify-content: space-between; align-items: center; }
        .user-info { font-size: 13px; }
        .user-name { color: #FFD700; font-weight: 600; }
        .win-amount { color: #00E676; font-family: 'Oswald', sans-serif; font-weight: 600; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-box { background: linear-gradient(45deg, #1A1A1B, #262628); padding: 15px; text-align: center; border-radius: 8px; border: 1px solid #333333; font-weight: 700; color: #FFD700; }
        .reviews-section { padding: 0 15px; }
        .review-card { background: #1E1E1E; 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: 24px; color: #707070; }
        .review-header div h4 { font-size: 14px; color: #FFFFFF; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: #B0B0B0; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: #707070; text-align: right; }
        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #1A1A1B; border-radius: 8px; margin-bottom: 10px; border: 1px solid #333333; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; color: #FFFFFF; font-size: 15px; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; color: #B0B0B0; font-size: 14px; line-height: 1.6; }
        .security-section { background: #0D0D0D; padding: 30px 15px; border-top: 1px solid #333333; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
        .security-item { font-size: 12px; color: #707070; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .security-item i { font-size: 24px; color: #FFD700; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #1A1A1B; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333333; z-index: 2000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; color: #B0B0B0; font-size: 12px; gap: 4px; width: 20%; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0D0D0D; padding: 30px 15px 100px; border-top: 1px solid #333333; text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; }
        .footer-contacts a { color: #FFFFFF; background: #1A1A1B; padding: 8px 15px; border-radius: 20px; font-size: 13px; border: 1px solid #333333; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: #B0B0B0; }
        .copyright { font-size: 12px; color: #707070; padding-top: 20px; border-top: 1px solid #222222; }