* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0E11; color: #FFFFFF; font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif; line-height: 1.6; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        header { background-color: #080A0C; 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 #2C313C; }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { padding: 6px 16px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; }
        header .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        header .btn-register { background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%); color: #0B0E11; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #151921; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #FFD700; text-align: center; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 18px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-family: 'Roboto', sans-serif; font-size: 32px; font-weight: 700; color: #00FF41; letter-spacing: 1px; }
        .intro-card { background: #151921; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #2C313C; }
        .intro-card h1 { font-size: 24px; color: #FFD700; margin-bottom: 12px; font-weight: 700; }
        .intro-card p { font-size: 14px; color: #B0B3B8; text-align: justify; }
        .section-header { padding: 0 15px; margin-top: 25px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 20px; color: #FFFFFF; position: relative; }
        .section-header h2::after { content: ''; display: block; width: 40px; height: 3px; background: #FFD700; margin-top: 4px; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1E232E; border-radius: 12px; overflow: hidden; border: 1px solid #1C212B; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; font-weight: 500; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background: #080A0C; padding: 20px 15px; margin-top: 20px; }
        .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: 8px; }
        .payment-item i { font-size: 24px; color: #FFB800; }
        .payment-item span { font-size: 11px; color: #B0B3B8; }
        .guidelines { padding: 15px; }
        .guide-item { background: #151921; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 4px solid #FFD700; }
        .guide-item h3 { font-size: 18px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: #B0B3B8; }
        .lottery-section { background: #151921; margin: 15px; border-radius: 12px; overflow: hidden; }
        .lottery-marquee { height: 200px; overflow: hidden; position: relative; }
        .marquee-content { animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { display: flex; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid #1C212B; align-items: center; }
        .lottery-user { color: #FFFFFF; font-size: 14px; }
        .lottery-game { color: #B0B3B8; font-size: 12px; }
        .lottery-win { color: #00FF41; font-weight: 700; font-family: 'Roboto'; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: #1E232E; padding: 12px; text-align: center; border-radius: 8px; border: 1px solid #2C313C; color: #FFD700; font-weight: 600; font-size: 14px; }
        .reviews { padding: 15px; }
        .review-card { background: #151921; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2C313C; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 20px; color: #FFD700; background: #1E232E; padding: 10px; border-radius: 50%; }
        .review-meta h3 { font-size: 16px; color: #FFFFFF; }
        .review-stars { color: #FFA000; font-size: 12px; }
        .review-text { font-size: 14px; color: #B0B3B8; margin-bottom: 8px; }
        .review-date { font-size: 12px; color: #65676B; text-align: right; }
        .faq-section { padding: 15px; }
        .faq-item { background: #151921; border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2C313C; }
        .faq-question { padding: 15px; font-weight: 600; color: #FFFFFF; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: #B0B3B8; font-size: 14px; display: block; }
        .security-section { background: #1E232E; padding: 25px 15px; margin: 20px 15px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons i { font-size: 30px; color: #00E676; }
        .security-text { font-size: 13px; color: #B0B3B8; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #080A0C; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2C313C; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #B0B3B8; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #080A0C; padding: 30px 15px 100px; border-top: 1px solid #2C313C; }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 30px; }
        .contact-link { display: flex; align-items: center; gap: 8px; color: #B0B3B8; font-size: 14px; }
        .contact-link i { color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { color: #65676B; font-size: 13px; display: block; margin-bottom: 5px; }
        .footer-copy { text-align: center; color: #65676B; font-size: 12px; border-top: 1px solid #1C212B; pt: 20px; }