* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0C10; color: #FFFFFF; font-family: 'Hind Siliguri', sans-serif; line-height: 1.6; overflow-x: hidden; }
        header { background: #1F2833; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #D4AF37; }
        .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: 10px; }
        .btn-login { background: transparent; color: #D4AF37; border: 1px solid #D4AF37; padding: 5px 15px; border-radius: 4px; cursor: pointer; font-weight: 500; transition: 0.3s; }
        .btn-login:hover { background: rgba(212, 175, 55, 0.1); }
        .btn-register { background: #D4AF37; color: #0B0C10; border: none; padding: 5px 15px; border-radius: 4px; cursor: pointer; font-weight: 600; transition: 0.3s; }
        .btn-register:hover { background: #F9E076; }
        main { padding-bottom: 80px; }
        .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: radial-gradient(circle, #2E3944, #1F2833); margin: 20px 15px; padding: 20px; border-radius: 15px; text-align: center; border: 1px solid #45A29E; }
        .jackpot-title { color: #D4AF37; font-size: 18px; margin-bottom: 10px; font-weight: 600; }
        .jackpot-amount { font-family: 'Roboto', sans-serif; font-size: 36px; color: #00C853; font-weight: 700; text-shadow: 0 0 10px rgba(0,200,83,0.5); }
        .intro-card { background: #1F2833; margin: 15px; padding: 20px; border-radius: 12px; border-left: 4px solid #D4AF37; }
        .intro-card h1 { font-size: 22px; color: #D4AF37; margin-bottom: 10px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #C5C6C7; }
        .section-title { font-size: 28px; text-align: center; margin: 25px 0 15px; color: #FFFFFF; font-weight: 700; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #1F2833; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); text-decoration: none; display: block; transition: transform 0.2s; }
        .game-card:hover { transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 14px; padding: 10px; text-align: center; color: #FFFFFF; font-weight: 500; }
        .payment-section { background: #1F2833; margin: 20px 15px; padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: #66FCF1; font-size: 12px; }
        .payment-item i { font-size: 24px; color: #D4AF37; }
        .guide-section { padding: 0 15px; margin-top: 30px; }
        .guide-item { background: #2E3944; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #45A29E; }
        .guide-item h2 { font-size: 18px; color: #D4AF37; margin-bottom: 10px; }
        .guide-item p { font-size: 14px; color: #C5C6C7; text-align: justify; }
        .lottery-section { background: #0B0C10; margin: 20px 0; overflow: hidden; border-top: 1px solid #45A29E; border-bottom: 1px solid #45A29E; }
        .lottery-container { display: flex; flex-direction: column; animation: slideUp 20s linear infinite; }
        .lottery-item { display: flex; justify-content: space-between; padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; }
        .lottery-user { color: #66FCF1; }
        .lottery-win { color: #00C853; font-weight: 700; }
        @keyframes slideUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; margin: 20px 0; }
        .provider-item { background: linear-gradient(45deg, #1F2833, #2E3944); padding: 15px; border-radius: 8px; text-align: center; color: #D4AF37; font-weight: 600; border: 1px solid rgba(212, 175, 55, 0.3); }
        .review-section { padding: 0 15px; margin-top: 30px; }
        .review-card { background: #1F2833; padding: 15px; border-radius: 12px; margin-bottom: 15px; position: relative; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: #C5C6C7; }
        .review-name { font-weight: 600; font-size: 16px; color: #66FCF1; }
        .stars { color: #D4AF37; font-size: 12px; }
        .review-content { font-size: 13px; color: #C5C6C7; font-style: italic; }
        .faq-section { padding: 0 15px; margin-top: 30px; }
        .faq-item { background: #1F2833; margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: 600; color: #D4AF37; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; }
        .faq-answer { padding: 15px; font-size: 14px; color: #C5C6C7; display: block; }
        .security-section { background: #0B0C10; padding: 25px 15px; text-align: center; border-top: 1px solid #45A29E; }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #00C853; }
        .security-text { font-size: 12px; color: #C5C6C7; margin-bottom: 10px; }
        .navigator { position: fixed; bottom: 0; width: 100%; background: #1F2833; display: flex; justify-content: space-around; padding: 10px 0; border-top: 2px solid #D4AF37; z-index: 1001; }
        .nav-item { text-decoration: none; color: #C5C6C7; display: flex; flex-direction: column; align-items: center; font-size: 12px; }
        .nav-item i { font-size: 20px; margin-bottom: 3px; }
        footer { background: #0B0C10; padding: 30px 15px 100px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
        .footer-contacts { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
        .footer-contacts a { color: #D4AF37; text-decoration: none; font-size: 14px; border: 1px solid rgba(212,175,55,0.3); padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: #C5C6C7; text-decoration: none; font-size: 13px; }
        .footer-copyright { font-size: 12px; color: #66FCF1; border-top: 1px solid rgba(255,255,255,0.1); pt: 20px; }