* { 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; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        header { background-color: #181A20; 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 #323539; }
        header .logo-area { display: flex; align-items: center; gap: 8px; }
        header .logo-area img { width: 25px; height: 25px; }
        header .logo-area 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-weight: 500; font-size: 14px; cursor: pointer; border: none; }
        header .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #323539; }
        header .btn-register { background-color: #FFD700; color: #0B0E11; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box { background: linear-gradient(135deg, #181A20 0%, #2B2F36 100%); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #FFD700; text-align: center; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1); }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { color: #FFD700; font-size: 32px; font-weight: 700; font-family: 'Roboto', sans-serif; }
        .intro-card { margin: 15px; padding: 20px; background-color: #181A20; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #B7BDC6; }
        .section-title { margin: 20px 15px 15px; font-size: 18px; border-left: 3px solid #E01E23; padding-left: 10px; display: flex; justify-content: space-between; align-items: center; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background-color: #181A20; border-radius: 8px; overflow: hidden; border: 1px solid #323539; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background-color: #181A20; 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: #B7BDC6; margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: #707A8A; }
        .guides-container { padding: 0 15px; }
        .guide-item { background-color: #181A20; padding: 15px; border-radius: 8px; margin-bottom: 12px; border: 1px solid #26292D; }
        .guide-item h3 { color: #FFD700; font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: #B7BDC6; }
        .lottery-marquee { background-color: #181A20; margin: 20px 0; padding: 10px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid #323539; border-bottom: 1px solid #323539; }
        .marquee-content { display: inline-block; animation: marquee 30s linear infinite; }
        .marquee-item { display: inline-flex; align-items: center; background: #2B2F36; margin-right: 15px; padding: 8px 15px; border-radius: 20px; font-size: 12px; gap: 10px; }
        .marquee-item .user { color: #FFD700; }
        .marquee-item .win { color: #0ECB81; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 0 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-btn { background-color: #1e2329; padding: 12px; border-radius: 6px; text-align: center; color: #F0B90B; font-weight: 600; border: 1px solid #323539; }
        .reviews-container { padding: 0 15px; }
        .review-card { background-color: #181A20; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #323539; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #707A8A; }
        .review-info h4 { font-size: 14px; }
        .review-info .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: #B7BDC6; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: #707A8A; }
        .faq-section { padding: 0 15px; }
        .faq-item { background-color: #181A20; margin-bottom: 10px; border-radius: 8px; border: 1px solid #323539; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 15px; color: #FFFFFF; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #B7BDC6; }
        .security-section { margin: 20px 15px; padding: 20px; background: #181A20; 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: 24px; color: #0ECB81; }
        .security-text { font-size: 12px; color: #707A8A; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #181A20; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #323539; z-index: 1001; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #B7BDC6; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFD700; }
        footer { background-color: #0B0E11; padding: 30px 15px 100px; border-top: 1px solid #323539; }
        .footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { background: #181A20; padding: 10px; border-radius: 6px; font-size: 13px; text-align: center; border: 1px solid #26292D; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 13px; color: #707A8A; }
        .footer-copy { text-align: center; font-size: 12px; color: #707A8A; border-top: 1px solid #323539; padding-top: 20px; }