* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0E11; color: #FFFFFF; font-family: 'Hind Siliguri', sans-serif; line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        .container { padding: 0 16px; width: 100%; max-width: 800px; margin: 0 auto; }
        header { background-color: #151A21; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; 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: #F0B90B; }
        .auth-buttons { display: flex; gap: 8px; }
        .btn { border-radius: 4px; padding: 6px 12px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; transition: opacity 0.2s; }
        .btn-login { background-color: #1E2329; color: #FFFFFF; border: 1px solid #2B3139; }
        .btn-register { background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%); color: #000000; }
        .hero { width: 100%; cursor: pointer; display: block; line-height: 0; }
        .hero img { width: 100%; height: auto; aspect-ratio: 2/1; object-fit: cover; }
        .jackpot-section { background-color: #1E2329; margin: 16px 0; padding: 20px; text-align: center; border-radius: 12px; border: 1px solid #F0B90B; }
        .jackpot-label { color: #F0B90B; font-size: 18px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #FFFFFF; font-family: 'Noto Sans Bengali', sans-serif; letter-spacing: 2px; }
        .intro-section { padding: 24px 16px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: #F0B90B; margin-bottom: 12px; font-weight: 700; }
        .intro-section p { color: #B0B0B0; font-size: 16px; }
        .section-title { font-size: 20px; font-weight: 700; margin: 24px 16px 16px; border-left: 4px solid #F0B90B; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
        .game-card { background-color: #1E2026; border-radius: 12px; overflow: hidden; border: 1px solid #2B3139; transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-4px); }
        .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; }
        .article-list { padding: 0 16px; display: flex; flex-direction: column; gap: 16px; }
        .article-card { background-color: #151A21; border-radius: 12px; border: 1px solid #2B3139; display: flex; flex-direction: column; overflow: hidden; }
        .article-card img { width: 100%; height: 180px; object-fit: cover; }
        .article-content { padding: 16px; }
        .article-content h2 { font-size: 18px; margin-bottom: 8px; color: #F0B90B; }
        .article-content p { font-size: 14px; color: #B0B0B0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 16px; background-color: #151A21; margin: 16px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: #848E9C; text-align: center; }
        .payment-item i { font-size: 20px; color: #F0B90B; }
        .winning-records { background-color: #1E2026; margin: 16px; padding: 16px; border-radius: 12px; border: 1px solid #2B3139; height: 250px; overflow: hidden; position: relative; }
        .records-track { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .record-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2B3139; font-size: 13px; }
        .record-user { color: #00C087; font-weight: 600; }
        .record-win { color: #F0B90B; font-weight: 700; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 16px; }
        .provider-block { background-color: #1E2329; height: 60px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #B0B0B0; border: 1px solid #2B3139; }
        .reviews-list { padding: 0 16px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background-color: #1E2026; padding: 16px; 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-name { font-weight: 600; font-size: 16px; }
        .review-stars { color: #FFD700; font-size: 12px; margin-bottom: 8px; }
        .review-body { font-size: 14px; color: #B0B0B0; }
        .review-date { font-size: 12px; color: #474D57; margin-top: 8px; }
        .faq-section { padding: 0 16px 24px; }
        .faq-item { margin-bottom: 16px; background-color: #151A21; border-radius: 12px; overflow: hidden; border: 1px solid #2B3139; }
        .faq-question { padding: 16px; font-weight: 600; color: #FFFFFF; display: flex; align-items: center; gap: 10px; }
        .faq-question i { color: #F0B90B; }
        .faq-answer { padding: 0 16px 16px; color: #B0B0B0; font-size: 14px; }
        .security-section { background-color: #1E2329; margin: 16px; padding: 20px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; font-size: 30px; color: #00C087; }
        .security-text { font-size: 14px; color: #848E9C; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 24px 16px; border-top: 1px solid #2B3139; text-align: center; }
        .footer-links a { font-size: 13px; color: #848E9C; }
        .footer-copyright { padding: 16px; text-align: center; color: #474D57; font-size: 12px; margin-bottom: 70px; background-color: #0B0E11; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background-color: #151A21; height: 60px; display: flex; border-top: 1px solid #2B3139; z-index: 1001; }
        .nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: #848E9C; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #F0B90B; }
        .btn-download-hero { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); }