* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0D0D0D; color: #FFFFFF; font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif; line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        header { background: #1A1A1C; border-bottom: 1px solid #222222; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
        header .logo-area { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #FFFFFF; }
        header .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-area strong { font-size: 16px; font-weight: 400; color: #FFD700; }
        header .auth-buttons { display: flex; gap: 10px; }
        header button { border: none; border-radius: 4px; padding: 6px 12px; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; }
        header .login-btn { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        header .register-btn { background: #FFD700; color: #000000; }
        main { max-width: 1000px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2 / 1; border-radius: 12px; overflow: hidden; margin-bottom: 15px; cursor: pointer; background: #1A1A1C; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(135deg, #1A1A1C 0%, #000000 100%); border: 2px solid #FFD700; border-radius: 12px; padding: 15px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; }
        .jackpot-amount { color: #FFFFFF; font-size: 30px; font-weight: 700; letter-spacing: 1px; }
        .intro-card { background: #1A1A1C; border-radius: 12px; padding: 20px; margin-bottom: 20px; border-left: 4px solid #FFD700; }
        .intro-card h1 { color: #FFD700; font-size: 24px; margin-bottom: 10px; }
        .intro-card p { color: #B0B0B0; font-size: 14px; text-align: justify; }
        .section-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; margin-top: 10px; }
        .section-header h2 { font-size: 20px; color: #FFD700; border-bottom: 2px solid #FFD700; padding-bottom: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1A1A1C; border-radius: 10px; 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: 8px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; background: #1A1A1C; padding: 15px; border-radius: 12px; margin-bottom: 25px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 20px; color: #FFD700; }
        .payment-item span { font-size: 10px; color: #B0B0B0; }
        .guidelines-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: #1A1A1C; padding: 15px; border-radius: 10px; border: 1px solid #222222; }
        .guide-card h3 { color: #FFD700; margin-bottom: 8px; font-size: 18px; }
        .guide-card p { color: #B0B0B0; font-size: 14px; text-align: justify; }
        .lottery-marquee { background: #1A1A1C; border-radius: 12px; padding: 10px; margin-bottom: 25px; overflow: hidden; border: 1px solid #333333; }
        .marquee-content { display: flex; flex-direction: column; animation: marqueeScroll 30s linear infinite; }
        @keyframes marqueeScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 5px; border-bottom: 1px solid #222222; font-size: 12px; }
        .lottery-item .user { color: #FFD700; }
        .lottery-item .win { color: #00FF7F; font-weight: bold; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: #252528; padding: 12px; text-align: center; border-radius: 8px; color: #FFD700; font-weight: 600; font-size: 14px; border: 1px solid #333333; }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .review-card { background: #1A1A1C; padding: 15px; border-radius: 12px; border: 1px solid #333333; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #808080; }
        .review-user { flex: 1; }
        .review-user h4 { font-size: 15px; color: #FFFFFF; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-content { color: #B0B0B0; font-size: 14px; font-style: italic; }
        .review-date { font-size: 11px; color: #4D4D4D; margin-top: 8px; text-align: right; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1A1A1C; border-radius: 8px; margin-bottom: 10px; border: 1px solid #222222; }
        .faq-question { padding: 15px; font-weight: 600; color: #FFD700; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; color: #B0B0B0; font-size: 14px; text-align: justify; }
        .security-section { background: #1A1A1C; padding: 20px; border-radius: 12px; text-align: center; border-top: 2px solid #B22222; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #B0B0B0; }
        .security-link { color: #FFD700; text-decoration: underline; margin-top: 5px; display: inline-block; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1A1A1C; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333333; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 4px; color: #B0B0B0; transition: 0.3s; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        .nav-item:active { color: #FFD700; }
        footer { background: #0D0D0D; padding: 30px 15px 10px; border-top: 1px solid #222222; text-align: center; }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-contact a { color: #B0B0B0; font-size: 13px; text-decoration: none; background: #1A1A1C; padding: 8px; border-radius: 5px; border: 1px solid #333333; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; text-align: left; }
        .footer-links a { color: #808080; font-size: 12px; text-decoration: none; }
        .footer-copy { font-size: 11px; color: #4D4D4D; border-top: 1px solid #222222; padding-top: 15px; }