* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #0B0E11; color: #FFFFFF; font-family: 'Hind Siliguri', 'Inter', sans-serif; line-height: 1.5; -webkit-font-smoothing: antialiased; }
        a { text-decoration: none; color: inherit; }
        h1 { font-size: 32px; font-weight: 700; color: #FCD535; margin-bottom: 15px; text-align: center; }
        h2 { font-size: 24px; font-weight: 600; color: #FCD535; margin: 20px 0; border-left: 4px solid #FCD535; padding-left: 10px; }
        h3 { font-size: 18px; font-weight: 500; color: #FFFFFF; margin: 10px 0; }
        header { background-color: #151A21; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #2B3139; display: flex; justify-content: space-between; align-items: center; }
        .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 { border: none; border-radius: 4px; padding: 8px 16px; font-weight: 600; cursor: pointer; font-size: 14px; transition: opacity 0.2s; }
        .btn-login { background-color: transparent; color: #FFFFFF; border: 1px solid #FCD535; }
        .btn-register { background: linear-gradient(180deg, #FCD535 0%, #F0B90B 100%); color: #000000; }
        main { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container { background: #1E2329; margin: 15px; padding: 20px; border-radius: 12px; border: 1px solid #FCD535; text-align: center; }
        .jackpot-label { color: #FCD535; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
        .jackpot-amount { font-size: 32px; font-weight: 700; color: #FFFFFF; margin: 5px 0; font-family: 'Roboto', sans-serif; overflow: hidden; }
        .jackpot-value::after { content: "84,520,310"; animation: jackpotMove 5s infinite linear; }
        @keyframes jackpotMove { 0% { content: "84,520,310"; } 25% { content: "84,520,950"; } 50% { content: "84,521,420"; } 75% { content: "84,522,100"; } 100% { content: "84,522,850"; } }
        .intro-section { padding: 20px 15px; text-align: center; }
        .intro-section p { color: #EAECEF; font-size: 16px; line-height: 1.8; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 15px; }
        .game-card { background: #151A21; border-radius: 10px; overflow: hidden; border: 1px solid #2B3139; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card-info { padding: 10px; text-align: center; }
        .article-list { padding: 0 15px; }
        .article-item { background: #1E2329; border-radius: 10px; margin-bottom: 15px; display: flex; overflow: hidden; border: 1px solid #2B3139; }
        .article-img { width: 120px; height: 100px; object-fit: cover; }
        .article-content { padding: 10px; flex: 1; }
        .article-content h3 { font-size: 14px; margin: 0 0 5px 0; color: #FCD535; }
        .article-content p { font-size: 12px; color: #848E9C; line-height: 1.4; }
        .payment-section { background: #151A21; padding: 20px 15px; margin: 20px 0; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item i { font-size: 24px; color: #FCD535; margin-bottom: 5px; }
        .payment-item span { display: block; font-size: 10px; color: #848E9C; }
        .lottery-section { background: #0B0E11; padding: 15px; }
        .lottery-title { color: #FCD535; font-weight: 600; margin-bottom: 10px; }
        .lottery-record { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #1E2329; font-size: 13px; }
        .lottery-record .user { color: #FCD535; }
        .lottery-record .amount { color: #0ECB81; font-weight: 700; }
        .providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 15px; }
        .provider-block { background: #1E2329; padding: 15px; border-radius: 8px; text-align: center; font-weight: 600; color: #EAECEF; border: 1px solid #2B3139; }
        .reviews-section { padding: 0 15px; }
        .review-card { background: #151A21; border-radius: 12px; padding: 15px; margin-bottom: 15px; border: 1px solid #2B3139; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar { width: 40px; height: 40px; background: #2B3139; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FCD535; }
        .review-info h4 { font-size: 14px; }
        .stars { color: #FCD535; font-size: 12px; }
        .review-text { font-size: 13px; color: #848E9C; font-style: italic; }
        .faq-section { padding: 0 15px; }
        .faq-item { background: #1E2329; margin-bottom: 10px; border-radius: 8px; border: 1px solid #2B3139; padding: 15px; }
        .faq-item h3 { color: #FCD535; font-size: 16px; margin: 0 0 10px 0; border: none; padding: 0; }
        .faq-item p { font-size: 14px; color: #EAECEF; }
        .security-section { padding: 20px 15px; text-align: center; background: #151A21; margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #0ECB81; }
        .security-section p { font-size: 12px; color: #848E9C; margin-bottom: 10px; }
        .security-section a { color: #FCD535; text-decoration: underline; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #151A21; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #2B3139; z-index: 1000; }
        .nav-item { text-align: center; color: #848E9C; font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 3px; }
        .nav-item.active { color: #FCD535; }
        footer { background: #0B0E11; padding: 30px 15px 100px; border-top: 1px solid #1E2329; text-align: center; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
        .footer-links a { font-size: 12px; color: #848E9C; }
        .copyright { font-size: 12px; color: #848E9C; margin-top: 20px; border-top: 1px solid #1E2329; padding-top: 15px; }