* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0B0C; color: #FFFFFF; font-family: 'Hind Siliguri', sans-serif; line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: 'Tiro Bangla', serif; color: #FFD700; }
        a { text-decoration: none; color: inherit; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

        header { background: #14171A; padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2D333B; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 4px; font-weight: 600; cursor: pointer; border: none; font-size: 14px; }
        .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: #1C2126; margin: 20px 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #B8860B; }
        .jackpot-title { font-size: 18px; color: #FFFFFF; margin-bottom: 10px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #00FF41; text-shadow: 0 0 10px rgba(0, 255, 65, 0.5); font-family: monospace; }

        .intro-section { padding: 30px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; margin-bottom: 15px; }
        .intro-section p { color: #B0B3B8; font-size: 16px; max-width: 800px; margin: 0 auto; }

        .section-title { margin: 25px 15px 15px; border-left: 4px solid #FFD700; padding-left: 10px; font-size: 20px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; }
        .game-card { background: #14171A; border-radius: 10px; overflow: hidden; border: 1px solid #2D333B; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; text-align: center; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .article-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .article-card { display: flex; background: #1C2126; border-radius: 8px; overflow: hidden; border: 1px solid #2D333B; }
        .article-card img { width: 100px; height: 100px; object-fit: cover; }
        .article-info { padding: 10px; flex: 1; }
        .article-info h3 { font-size: 14px; margin-bottom: 5px; color: #FFD700; }
        .article-info p { font-size: 12px; color: #B0B3B8; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 15px; background: #14171A; margin: 20px 15px; border-radius: 12px; }
        .payment-item { text-align: center; font-size: 10px; color: #B0B3B8; }
        .payment-item i { font-size: 24px; color: #FFD700; margin-bottom: 5px; display: block; }

        .lottery-box { background: #14171A; margin: 20px 15px; border-radius: 12px; height: 300px; overflow: hidden; border: 1px solid #2D333B; position: relative; }
        .lottery-track { animation: scrollUp 40s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 15px; border-bottom: 1px solid #1C2126; display: flex; justify-content: space-between; align-items: center; }
        .user-win { font-size: 14px; color: #FFFFFF; }
        .user-win span { color: #00FF41; font-weight: 700; }
        .win-time { font-size: 11px; color: #65676B; }

        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-item { background: #1C2126; padding: 15px; text-align: center; border-radius: 8px; border: 1px solid #2D333B; font-weight: 600; color: #FFD700; }

        .review-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #14171A; padding: 15px; border-radius: 12px; border: 1px solid #2D333B; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 20px; color: #65676B; }
        .rating { color: #FFD700; font-size: 12px; }
        .review-content { font-size: 13px; color: #B0B3B8; font-style: italic; }
        .review-date { font-size: 11px; color: #65676B; margin-top: 8px; text-align: right; }

        .faq-section { padding: 0 15px; }
        .faq-item { background: #1C2126; margin-bottom: 10px; border-radius: 8px; padding: 15px; border: 1px solid #2D333B; }
        .faq-item h3 { font-size: 15px; margin-bottom: 8px; color: #FFD700; }
        .faq-item p { font-size: 14px; color: #B0B3B8; }

        .security-section { background: #14171A; margin: 30px 15px; padding: 20px; border-radius: 12px; text-align: center; border-top: 2px solid #FF4500; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; }
        .security-text { font-size: 13px; color: #B0B3B8; margin-bottom: 10px; }
        .age-badge { display: inline-block; border: 2px solid #FF4500; color: #FF4500; border-radius: 50%; width: 35px; height: 35px; line-height: 31px; font-weight: 700; margin-bottom: 10px; }

        footer { background: #0A0B0C; padding: 40px 15px 100px; border-top: 1px solid #2D333B; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 14px; color: #65676B; transition: color 0.2s; }
        .footer-links a:hover { color: #FFD700; }
        .footer-bottom { text-align: center; font-size: 12px; color: #65676B; border-top: 1px solid #1C2126; padding-top: 20px; }

        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #14171A; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2D333B; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #B0B3B8; font-size: 11px; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { color: #FFD700; }

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