* { 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-color: #1A1D23; 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 #353945; }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #FFFFFF; }
        header .brand img { width: 25px; height: 25px; border-radius: 4px; }
        header .brand strong { font-size: 16px; font-weight: 400; }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 16px; border-radius: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.3s; text-decoration: none; display: inline-block; }
        .btn-login { background-color: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-reg { background-color: #FFD700; color: #0B0E11; }
        .btn-reg:hover { background-color: #FFC107; }
        main { max-width: 800px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: linear-gradient(135deg, #1A1D23 0%, #2B2F36 100%); margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #B8860B; text-align: center; }
        .jackpot-title { color: #B1B5C3; font-size: 14px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { color: #FFD700; font-family: 'Inter', sans-serif; font-size: 30px; font-weight: 700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
        .intro-card { padding: 20px; margin: 15px; background-color: #1A1D23; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #B1B5C3; text-align: justify; }
        .section-title { font-size: 18px; margin: 20px 15px 15px; padding-left: 10px; border-left: 3px solid #FFD700; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background-color: #1A1D23; border-radius: 10px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid #23262F; }
        .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-color: #1A1D23; margin: 20px 15px; padding: 20px; border-radius: 12px; 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 { display: block; font-size: 10px; color: #B1B5C3; }
        .guide-section { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .guide-card { background-color: #1A1D23; padding: 15px; border-radius: 10px; }
        .guide-card h3 { color: #FFD700; margin-bottom: 8px; font-size: 16px; }
        .guide-card p { font-size: 13px; color: #B1B5C3; }
        .lottery-ticker { background-color: #1A1D23; margin: 20px 15px; padding: 10px; border-radius: 8px; height: 150px; overflow: hidden; position: relative; border: 1px solid #353945; }
        .lottery-list { animation: scrollList 20s linear infinite; }
        @keyframes scrollList { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 8px; border-bottom: 1px solid #23262F; display: flex; justify-content: space-between; font-size: 12px; }
        .lottery-user { color: #FFD700; font-weight: 500; }
        .lottery-win { color: #00C853; font-weight: 700; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-box { background-color: #2B2F36; padding: 12px; text-align: center; border-radius: 8px; color: #FFD700; font-weight: 600; border: 1px solid #353945; }
        .review-grid { padding: 0 15px; display: flex; flex-direction: column; gap: 12px; }
        .review-card { background-color: #1A1D23; padding: 15px; border-radius: 12px; border: 1px solid #23262F; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #777E90; }
        .review-info h4 { font-size: 14px; color: #FFFFFF; }
        .review-stars { color: #FFD600; font-size: 12px; }
        .review-content { font-size: 13px; color: #B1B5C3; font-style: italic; }
        .faq-section { padding: 0 15px; }
        .faq-item { background-color: #1A1D23; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; font-size: 14px; color: #FFD700; cursor: pointer; border-bottom: 1px solid #23262F; }
        .faq-answer { padding: 15px; font-size: 13px; color: #B1B5C3; text-align: justify; }
        .security-section { margin: 20px 15px; padding: 20px; background-color: #1A1D23; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 30px; color: #00C853; }
        .security-text { font-size: 12px; color: #777E90; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 60px; background-color: #1A1D23; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #353945; z-index: 1000; }
        .nav-item { text-decoration: none; color: #B1B5C3; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        footer { background-color: #0B0E11; padding: 30px 15px 100px; border-top: 1px solid #353945; text-align: center; }
        .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 30px; }
        .contact-link { color: #B1B5C3; text-decoration: none; font-size: 13px; background-color: #1A1D23; padding: 10px; border-radius: 6px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; text-align: left; }
        .footer-links a { color: #777E90; text-decoration: none; font-size: 12px; transition: color 0.2s; }
        .footer-links a:hover { color: #FFD700; }
        .copyright { font-size: 12px; color: #777E90; border-top: 1px solid #23262F; pt: 20px; }