* { 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.6; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        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 .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        header .actions { display: flex; gap: 10px; }
        header .actions button { padding: 6px 15px; border-radius: 4px; border: none; font-weight: 600; cursor: pointer; font-family: inherit; font-size: 14px; }
        .btn-login { background-color: transparent; color: #FFD700; border: 1px solid #FFD700 !important; }
        .btn-register { background-color: #FFD700; color: #000000; }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(135deg, #1A1A1A, #242424); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #FFD700; text-align: center; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-family: 'Roboto', sans-serif; font-size: 28px; color: #FFFFFF; font-weight: 700; display: flex; justify-content: center; align-items: center; gap: 5px; }
        .intro-card { margin: 15px; padding: 20px; background-color: #1A1A1A; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; font-weight: 700; }
        .intro-card p { color: #B0B0B0; font-size: 14px; text-align: justify; }
        .section-title { margin: 20px 15px 10px; font-size: 18px; display: flex; align-items: center; gap: 10px; color: #FFD700; }
        .section-title::before { content: ""; width: 4px; height: 18px; background-color: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background-color: #1A1A1A; border-radius: 10px; overflow: hidden; transition: transform 0.2s; border: 1px solid #333333; }
        .game-card:active { transform: scale(0.98); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; text-align: center; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background-color: #1A1A1A; margin: 20px 15px; padding: 15px; border-radius: 12px; }
        .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; color: #B0B0B0; }
        .payment-item i { font-size: 20px; color: #FFD700; }
        .payment-item span { font-size: 10px; }
        .guidelines-section { padding: 0 15px; }
        .guide-card { background-color: #242424; padding: 15px; border-radius: 10px; margin-bottom: 12px; border: 1px solid #333333; }
        .guide-card h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-card p { font-size: 13px; color: #B0B0B0; text-align: justify; }
        .lottery-section { background-color: #1A1A1A; margin: 20px 0; padding: 15px 0; overflow: hidden; }
        .lottery-track { display: flex; flex-direction: column; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 20px; border-bottom: 1px solid #242424; font-size: 13px; }
        .lottery-user { color: #FFD700; }
        .lottery-amount { color: #00C853; font-weight: 700; }
        .providers-wall { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .provider-box { padding: 12px; text-align: center; background: #242424; border-radius: 8px; border: 1px solid #444444; color: #FFD700; font-weight: 600; font-size: 14px; }
        .reviews-section { padding: 0 15px; }
        .review-card { background: #1A1A1A; border-radius: 12px; padding: 15px; margin-bottom: 15px; border: 1px solid #333333; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #888888; }
        .review-info h4 { font-size: 14px; color: #FFFFFF; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: #B0B0B0; font-style: italic; }
        .review-date { font-size: 11px; color: #666666; margin-top: 8px; display: block; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: #1A1A1A; margin-bottom: 10px; border-radius: 8px; overflow: hidden; border: 1px solid #333333; }
        .faq-question { padding: 15px; font-weight: 600; color: #FFFFFF; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; color: #B0B0B0; font-size: 13px; border-top: 1px solid #242424; padding-top: 10px; }
        .security-section { margin: 20px 15px; text-align: center; padding: 20px; background: #1A1A1A; border-radius: 12px; border: 1px dashed #FFD700; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-section h2 { font-size: 16px; margin-bottom: 10px; }
        .security-section p { font-size: 12px; color: #B0B0B0; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1A1A1A; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #B0B0B0; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        footer { background: #0F0F0F; padding: 30px 15px 100px; border-top: 1px solid #333333; }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .contact-link { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #B0B0B0; background: #1A1A1A; padding: 10px; border-radius: 6px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { font-size: 12px; color: #666666; }
        .footer-bottom { text-align: center; font-size: 11px; color: #666666; border-top: 1px solid #242424; padding-top: 20px; }