@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
        * { 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; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        header { background-color: #1E2329; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2B3139; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 4px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background-color: transparent; color: #FCD535; border: 1px solid #FCD535; }
        .btn-register { background: linear-gradient(180deg, #FCD535 0%, #B8860B 100%); color: #000000; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background-color: #1E2329; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #FCD535; }
        .jackpot-title { font-size: 14px; color: #FCD535; text-transform: uppercase; margin-bottom: 10px; font-weight: 700; letter-spacing: 1px; }
        .jackpot-amount { font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 800; color: #FCD535; display: flex; justify-content: center; align-items: center; gap: 5px; }
        .intro-section { padding: 20px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: #FCD535; margin-bottom: 15px; line-height: 1.25; }
        .intro-section p { font-size: 16px; color: #EAECEF; text-align: justify; }
        .section-title { padding: 0 20px; font-size: 20px; color: #FFFFFF; margin: 20px 0 15px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; display: block; width: 4px; height: 20px; background: #FCD535; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; }
        .game-card { background-color: #1E2329; border-radius: 12px; overflow: hidden; border: 1px solid #2B3139; transition: transform 0.2s; }
        .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: #EAECEF; }
        .article-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
        .article-card { background-color: #1E2329; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid #2B3139; }
        .article-card img { width: 100%; height: 180px; object-fit: cover; }
        .article-info { padding: 15px; }
        .article-info h2 { font-size: 18px; color: #FCD535; margin-bottom: 10px; }
        .article-info p { font-size: 14px; color: #929AA5; line-height: 1.5; }
        .payment-section { background-color: #1E2329; margin: 20px 15px; padding: 20px; border-radius: 12px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: #FCD535; margin-bottom: 5px; }
        .payment-item span { font-size: 10px; color: #929AA5; display: block; }
        .lottery-section { background-color: #1E2329; margin: 20px 15px; border-radius: 12px; overflow: hidden; padding: 15px; height: 250px; position: relative; }
        .lottery-wrapper { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { top: 100%; } 100% { top: -400%; } }
        .lottery-item { padding: 10px 0; border-bottom: 1px solid #2B3139; font-size: 13px; }
        .lottery-item span { color: #0ECB81; font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-block { background-color: #2B3139; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-weight: 700; color: #FCD535; border: 1px solid #474D57; }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 15px; }
        .review-card { background-color: #1E2329; padding: 20px; border-radius: 12px; border: 1px solid #2B3139; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #929AA5; }
        .star-rating { color: #F0B90B; margin-bottom: 10px; }
        .review-content { font-size: 14px; color: #EAECEF; font-style: italic; }
        .review-date { font-size: 12px; color: #474D57; margin-top: 10px; }
        .faq-section { padding: 0 15px 20px; }
        .faq-item { background-color: #1E2329; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #2B3139; }
        .faq-item h3 { font-size: 16px; color: #FCD535; margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: #EAECEF; text-align: justify; }
        .security-section { background-color: #0B0E11; padding: 30px 20px; text-align: center; border-top: 1px solid #2B3139; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 32px; color: #0ECB81; }
        .security-section h2 { font-size: 18px; margin-bottom: 10px; color: #FCD535; }
        .security-section p { font-size: 13px; color: #929AA5; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #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; color: #929AA5; font-size: 12px; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FCD535; }
        footer { background-color: #111418; padding: 40px 20px 100px; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 14px; color: #929AA5; }
        .footer-copyright { font-size: 12px; color: #474D57; border-top: 1px solid #2B3139; padding-top: 20px; }