* { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: #0B0E14;
            color: #FFFFFF;
            font-family: 'Hind Siliguri', 'SolaimanLipi', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        header {
            background-color: #161A23;
            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 #2D323E;
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .header-right { display: flex; gap: 8px; }
        .btn-login, .btn-register {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background-color: #FFD700; color: #0B0E14; }
        main { max-width: 600px; margin: 0 auto; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(180deg, #1F242F 0%, #161A23 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #FFD700;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: #FFD700; font-size: 18px; margin-bottom: 10px; font-weight: 700; }
        #jackpot-amount { font-size: 30px; font-weight: 700; color: #FFFFFF; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px; margin: 15px; background: #161A23; border-radius: 12px; border: 1px solid #2D323E; }
        .intro-card h1 { font-size: 24px; color: #FFD700; margin-bottom: 10px; line-height: 1.2; }
        .intro-card p { font-size: 16px; color: #B0B3B8; }
        .section-title { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; font-size: 20px; border-left: 4px solid #FFD700; margin-left: 15px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1F242F; border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid #2D323E; transition: 0.3s; }
        .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; }
        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 20px 15px; background: #161A23; margin: 20px 0; }
        .payment-item { text-align: center; font-size: 12px; color: #B0B3B8; }
        .payment-item i { display: block; font-size: 24px; color: #FFD700; margin-bottom: 5px; }
        .guidelines-section { padding: 0 15px; margin-top: 30px; }
        .guide-item { background: #1F242F; padding: 15px; border-radius: 10px; margin-bottom: 15px; border-left: 3px solid #FFD700; }
        .guide-item h2 { font-size: 18px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: #B0B3B8; }
        .lottery-section { background: #161A23; margin: 20px 15px; padding: 15px; border-radius: 12px; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2D323E; font-size: 13px; }
        .lottery-item:last-child { border-bottom: none; }
        .winner-name { color: #FFD700; }
        .winner-amount { color: #00C853; font-weight: 600; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background: #1F242F; padding: 15px; text-align: center; border-radius: 8px; color: #FFD700; font-weight: 600; border: 1px solid #2D323E; }
        .reviews-section { padding: 0 15px; margin-top: 30px; }
        .review-card { background: #161A23; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #2D323E; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: #B0B3B8; }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { margin-bottom: 20px; background: #1F242F; padding: 15px; border-radius: 8px; }
        .faq-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #B0B3B8; }
        .security-section { background: #161A23; margin-top: 30px; padding: 25px 15px; text-align: center; border-top: 1px solid #2D323E; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 13px; color: #65676B; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 600px;
            background: #161A23;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #2D323E;
            z-index: 1000;
        }
        .nav-item { text-align: center; text-decoration: none; color: #B0B3B8; flex: 1; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 3px; }
        .nav-item span { font-size: 11px; }
        footer { background: #0B0E14; padding: 30px 15px 100px; border-top: 1px solid #2D323E; text-align: center; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { color: #FFD700; text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: #B0B3B8; text-decoration: none; font-size: 13px; }
        .footer-copyright { color: #65676B; font-size: 12px; border-top: 1px solid #1F242F; pt-20px; margin-top: 20px; padding-top: 20px; }