* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0D0F14; color: #FFFFFF; font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif; line-height: 1.6; overflow-x: hidden; }
        header { background: #1A1D26; 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 #2D333B; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .header-right { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; transition: 0.3s; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(180deg, #FFD700 0%, #B8860B 100%); color: #000000; }
        .btn:hover { opacity: 0.9; transform: translateY(-1px); }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .jackpot-container { background: #242933; margin: 15px; padding: 20px; border-radius: 15px; border: 1px solid #FFD700; text-align: center; position: relative; }
        .jackpot-title { font-family: 'Galada', cursive; font-size: 24px; color: #FFD700; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #FFFFFF; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: #1A1D26; margin: 15px; padding: 20px; 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 { font-size: 14px; color: #B0B3B8; text-align: justify; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #FFD700; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 18px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1A1D26; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #2D333B; transition: 0.3s; }
        .game-card:hover { border-color: #FFD700; transform: translateY(-3px); }
        .game-image { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .game-info h3 { font-size: 14px; color: #FFFFFF; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background: #1A1D26; margin: 15px; padding: 15px; border-radius: 12px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 10px; }
        .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: 10px; color: #B0B3B8; }
        .guides-container { padding: 15px; }
        .guide-item { background: #242933; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #2D333B; }
        .guide-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: #B0B3B8; }
        .lottery-section { background: #1A1D26; margin: 15px; padding: 10px; border-radius: 12px; height: 200px; overflow: hidden; position: relative; }
        .lottery-marquee { animation: marqueeScroll 20s linear infinite; }
        @keyframes marqueeScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 10px; border-bottom: 1px solid #2D333B; font-size: 12px; }
        .lottery-user { color: #FFD700; }
        .lottery-amount { color: #28A745; font-weight: 700; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-box { background: linear-gradient(135deg, #1A1D26 0%, #242933 100%); padding: 15px; text-align: center; border-radius: 8px; border: 1px solid #2D333B; color: #FFD700; font-weight: 600; font-size: 14px; }
        .comments-container { padding: 15px; }
        .comment-card { background: #1A1D26; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2D333B; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-avatar { width: 35px; height: 35px; background: #242933; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFD700; border: 1px solid #FFD700; }
        .comment-name { font-weight: 600; font-size: 14px; }
        .comment-stars { color: #FFC107; font-size: 12px; }
        .comment-content { font-size: 13px; color: #B0B3B8; margin-top: 5px; }
        .comment-date { font-size: 11px; color: #6C757D; margin-top: 8px; text-align: right; }
        .faq-container { padding: 15px; }
        .faq-item { background: #1A1D26; border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2D333B; }
        .faq-question { padding: 15px; font-weight: 600; color: #FFFFFF; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-answer { padding: 0 15px 15px; font-size: 14px; color: #B0B3B8; }
        .security-section { background: #0D0F14; padding: 20px; text-align: center; border-top: 1px solid #2D333B; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons div { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: #6C757D; }
        .security-icons i { font-size: 20px; color: #28A745; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1A1D26; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 2px solid #FFD700; z-index: 1001; }
        .nav-item { text-decoration: none; color: #B0B3B8; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item:hover, .nav-item.active { color: #FFD700; }
        footer { background: #0D0F14; padding: 30px 15px 100px; border-top: 1px solid #2D333B; text-align: center; }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact h2 { font-size: 18px; color: #FFD700; margin-bottom: 15px; }
        .contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .contact-links a { color: #FFFFFF; text-decoration: none; font-size: 14px; background: #1A1D26; padding: 8px 15px; border-radius: 20px; border: 1px solid #2D333B; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-grid a { color: #B0B3B8; text-decoration: none; font-size: 13px; }
        .footer-grid a:hover { color: #FFD700; }
        .copyright { font-size: 12px; color: #6C757D; border-top: 1px solid #2D333B; padding-top: 20px; }
        .jackpot-val { transition: 0.1s; }