* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0C10; color: #FFFFFF; font-family: 'Hind Siliguri', 'SolaimanLipi', sans-serif; line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        header { background-color: #1F2833; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #D4AF37; }
        header .brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #FFFFFF; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn { padding: 8px 16px; border-radius: 4px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; transition: 0.3s; }
        header .btn-login { background-color: transparent; color: #D4AF37; border: 1px solid #D4AF37; }
        header .btn-register { background-color: #D4AF37; color: #0B0C10; }
        header .btn-register:hover { background-color: #F9E076; }
        main { max-width: 800px; margin: 0 auto; padding: 10px; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px; margin-bottom: 20px; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-card { background: linear-gradient(135deg, #1F2833 0%, #0B0C10 100%); border: 2px solid #D4AF37; border-radius: 15px; padding: 20px; text-align: center; margin-bottom: 20px; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
        .jackpot-title { color: #D4AF37; font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-family: 'Inter', sans-serif; font-size: 2.5rem; font-weight: 700; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background-color: #1F2833; padding: 20px; border-radius: 12px; margin-bottom: 25px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 1.5rem; color: #D4AF37; margin-bottom: 12px; }
        .intro-card p { color: #C5C6C7; font-size: 1rem; }
        .section-title { font-size: 1.25rem; color: #D4AF37; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 25px; }
        .game-card { background-color: #1F2833; border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.3s; border: 1px solid #45A29E; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 0.9rem; color: #FFFFFF; text-align: center; background-color: rgba(0,0,0,0.5); }
        .payment-section { background-color: #1F2833; padding: 20px; border-radius: 12px; margin-bottom: 25px; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 1.5rem; color: #D4AF37; margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 0.75rem; color: #C5C6C7; }
        .guide-section { margin-bottom: 25px; }
        .guide-card { background-color: #1F2833; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #1F2833; }
        .guide-card h3 { color: #D4AF37; margin-bottom: 10px; font-size: 1.1rem; }
        .guide-card p { color: #C5C6C7; font-size: 0.9rem; }
        .lottery-marquee { background-color: #1F2833; padding: 15px; border-radius: 12px; overflow: hidden; margin-bottom: 25px; border: 1px solid #D4AF37; }
        .marquee-container { height: 150px; overflow: hidden; position: relative; }
        .marquee-content { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 8px; border-bottom: 1px solid #2D3748; display: flex; justify-content: space-between; font-size: 0.85rem; }
        .lottery-user { color: #00D4FF; }
        .lottery-win { color: #00FF41; font-weight: bold; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .provider-item { background-color: #2D3748; padding: 12px; border-radius: 8px; text-align: center; color: #D4AF37; font-weight: 600; border: 1px solid #45A29E; }
        .review-section { margin-bottom: 25px; }
        .review-card { background-color: #1F2833; padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 1.5rem; color: #D4AF37; }
        .review-stars { color: #FFD700; font-size: 0.8rem; }
        .review-date { font-size: 0.75rem; color: #8892B0; margin-top: 5px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background-color: #1F2833; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; cursor: pointer; color: #D4AF37; font-weight: 600; border-bottom: 1px solid #2D3748; }
        .faq-answer { padding: 15px; color: #C5C6C7; font-size: 0.9rem; }
        .security-section { background-color: #0B0C10; border: 1px solid #8B0000; padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-icons i { font-size: 2rem; color: #D4AF37; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background-color: #1F2833; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #D4AF37; z-index: 1000; }
        .navigator a { text-decoration: none; color: #C5C6C7; display: flex; flex-direction: column; align-items: center; font-size: 0.75rem; transition: 0.3s; }
        .navigator a i { font-size: 1.2rem; margin-bottom: 4px; }
        .navigator a:active { color: #D4AF37; }
        footer { background-color: #0B0C10; padding: 30px 15px; text-align: center; border-top: 1px solid #1F2833; }
        footer .contact-links { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
        footer .contact-links a { color: #D4AF37; text-decoration: none; font-size: 0.9rem; }
        footer .footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        footer .footer-nav a { color: #C5C6C7; text-decoration: none; font-size: 0.85rem; }
        footer .copyright { font-size: 0.8rem; color: #8892B0; border-top: 1px solid #1F2833; padding-top: 20px; }