* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0D1117; color: #F0F6FC; font-family: 'Hind Siliguri', sans-serif; line-height: 1.5; overflow-x: hidden; }
        header { background-color: #161B22; padding: 12px 16px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #30363D; display: flex; justify-content: space-between; align-items: center; }
        header .logo-container { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
        header .logo-container img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-container strong { font-size: 16px; font-weight: 400; color: #FFD700; }
        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-flex; align-items: center; justify-content: center; }
        .btn-login { background: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(135deg, #FFD700 0%, #C5A059 100%); color: #000000; }
        main { padding-bottom: 80px; max-width: 800px; margin: 0 auto; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; overflow: hidden; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: #161B22; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #C5A059; text-align: center; }
        .jackpot-title { color: #8B949E; font-size: 14px; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 1px; }
        .jackpot-amount { color: #FFD700; font-size: 32px; font-weight: 700; font-family: system-ui; }
        .intro-card { background: #161B22; margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid #FFD700; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #8B949E; }
        .section-title { padding: 15px 15px 5px; display: flex; align-items: center; justify-content: space-between; }
        .section-title h2 { font-size: 18px; color: #F0F6FC; display: flex; align-items: center; gap: 8px; }
        .section-title h2::before { content: ''; width: 4px; height: 18px; background: #FFD700; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #161B22; border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid #30363D; transition: 0.3s; }
        .game-card:hover { border-color: #FFD700; transform: translateY(-3px); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: #F0F6FC; text-align: center; font-weight: 500; }
        .payment-methods { background: #161B22; margin: 15px; padding: 20px; border-radius: 12px; 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: #C5A059; }
        .payment-item span { font-size: 11px; color: #8B949E; }
        .guidelines { padding: 15px; }
        .guide-item { background: #161B22; padding: 15px; border-radius: 10px; margin-bottom: 12px; border: 1px solid #21262D; }
        .guide-item h3 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guide-item p { font-size: 14px; color: #8B949E; text-align: justify; }
        .lottery-container { background: #161B22; margin: 15px; border-radius: 12px; overflow: hidden; border: 1px solid #30363D; }
        .lottery-header { background: #21262D; padding: 10px 15px; font-weight: 600; color: #FFD700; font-size: 14px; }
        .marquee-box { height: 250px; overflow: hidden; position: relative; }
        .marquee-content { animation: marqueeScroll 30s linear infinite; }
        @keyframes marqueeScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .lottery-item { padding: 12px 15px; border-bottom: 1px solid #21262D; display: flex; justify-content: space-between; align-items: center; }
        .lottery-user { color: #F0F6FC; font-size: 13px; }
        .lottery-game { color: #8B949E; font-size: 12px; }
        .lottery-win { color: #00FF7F; font-weight: 700; font-size: 13px; }
        .providers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; }
        .provider-item { background: linear-gradient(90deg, #161B22 0%, #21262D 100%); padding: 15px; border-radius: 8px; text-align: center; color: #C5A059; font-weight: 600; border: 1px solid #30363D; }
        .reviews-section { padding: 15px; }
        .review-card { background: #161B22; padding: 15px; border-radius: 12px; margin-bottom: 15px; border: 1px solid #30363D; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 30px; color: #484F58; }
        .review-info h4 { font-size: 14px; color: #F0F6FC; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-text { font-size: 13px; color: #8B949E; margin-bottom: 8px; }
        .review-date { font-size: 11px; color: #484F58; }
        .faq-section { padding: 15px; }
        .faq-item { background: #161B22; border-radius: 8px; margin-bottom: 10px; overflow: hidden; border: 1px solid #30363D; }
        .faq-question { padding: 15px; cursor: pointer; font-weight: 600; color: #F0F6FC; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
        .faq-answer { padding: 0 15px 15px; color: #8B949E; font-size: 14px; line-height: 1.6; }
        .security-section { background: #161B22; margin: 15px; padding: 20px; border-radius: 12px; text-align: center; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; color: #FFD700; font-size: 24px; }
        .security-text { font-size: 13px; color: #8B949E; }
        .security-text a { color: #FFD700; text-decoration: none; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #161B22; display: flex; justify-content: space-around; padding: 10px 5px; border-top: 1px solid #30363D; z-index: 1000; }
        .nav-item { text-decoration: none; color: #8B949E; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0D1117; padding: 30px 15px 100px; border-top: 1px solid #30363D; }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { color: #8B949E; text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: #484F58; text-decoration: none; font-size: 13px; }
        .footer-copyright { text-align: center; color: #484F58; font-size: 12px; border-top: 1px solid #21262D; padding-top: 20px; }