* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { background-color: #0A0B0D; color: #FFFFFF; font-family: 'Hind Siliguri', 'Kohinoor Bangla', sans-serif; line-height: 1.5; overflow-x: hidden; }
        header { background-color: #161A1E; border-bottom: 1px solid #2B3139; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; height: 60px; }
        header .logo-box { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #FFFFFF; }
        header .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        header .logo-box strong { font-size: 16px; font-weight: 400; }
        header .auth-btns { display: flex; gap: 8px; }
        header button { border: none; border-radius: 4px; padding: 6px 12px; font-weight: 600; cursor: pointer; font-family: inherit; font-size: 14px; }
        header .login-btn { background-color: transparent; color: #FFD700; border: 1px solid #FFD700; }
        header .reg-btn { 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-sec { background: linear-gradient(180deg, #1E2329 0%, #0A0B0D 100%); margin: 16px; padding: 20px; border-radius: 12px; border: 1px solid #F5C518; text-align: center; }
        .jackpot-title { color: #FFD700; font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        .jackpot-amount { font-size: 30px; font-weight: 700; color: #00E676; text-shadow: 0 0 10px rgba(0, 230, 118, 0.4); font-family: 'Inter', sans-serif; }
        .intro-card { padding: 20px; margin: 16px; background: #161A1E; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 24px; color: #FFD700; margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: #B7BDC6; }
        .section-title { padding: 0 16px; margin-top: 24px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
        .section-title h2 { font-size: 20px; font-weight: 600; color: #FFFFFF; }
        .section-title i { color: #FFD700; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
        .game-card { background: #161A1E; border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid #2B3139; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-sec { padding: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; background: #161A1E; margin-top: 20px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
        .payment-item i { font-size: 24px; color: #B7BDC6; }
        .payment-item span { font-size: 10px; color: #B7BDC6; }
        .guidelines { padding: 16px; }
        .guide-item { background: #1E2329; border-radius: 8px; padding: 16px; margin-bottom: 12px; border-top: 2px solid #D32F2F; }
        .guide-item h3 { font-size: 18px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: #B7BDC6; }
        .lottery-container { background: #161A1E; margin: 16px; border-radius: 8px; overflow: hidden; height: 150px; position: relative; border: 1px solid #2B3139; }
        .lottery-track { position: absolute; width: 100%; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { top: 0; } 100% { top: -100%; } }
        .lottery-item { padding: 10px 16px; border-bottom: 1px solid #1E2329; display: flex; justify-content: space-between; font-size: 12px; }
        .lottery-user { color: #FFD700; }
        .lottery-win { color: #0ECB81; font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px; }
        .provider-item { background: #1E2329; border: 1px solid #2B3139; padding: 12px; border-radius: 6px; text-align: center; color: #FFD700; font-weight: 600; font-size: 14px; }
        .reviews { padding: 16px; }
        .review-card { background: #161A1E; padding: 16px; border-radius: 12px; margin-bottom: 12px; border: 1px solid #2B3139; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #5E6673; }
        .review-info h4 { font-size: 14px; color: #FFFFFF; }
        .stars { color: #F0B90B; font-size: 12px; }
        .review-content { font-size: 13px; color: #B7BDC6; font-style: italic; }
        .review-date { font-size: 11px; color: #5E6673; margin-top: 8px; text-align: right; }
        .faq-sec { padding: 16px; }
        .faq-item { background: #161A1E; border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
        .faq-q { padding: 12px 16px; font-weight: 600; font-size: 15px; color: #FFFFFF; border-bottom: 1px solid #2B3139; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-a { padding: 16px; font-size: 14px; color: #B7BDC6; line-height: 1.6; }
        .security-sec { padding: 20px 16px; background: #000000; text-align: center; border-top: 1px solid #2B3139; }
        .security-icons { display: flex; justify-content: center; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons i { font-size: 20px; color: #0ECB81; }
        .security-text { font-size: 12px; color: #5E6673; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #161A1E; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2B3139; z-index: 1001; }
        .nav-item { text-decoration: none; display: flex; flex-direction: column; align-items: center; color: #B7BDC6; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        footer { background: #0A0B0D; padding: 30px 16px 100px; border-top: 1px solid #2B3139; }
        .footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .footer-social a { color: #B7BDC6; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-social a:hover { color: #FFD700; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: #5E6673; text-decoration: none; font-size: 13px; }
        .footer-links a:hover { color: #FFFFFF; }
        .copyright { text-align: center; font-size: 12px; color: #5E6673; line-height: 1.5; border-top: 1px solid #1E2329; pt: 20px; }