* { 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; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        
        header { background-color: #16181A; 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 #2D2F32; }
        .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: #FFD700; }
        .header-btns { display: flex; gap: 10px; }
        .btn { padding: 6px 16px; border-radius: 4px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; }
        .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #FFD700; }
        .btn-reg { 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-container { background: #1E2023; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #2D2F32; text-align: center; }
        .jackpot-title { color: #B0B3B8; font-size: 14px; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-family: 'Galada', cursive; font-size: 32px; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section h1 { font-size: 24px; color: #FFD700; margin-bottom: 15px; line-height: 1.2; }
        .intro-section p { font-size: 14px; color: #B0B3B8; text-align: justify; }

        .section-title { padding: 0 15px; margin: 20px 0 10px; 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: #16181A; border-radius: 10px; overflow: hidden; border: 1px solid #2D2F32; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; 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-item { background: #16181A; border-radius: 12px; display: flex; overflow: hidden; border: 1px solid #2D2F32; }
        .article-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; line-height: 1.3; }
        .article-content 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: #16181A; margin: 15px; border-radius: 12px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .payment-item i { font-size: 24px; color: #C0C0C0; }
        .payment-item span { font-size: 10px; color: #B0B3B8; text-align: center; }

        .lottery-box { height: 300px; overflow: hidden; background: #16181A; margin: 15px; border-radius: 12px; border: 1px solid #2D2F32; position: relative; }
        .lottery-scroll { animation: scrollUp 40s linear infinite; }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid #1E2023; display: flex; justify-content: space-between; align-items: center; }
        .lottery-user { color: #FFD700; font-size: 14px; }
        .lottery-game { color: #FFFFFF; font-size: 13px; }
        .lottery-win { color: #00E676; font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }

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

        .review-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .review-card { background: #16181A; padding: 15px; border-radius: 12px; border: 1px solid #2D2F32; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .review-user { display: flex; align-items: center; gap: 10px; }
        .review-user i { color: #FFD700; font-size: 20px; }
        .review-rating { color: #FFD700; font-size: 12px; }
        .review-text { font-size: 13px; color: #B0B3B8; text-align: justify; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: #65676B; }

        .faq-section { padding: 0 15px; margin-bottom: 30px; }
        .faq-item { background: #16181A; margin-bottom: 10px; border-radius: 8px; border: 1px solid #2D2F32; overflow: hidden; }
        .faq-quest { padding: 15px; font-weight: 600; font-size: 15px; color: #FFD700; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-ans { padding: 0 15px 15px; font-size: 14px; color: #B0B3B8; text-align: justify; }

        .security-section { background: #1E2023; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; border: 1px dotted #FF4D4D; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: #FFD700; }
        .security-text { font-size: 12px; color: #B0B3B8; line-height: 1.6; }
        .security-links { margin-top: 10px; display: flex; justify-content: center; gap: 15px; font-size: 12px; color: #2979FF; }

        footer { background: #000000; padding: 30px 15px 100px; border-top: 1px solid #2D2F32; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #B0B3B8; }
        .copyright { text-align: center; font-size: 12px; color: #65676B; border-top: 1px solid #1E2023; padding-top: 20px; }

        .navigator { position: fixed; bottom: 0; width: 100%; background: #16181A; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2D2F32; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #B0B3B8; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 12px; }
        .nav-item.active { color: #FFD700; }