* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0C10; color: #FFFFFF; font-family: 'Hind Siliguri', sans-serif; line-height: 1.5; -webkit-font-smoothing: antialiased; }
        h1, h2, h3 { font-family: 'Noto Sans Bengali', sans-serif; font-weight: 700; color: #FFD700; }
        h1 { font-size: 30px; text-align: center; margin: 20px 0; padding: 0 15px; }
        h2 { font-size: 24px; margin-bottom: 15px; border-left: 4px solid #FFD700; padding-left: 10px; }
        h3 { font-size: 18px; color: #FFFFFF; margin-top: 10px; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header { background-color: #161B22; border-bottom: 1px solid #30363D; height: 60px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 15px; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .auth-buttons { 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; }

        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { background: #1F2833; padding: 20px; text-align: center; margin: 15px; border-radius: 12px; border: 1px solid #C5A022; }
        .jackpot-title { font-size: 14px; color: #C9D1D9; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: 'Galada', cursive; font-size: 36px; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        
        .intro-section { padding: 20px 15px; background: #161B22; border-radius: 12px; margin: 15px; }
        .intro-section p { color: #C9D1D9; font-size: 16px; text-align: justify; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #1F2833; border-radius: 12px; overflow: hidden; border: 1px solid #30363D; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }

        .article-list { padding: 15px; }
        .article-card { display: flex; background: #161B22; border-radius: 12px; margin-bottom: 12px; overflow: hidden; border: 1px solid #30363D; }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 16px; margin-bottom: 5px; color: #FFD700; }
        .article-content p { font-size: 13px; color: #8B949E; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

        .payments-section { padding: 20px 15px; background: #1F2833; margin: 15px 0; }
        .payments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: #FFD700; margin-bottom: 5px; }
        .payment-item span { font-size: 12px; color: #C9D1D9; display: block; }

        .lottery-wrapper { background: #161B22; padding: 20px 15px; margin: 15px; border-radius: 12px; border: 1px solid #30363D; height: 300px; overflow: hidden; position: relative; }
        .lottery-container { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 10px; border-bottom: 1px solid #21262D; display: flex; justify-content: space-between; align-items: center; }
        .win-user { color: #FFD700; font-size: 14px; }
        .win-amount { color: #00E676; font-weight: bold; }

        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: #1F2833; padding: 15px; text-align: center; border-radius: 8px; color: #FFFFFF; font-weight: bold; border: 1px solid #30363D; }

        .reviews-section { padding: 15px; }
        .review-card { background: #161B22; border-radius: 12px; padding: 15px; margin-bottom: 15px; border: 1px solid #30363D; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #8B949E; }
        .stars { color: #FFD700; font-size: 12px; }
        .review-text { font-size: 14px; color: #C9D1D9; font-style: italic; }

        .faq-section { padding: 15px; background: #0B0C10; }
        .faq-item { background: #1F2833; border-radius: 8px; padding: 15px; margin-bottom: 10px; border: 1px solid #30363D; }
        .faq-question { font-weight: bold; color: #FFD700; margin-bottom: 10px; display: block; }
        .faq-answer { color: #C9D1D9; font-size: 14px; }

        .security-section { padding: 25px 15px; text-align: center; background: #161B22; border-top: 2px solid #FFD700; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #00E676; }
        .age-badge { display: inline-block; padding: 5px 10px; border: 1px solid #FF4D4D; color: #FF4D4D; border-radius: 50%; font-weight: bold; margin-bottom: 10px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #161B22; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #30363D; z-index: 1000; }
        .nav-item { text-align: center; color: #C9D1D9; font-size: 12px; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; color: #FFD700; }

        footer { background: #0B0C10; padding: 20px 15px 100px 15px; border-top: 1px solid #30363D; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 14px; color: #8B949E; }
        .copyright { text-align: center; font-size: 12px; color: #8B949E; padding-top: 15px; border-top: 1px solid #21262D; }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .article-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        }