* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0b0e11; color: #eaecef; font-family: 'Hind Siliguri', sans-serif; line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; }
        header { background-color: #1e2329; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2b3139; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
        .logo-area { display: flex; align-items: center; gap: 8px; }
        .logo-area img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-area strong { font-size: 16px; font-weight: 400; color: #fcd535; }
        .auth-btns { display: flex; gap: 10px; }
        .btn-login, .btn-register { padding: 6px 16px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
        .btn-login { background-color: transparent; color: #eaecef; border: 1px solid #2b3139; }
        .btn-register { background-color: #fcd535; color: #0b0e11; }
        .hero-section { width: 100%; cursor: pointer; aspect-ratio: 2 / 1; overflow: hidden; }
        .hero-section img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(180deg, #1e2329 0%, #0b0e11 100%); padding: 20px; text-align: center; margin: 15px; border-radius: 12px; border: 1px solid #d4af37; }
        .jackpot-title { color: #fcd535; font-size: 14px; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #fcd535; font-family: 'monospace'; display: flex; justify-content: center; align-items: center; gap: 5px; }
        .content-section { padding: 20px 15px; max-width: 1200px; margin: 0 auto; }
        h1 { font-size: 24px; color: #fcd535; margin-bottom: 15px; text-align: center; }
        .intro-p { font-size: 16px; color: #929aa5; text-align: center; margin-bottom: 30px; }
        h2 { font-size: 20px; color: #eaecef; margin: 25px 0 15px; border-left: 4px solid #fcd535; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
        .game-card { background-color: #1e2329; border-radius: 12px; overflow: hidden; border: 1px solid #2b3139; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: #eaecef; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .article-list { display: flex; flex-direction: column; gap: 15px; }
        .article-item { display: flex; background: #1e2329; border-radius: 10px; overflow: hidden; gap: 10px; }
        .article-item img { width: 100px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 14px; color: #fcd535; margin-bottom: 5px; }
        .article-content p { font-size: 12px; color: #929aa5; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; margin-bottom: 30px; }
        .payment-item { background: #1e2329; padding: 15px 5px; border-radius: 8px; border: 1px solid #2b3139; }
        .payment-item i { font-size: 24px; color: #fcd535; margin-bottom: 8px; }
        .payment-item span { display: block; font-size: 10px; color: #929aa5; }
        .winners-box { background: #1e2329; border-radius: 12px; height: 300px; overflow: hidden; position: relative; border: 1px solid #2b3139; }
        .winners-scroll { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-row { padding: 12px 15px; border-bottom: 1px solid #2b3139; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
        .winner-name { color: #fcd535; }
        .winner-amount { color: #2ebd85; font-weight: 600; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
        .provider-item { background: #2b3139; padding: 20px; border-radius: 10px; text-align: center; font-weight: 600; color: #fcd535; border: 1px solid #fcd535; }
        .reviews-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .review-card { background: #1e2329; padding: 15px; border-radius: 12px; border: 1px solid #2b3139; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .review-user { display: flex; align-items: center; gap: 10px; font-weight: 600; }
        .review-user i { color: #929aa5; background: #2b3139; padding: 8px; border-radius: 50%; }
        .stars { color: #f0b90b; font-size: 12px; }
        .review-text { font-size: 14px; color: #929aa5; margin-bottom: 10px; }
        .review-date { font-size: 11px; color: #474d57; text-align: right; }
        .faq-section { margin-bottom: 30px; }
        .faq-item { background: #1e2329; border-radius: 8px; margin-bottom: 10px; padding: 15px; border-left: 4px solid #fcd535; }
        .faq-item h3 { font-size: 15px; color: #fcd535; margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: #929aa5; }
        .safety-section { background: #1e2329; padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 100px; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: #2ebd85; }
        .safety-text { font-size: 13px; color: #929aa5; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1e2329; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2b3139; z-index: 1000; }
        .nav-item { text-align: center; font-size: 12px; color: #929aa5; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #fcd535; }
        footer { background: #0b0e11; padding: 30px 15px 100px; border-top: 1px solid #2b3139; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
        .footer-links a { font-size: 13px; color: #929aa5; transition: 0.2s; }
        .footer-links a:hover { color: #fcd535; }
        .footer-bottom { text-align: center; font-size: 12px; color: #474d57; border-top: 1px solid #2b3139; padding-top: 20px; }