@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0F0F0F; color: #FFFFFF; font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif; line-height: 1.5; padding-bottom: 70px; }
        header { background-color: #1A1A1A; 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 #333333; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #FFD700; color: #FFD700; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: #FFD700; border: none; color: #000000; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; }
        main { max-width: 1000px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2 / 1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; border: 1px solid #333333; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(135deg, #1A1A1A 0%, #242424 100%); border: 2px solid #FFD700; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-label { color: #FFD700; font-size: 18px; font-weight: 600; margin-bottom: 10px; display: block; }
        .jackpot-amount { font-family: 'Roboto', sans-serif; font-size: 36px; font-weight: 700; color: #FAD02C; text-shadow: 0 0 10px rgba(250, 208, 44, 0.5); }
        .intro-card { background: #1A1A1A; border: 1px solid #333333; border-radius: 15px; padding: 20px; margin-bottom: 20px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 24px; color: #FFD700; margin-bottom: 10px; line-height: 1.25; }
        .intro-card p { color: #B0B0B0; font-size: 14px; }
        .section-title { font-size: 20px; margin: 20px 0 15px; padding-left: 10px; border-left: 3px solid #FFD700; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
        .game-card { background: #242424; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #333333; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { color: #FFFFFF; font-size: 14px; padding: 10px; text-align: center; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background: #1A1A1A; border-radius: 15px; padding: 20px; margin-bottom: 20px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: #FFD700; }
        .payment-item span { font-size: 12px; color: #B0B0B0; }
        .guide-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-card { background: #1A1A1A; border: 1px solid #262626; border-radius: 12px; padding: 15px; }
        .guide-card h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: #B0B0B0; text-align: justify; }
        .lottery-marquee { background: #1A1A1A; border-radius: 12px; height: 150px; overflow: hidden; position: relative; border: 1px solid #333333; margin-bottom: 20px; }
        .marquee-content { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { top: 100%; } 100% { top: -400%; } }
        .lottery-item { padding: 10px 15px; border-bottom: 1px solid #262626; display: flex; justify-content: space-between; font-size: 13px; }
        .lottery-user { color: #FFD700; }
        .lottery-win { color: #00C853; font-weight: 600; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
        .provider-item { background: #242424; color: #FFD700; text-align: center; padding: 12px; border-radius: 8px; border: 1px solid #333333; font-weight: 600; font-size: 14px; }
        .review-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .review-card { background: #242424; border-radius: 12px; padding: 15px; border: 1px solid #333333; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #6E6E6E; }
        .review-info h4 { font-size: 15px; color: #FFFFFF; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 14px; color: #B0B0B0; margin-bottom: 8px; }
        .review-date { font-size: 12px; color: #6E6E6E; }
        .faq-section { background: #1A1A1A; border-radius: 15px; padding: 20px; margin-bottom: 20px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #262626; padding-bottom: 15px; }
        .faq-item h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; cursor: pointer; }
        .faq-item p { font-size: 14px; color: #B0B0B0; }
        .security-section { background: #1A1A1A; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons i { font-size: 30px; color: #FFD700; }
        .security-text { font-size: 12px; color: #B0B0B0; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1A1A1A; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #333333; z-index: 1001; }
        .nav-item { text-decoration: none; color: #B0B0B0; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        footer { background: #0F0F0F; padding: 30px 15px 100px; border-top: 1px solid #333333; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contact a { color: #B0B0B0; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 6px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: #6E6E6E; text-decoration: none; font-size: 13px; text-align: center; }
        .footer-copy { text-align: center; color: #6E6E6E; font-size: 12px; border-top: 1px solid #262626; padding-top: 20px; }