* { 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; }
        
        header { background-color: #15191E; 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 .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #FFFFFF; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        header .actions { display: flex; gap: 10px; }
        header .btn { padding: 6px 16px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        header .btn-login { background: transparent; color: #FFFFFF; border: 1px solid #2B3139; }
        header .btn-register { background: linear-gradient(180deg, #FCD535 0%, #D4AF37 100%); color: #000000; }

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

        .jackpot-container { background: #1E2329; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #FCD535; }
        .jackpot-title { font-family: 'Galada', cursive; font-size: 24px; color: #FCD535; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #FF00FF; text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }

        .intro-card { background: #15191E; margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid #FCD535; }
        .intro-card h1 { font-size: 24px; color: #FCD535; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { color: #B7BDC6; font-size: 14px; }

        .section-title { font-size: 20px; padding: 0 15px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: #FCD535; border-radius: 2px; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1E2329; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #2B3139; transition: 0.3s; }
        .game-card:hover { border-color: #FCD535; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 15px; margin-bottom: 20px; }
        .payment-item { background: #1E2329; padding: 15px 5px; border-radius: 8px; text-align: center; font-size: 10px; color: #B7BDC6; }
        .payment-item i { display: block; font-size: 20px; color: #FCD535; margin-bottom: 5px; }

        .info-section { padding: 0 15px; margin: 25px 0; }
        .info-card { background: #15191E; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #2B3139; }
        .info-card h3 { color: #FCD535; font-size: 18px; margin-bottom: 8px; }
        .info-card p { color: #B7BDC6; font-size: 14px; }

        .lottery-box { background: #15191E; margin: 15px; border-radius: 12px; padding: 15px; height: 200px; overflow: hidden; position: relative; border: 1px solid #2B3139; }
        .lottery-list { animation: scrollList 20s linear infinite; }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2B3139; font-size: 13px; }
        .lottery-user { color: #FCD535; }
        .lottery-win { color: #0ECB81; font-weight: 600; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .provider-item { background: linear-gradient(90deg, #1E2329 0%, #2B3139 100%); padding: 12px; border-radius: 8px; text-align: center; color: #FCD535; font-weight: 600; font-size: 14px; border: 1px solid #2B3139; }

        .review-grid { display: flex; flex-direction: column; gap: 15px; padding: 0 15px; }
        .review-card { background: #1E2329; padding: 15px; border-radius: 12px; position: relative; border-bottom: 3px solid #FCD535; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: #707A8A; }
        .review-stars { color: #F0B90B; font-size: 12px; }
        .review-text { font-size: 13px; color: #B7BDC6; font-style: italic; }
        .review-date { font-size: 11px; color: #707A8A; margin-top: 8px; text-align: right; }

        .faq-section { padding: 0 15px; }
        .faq-item { background: #15191E; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; color: #FCD535; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: #B7BDC6; font-size: 14px; }

        .security-section { background: #1E2329; margin: 20px 15px; padding: 20px; 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: #0ECB81; }
        .age-limit { display: inline-block; border: 2px solid #F6465D; color: #F6465D; padding: 5px 10px; border-radius: 50%; font-weight: bold; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #15191E; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2B3139; z-index: 1001; }
        .nav-item { text-align: center; text-decoration: none; color: #B7BDC6; font-size: 11px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item:active { color: #FCD535; }

        footer { background: #0B0E11; padding: 30px 15px 100px; border-top: 1px solid #2B3139; color: #707A8A; }
        footer .contact-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        footer .contact-row a { color: #B7BDC6; text-decoration: none; font-size: 14px; padding: 5px 10px; border: 1px solid #2B3139; border-radius: 20px; }
        footer .link-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        footer .link-columns a { color: #707A8A; text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        footer .copyright { text-align: center; font-size: 12px; line-height: 1.6; border-top: 1px solid #2B3139; padding-top: 15px; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
        }