* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0A0B0D; color: #FFFFFF; font-family: 'Hind Siliguri', 'Inter', sans-serif; line-height: 1.65; overflow-x: hidden; }
        header { background: #161A1E; 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 #2D333B; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; object-fit: contain; }
        .header-left strong { font-size: 16px; font-weight: 400; color: #FFFFFF; }
        .header-right { display: flex; gap: 8px; }
        .btn-login { background: transparent; border: 1px solid #FFD700; color: #FFD700; padding: 6px 16px; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer; }
        .btn-register { background: #FFD700; border: 1px solid #FFD700; color: #000000; padding: 6px 16px; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; }
        .btn-register:hover { background: #E6C200; border-color: #E6C200; }
        main { padding-bottom: 80px; max-width: 600px; margin: 0 auto; }
        .banner-container { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(180deg, #1E2329 0%, #0A0B0D 100%); padding: 20px 15px; text-align: center; border-bottom: 2px solid #FFD700; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #FFD700; font-family: 'Inter', sans-serif; }
        .intro-card { background: #161A1E; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #2D333B; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #B7BDC6; }
        .section-header { padding: 0 15px; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .section-header h2 { font-size: 18px; color: #FFFFFF; position: relative; padding-left: 12px; }
        .section-header h2::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 18px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #1E2329; border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid #2D333B; }
        .game-card:active { transform: scale(0.96); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; color: #FFFFFF; padding: 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .payment-section { background: #161A1E; margin: 25px 0; padding: 20px 15px; }
        .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; }
        .payment-item i { font-size: 24px; color: #B7BDC6; }
        .payment-item span { font-size: 11px; color: #848E9C; }
        .guideline-section { padding: 15px; }
        .guideline-card { background: #1E2329; padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid #D91E36; }
        .guideline-card h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guideline-card p { font-size: 13px; color: #B7BDC6; text-align: justify; }
        .lottery-container { background: #161A1E; margin: 20px 15px; border-radius: 12px; overflow: hidden; border: 1px solid #2D333B; }
        .lottery-title { background: #2B3139; padding: 10px 15px; font-size: 14px; font-weight: 600; color: #FFD700; display: flex; justify-content: space-between; }
        .lottery-list { height: 200px; overflow: hidden; position: relative; }
        .marquee-content { animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 10px 15px; border-bottom: 1px solid #2D333B; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
        .lottery-user { color: #FFFFFF; }
        .lottery-amount { color: #0ECB81; font-weight: 600; }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .provider-item { background: #1E2329; padding: 15px; border-radius: 8px; text-align: center; border: 1px solid #2D333B; }
        .provider-item span { font-weight: 700; background: linear-gradient(90deg, #FFD700, #D91E36); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .review-section { padding: 15px; }
        .review-card { background: #2B3139; padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 30px; color: #FFD700; }
        .review-info h4 { font-size: 14px; color: #FFFFFF; }
        .review-stars { color: #F0B90B; font-size: 12px; }
        .review-text { font-size: 13px; color: #B7BDC6; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #161A1E; border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid #2D333B; }
        .faq-question { padding: 15px; font-weight: 600; color: #FFFFFF; cursor: pointer; display: flex; justify-content: space-between; font-size: 14px; }
        .faq-answer { padding: 0 15px 15px; color: #B7BDC6; font-size: 13px; }
        .security-section { padding: 20px 15px; background: #1E2329; text-align: center; margin-top: 20px; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .badge-item { font-size: 12px; color: #848E9C; }
        .badge-item i { display: block; font-size: 24px; color: #0ECB81; margin-bottom: 5px; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: #161A1E; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2D333B; z-index: 1001; }
        .nav-item { text-decoration: none; color: #848E9C; display: flex; flex-direction: column; align-items: center; font-size: 12px; gap: 4px; }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0A0B0D; padding: 30px 15px 100px; border-top: 1px solid #2D333B; text-align: center; }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: #B7BDC6; text-decoration: none; font-size: 13px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: #848E9C; text-decoration: none; font-size: 12px; }
        .copyright { font-size: 11px; color: #5E6673; line-height: 1.5; }