* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0E11; color: #FFFFFF; font-family: 'Hind Siliguri', sans-serif; line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        header { background: #1E2329; padding: 10px 15px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #474D57; }
        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 .actions { display: flex; gap: 10px; }
        header .actions button { padding: 8px 16px; border-radius: 4px; border: none; font-weight: 600; cursor: pointer; transition: 0.3s; font-family: 'Hind Siliguri', sans-serif; }
        header .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        header .btn-register { background: #FFD700; color: #0B0E11; }
        header .btn-register:hover { background: #FFC107; }
        main { width: 100%; max-width: 800px; margin: 0 auto; padding: 15px; }
        .banner { width: 100%; aspect-ratio: 2 / 1; border-radius: 12px; overflow: hidden; cursor: pointer; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(145deg, #1E2329, #2B3139); border: 2px solid #FFD700; border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 20px; position: relative; overflow: hidden; }
        .jackpot-title { color: #FFD700; font-size: 18px; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-family: 'Roboto', sans-serif; font-size: 32px; color: #FFD700; font-weight: 700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { background: #1E2329; border-radius: 12px; padding: 20px; margin-bottom: 25px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 12px; }
        .intro-card p { font-size: 14px; color: #B7BDC6; }
        .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; padding-left: 10px; border-left: 3px solid #FFD700; }
        .section-header h2 { font-size: 18px; font-weight: 600; color: #FFFFFF; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
        .game-card { background: #2B3139; border-radius: 10px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid #474D57; display: block; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #FFFFFF; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-section { background: #1E2329; 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 { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12px; color: #B7BDC6; }
        .payment-item i { font-size: 24px; color: #FFD700; }
        .guides-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: #2B3139; padding: 15px; border-radius: 10px; border-bottom: 2px solid #474D57; }
        .guide-card h3 { font-size: 16px; color: #FFD700; margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: #B7BDC6; text-align: justify; }
        .marquee-container { background: #1E2329; padding: 15px; border-radius: 12px; margin-bottom: 25px; overflow: hidden; }
        .marquee-content { display: flex; flex-direction: column; gap: 10px; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-row { display: flex; justify-content: space-between; padding: 8px; background: #2B3139; border-radius: 6px; font-size: 13px; }
        .winner-name { color: #0ECB81; font-weight: 600; }
        .winner-amount { color: #FFD700; font-weight: 700; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-item { background: linear-gradient(90deg, #2B3139, #1E2329); padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; color: #FFD700; border: 1px solid #474D57; }
        .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .review-card { background: #1E2329; padding: 15px; border-radius: 12px; border: 1px solid #2B3139; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 20px; color: #B7BDC6; background: #2B3139; padding: 8px; border-radius: 50%; }
        .review-stars { color: #FFD700; font-size: 12px; margin-bottom: 8px; }
        .review-content { font-size: 13px; color: #B7BDC6; font-style: italic; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: #1E2329; border-radius: 8px; margin-bottom: 10px; padding: 15px; border: 1px solid #2B3139; }
        .faq-item h3 { font-size: 16px; color: #FFFFFF; margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: #B7BDC6; }
        .security-section { background: #1E2329; padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 25px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: #0ECB81; }
        .security-section p { font-size: 13px; color: #B7BDC6; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1E2329; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #474D57; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { text-decoration: none; color: #B7BDC6; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; }
        .nav-item i { font-size: 18px; }
        .nav-item:active { color: #FFD700; }
        footer { background: #0B0E11; padding: 30px 15px 100px 15px; text-align: center; border-top: 1px solid #2B3139; }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-contact a { color: #B7BDC6; text-decoration: none; font-size: 13px; background: #1E2329; padding: 10px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { color: #B7BDC6; text-decoration: none; font-size: 12px; }
        .footer-copyright { font-size: 12px; color: #5E6673; border-top: 1px solid #2B3139; padding-top: 15px; }