* { 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.5; -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; }
        
        header { background-color: #1E2329; 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 #2B3139; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: #FCD535; }
        .header-right { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 16px; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #474D57; }
        .btn-register { background: linear-gradient(180deg, #FCD535 0%, #D4AF37 100%); color: #0B0E11; }

        main { padding-bottom: 80px; max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container { background: #181A20; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #FCD535; text-align: center; }
        .jackpot-title { font-size: 14px; color: #848E9C; margin-bottom: 5px; }
        .jackpot-amount { font-size: 28px; font-weight: 700; color: #FCD535; font-family: 'Inter', sans-serif; }

        .intro-card { background: #181A20; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #2B3139; }
        .intro-card h1 { font-size: 20px; color: #FCD535; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #848E9C; }

        .section-title { font-size: 18px; font-weight: 600; padding: 0 15px; margin-top: 25px; margin-bottom: 15px; border-left: 4px solid #FCD535; margin-left: 15px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1E2329; border-radius: 8px; overflow: hidden; border: 1px solid #2B3139; 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 { font-size: 14px; padding: 10px; text-align: center; font-weight: 500; color: #FFFFFF; }

        .payment-section { background: #181A20; margin: 20px 15px; padding: 15px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #848E9C; }
        .payment-item i { font-size: 20px; color: #FCD535; }
        .payment-item span { font-size: 10px; text-align: center; }

        .guidelines-section { padding: 0 15px; margin-top: 20px; }
        .guide-card { background: #181A20; padding: 15px; border-radius: 12px; margin-bottom: 12px; border-left: 3px solid #00C853; }
        .guide-card h2 { font-size: 16px; color: #FCD535; margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: #848E9C; text-align: justify; }

        .lottery-ticker { background: #1E2329; margin: 20px 15px; padding: 10px; border-radius: 8px; height: 150px; overflow: hidden; position: relative; }
        .ticker-track { display: flex; flex-direction: column; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .ticker-item { padding: 8px 5px; border-bottom: 1px solid #2B3139; font-size: 12px; display: flex; justify-content: space-between; }
        .ticker-name { color: #0ECB81; }
        .ticker-win { color: #FCD535; font-weight: 600; }

        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background: #1E2329; padding: 12px; border-radius: 8px; text-align: center; border: 1px solid #2B3139; }
        .provider-item span { font-weight: 600; background: linear-gradient(90deg, #FCD535, #D4AF37); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

        .review-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; margin-top: 15px; }
        .review-card { background: #181A20; padding: 15px; border-radius: 12px; border: 1px solid #2B3139; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #848E9C; }
        .review-user { font-size: 14px; font-weight: 600; }
        .review-stars { color: #FCD535; font-size: 12px; }
        .review-content { font-size: 13px; color: #848E9C; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: #5E6673; }

        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { margin-bottom: 15px; background: #1E2329; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: #FCD535; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #848E9C; }

        .security-section { margin: 20px 15px; padding: 20px; background: #181A20; border-radius: 12px; border: 1px solid #F6465D; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; font-size: 24px; color: #FCD535; }
        .security-section h2 { font-size: 18px; margin-bottom: 10px; }
        .security-section p { font-size: 12px; color: #848E9C; margin-bottom: 10px; }
        .security-section a { color: #377DFF; text-decoration: underline; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1E2329; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2B3139; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #848E9C; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item:active { color: #FCD535; }

        footer { background: #0B0E11; padding: 30px 15px 100px; border-top: 1px solid #2B3139; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { font-size: 14px; color: #FCD535; border: 1px solid #2B3139; padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: #848E9C; text-align: center; }
        .footer-copy { text-align: center; font-size: 12px; color: #5E6673; padding-top: 20px; border-top: 1px solid #2B3139; }