* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0B0D; color: #FFFFFF; font-family: 'Hind Siliguri', sans-serif; line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; display: block; }
        header { background: #161B22; border-bottom: 1px solid #30363D; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
        header .logo-container { display: flex; align-items: center; gap: 8px; }
        header .logo-container img { width: 25px; height: 25px; border-radius: 4px; }
        header .logo-container strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        header .auth-btns { display: flex; gap: 10px; }
        header button { padding: 6px 14px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.2s; }
        .btn-login { background: transparent; border: 1px solid #FFD700; color: #FFD700; }
        .btn-register { background: #FFD700; color: #000000; }
        .btn-register:hover { background: #FFC107; }
        main { padding-bottom: 80px; max-width: 1200px; margin: 0 auto; }
        .hero-banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; object-fit: cover; }
        .jackpot-section { background: linear-gradient(180deg, #161B22 0%, #0A0B0D 100%); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #FFD700; text-align: center; box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
        .jackpot-title { color: #B1B1B1; font-size: 14px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { color: #FFD700; font-size: 32px; font-weight: 700; font-family: 'Noto Sans Bengali', sans-serif; display: flex; justify-content: center; align-items: center; gap: 5px; }
        .intro-card { background: #161B22; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #30363D; }
        .intro-card h1 { color: #FFD700; font-size: 24px; margin-bottom: 12px; line-height: 1.2; }
        .intro-card p { color: #B1B1B1; font-size: 14px; text-align: justify; }
        .section-header { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 20px; color: #FFFFFF; position: relative; padding-left: 12px; }
        .section-header h2::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 18px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #21262D; border-radius: 10px; overflow: hidden; border: 1px solid #30363D; transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); border-color: #FFD700; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #FFFFFF; }
        .payment-section { background: #161B22; margin: 25px 15px; padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #8B949E; }
        .payment-item i { font-size: 24px; color: #FFD700; }
        .payment-item span { font-size: 12px; }
        .guidelines-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background: #21262D; padding: 15px; border-radius: 10px; border-left: 3px solid #FFD700; }
        .guide-card h3 { color: #FFD700; font-size: 18px; margin-bottom: 8px; }
        .guide-card p { color: #B1B1B1; font-size: 14px; }
        .lottery-section { background: #161B22; margin: 25px 15px; border-radius: 12px; padding: 15px; overflow: hidden; border: 1px solid #30363D; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #21262D; font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .winner-name { color: #58A6FF; font-weight: 600; }
        .winner-amount { color: #2EA043; font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .provider-item { background: #21262D; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 8px; color: #FFD700; font-weight: 600; border: 1px solid #30363D; }
        .review-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #161B22; padding: 15px; border-radius: 12px; border: 1px solid #30363D; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 24px; color: #FFD700; background: #21262D; padding: 8px; border-radius: 50%; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #8B949E; margin-top: 8px; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: #21262D; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: #FFD700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #30363D; }
        .faq-answer { padding: 15px; color: #B1B1B1; font-size: 14px; background: #161B22; }
        .security-section { margin: 25px 15px; padding: 20px; background: #161B22; 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: #FFD700; }
        .security-text { font-size: 13px; color: #8B949E; }
        .security-links { margin-top: 10px; display: flex; justify-content: center; gap: 15px; font-size: 12px; }
        .security-links a { color: #58A6FF; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #161B22; border-top: 1px solid #30363D; display: flex; justify-content: space-around; padding: 10px 0; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .navigator a { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; color: #8B949E; }
        .navigator i { font-size: 20px; }
        .navigator a:hover { color: #FFD700; }
        footer { background: #0A0B0D; padding: 30px 15px 100px; border-top: 1px solid #30363D; }
        .footer-contact { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
        .footer-contact a { color: #FFD700; font-size: 14px; border: 1px solid #30363D; padding: 8px 15px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #B1B1B1; }
        .footer-links a:hover { color: #FFD700; }
        .footer-copyright { text-align: center; color: #8B949E; font-size: 12px; border-top: 1px solid #21262D; padding-top: 20px; }
        @keyframes countUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .jackpot-amount span { animation: countUp 1s ease-out; }