* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0B0D; color: #FFFFFF; font-family: 'Hind Siliguri', 'Noto Sans Bengali', Arial, Helvetica, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        header { background: #16181D; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2C2F36; }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #FFFFFF; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; }
        header .actions { display: flex; gap: 8px; }
        header button { border: none; padding: 6px 14px; border-radius: 4px; font-weight: 600; cursor: pointer; font-size: 14px; transition: 0.3s; }
        header .login-btn { background: transparent; color: #D4AF37; border: 1px solid #D4AF37; }
        header .register-btn { background: #D4AF37; color: #000000; }
        header .register-btn:hover { background: #F1C40F; }
        main { max-width: 1000px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #16181D; border: 2px solid #D4AF37; border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
        .jackpot-label { color: #D4AF37; font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-value { font-size: 36px; font-weight: 700; color: #FFFFFF; font-family: monospace; letter-spacing: 2px; }
        .intro-card { background: #16181D; padding: 25px; border-radius: 12px; margin-bottom: 20px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 24px; color: #D4AF37; margin-bottom: 12px; line-height: 1.25; }
        .intro-card p { font-size: 16px; color: #B0B3B8; }
        .section-title { font-size: 20px; margin: 25px 0 15px; color: #FFFFFF; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 20px; background: #D4AF37; display: inline-block; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: #16181D; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid #2C2F36; transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); border-color: #D4AF37; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-license { background: #16181D; padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 20px; }
        .pl-item { text-align: center; font-size: 12px; color: #B0B3B8; }
        .pl-item i { font-size: 24px; color: #D4AF37; display: block; margin-bottom: 5px; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
        .guide-item { background: #16181D; padding: 20px; border-radius: 12px; border: 1px solid #2C2F36; }
        .guide-item h3 { font-size: 18px; color: #D4AF37; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: #B0B3B8; }
        .winners-list { background: #16181D; border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
        .winner-row { display: flex; justify-content: space-between; padding: 12px 15px; border-bottom: 1px solid #2C2F36; font-size: 14px; }
        .winner-row:last-child { border-bottom: none; }
        .winner-name { color: #D4AF37; font-weight: 600; }
        .winner-amount { color: #27AE60; font-weight: 700; }
        .providers-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
        .provider-btn { background: #22252C; padding: 15px; border-radius: 8px; text-align: center; color: #D4AF37; font-weight: 600; border: 1px solid #2C2F36; }
        .reviews { margin-bottom: 20px; }
        .review-card { background: #22252C; padding: 20px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #D4AF37; }
        .review-info h4 { font-size: 16px; color: #FFFFFF; }
        .stars { color: #F1C40F; font-size: 12px; }
        .review-content { font-size: 14px; color: #B0B3B8; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: #65676B; text-align: right; }
        .faq-section { background: #16181D; border-radius: 12px; padding: 5px; margin-bottom: 20px; }
        .faq-item { padding: 15px; border-bottom: 1px solid #2C2F36; }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h3 { font-size: 16px; color: #D4AF37; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #B0B3B8; }
        .security-section { background: #0B5345; padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; }
        .security-section p { font-size: 14px; color: #FFFFFF; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #16181D; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #D4AF37; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: #B0B3B8; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item span { font-size: 12px; }
        footer { background: #16181D; padding: 30px 15px; border-top: 1px solid #2C2F36; text-align: center; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: #D4AF37; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: #B0B3B8; text-decoration: none; font-size: 14px; transition: 0.3s; }
        .footer-links a:hover { color: #D4AF37; }
        .copyright { font-size: 12px; color: #65676B; padding-top: 20px; border-top: 1px solid #2C2F36; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
            .providers-wall { grid-template-columns: repeat(4, 1fr); }
        }