* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #1a1d24; color: #ffffff; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background-color: #12141a; 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 #333; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; color: #fff; border: 1px solid #FFD700; padding: 6px 12px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #fff; border: none; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; }
        .banner-container { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px 15px; text-align: center; border-bottom: 2px solid #FFD700; }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 15px rgba(255, 215, 0, 0.6); font-family: 'Courier New', monospace; }
        .intro-card { padding: 20px; background: #23272f; margin: 15px; border-radius: 15px; border: 1px solid #333; text-align: center; }
        .intro-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: #ccc; }
        .section-title { padding: 15px 15px 5px; font-size: 18px; color: #FFD700; display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #23272f; border-radius: 12px; overflow: hidden; border: 1px solid #333; transition: transform 0.2s; }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; margin: 0; color: #eee; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 11px; color: #888; margin-top: 2px; }
        .payment-section { background: #12141a; padding: 20px 15px; text-align: center; }
        .payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 15px; justify-items: center; }
        .payment-icon { width: 50px; height: 30px; background: #333; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #999; }
        .guidelines-section { padding: 20px 15px; }
        .guideline-item { background: #23272f; padding: 15px; border-radius: 10px; margin-bottom: 12px; border-left: 4px solid #FFD700; }
        .guideline-item h2 { font-size: 16px; margin-bottom: 8px; color: #FFD700; }
        .guideline-item p { font-size: 13px; color: #bbb; }
        .marquee-container { background: #12141a; padding: 10px 0; overflow: hidden; border-top: 1px solid #333; border-bottom: 1px solid #333; }
        .marquee-track { display: flex; animation: scroll 40s linear infinite; gap: 20px; white-space: nowrap; }
        .marquee-item { font-size: 12px; color: #eee; background: #23272f; padding: 5px 15px; border-radius: 20px; border: 1px solid #444; }
        .marquee-item span { color: #FFD700; font-weight: bold; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-section { padding: 20px 15px; text-align: center; }
        .providers-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 15px; }
        .provider-tag { background: #333; padding: 5px 12px; border-radius: 4px; font-size: 12px; color: #ddd; font-weight: bold; }
        .reviews-section { padding: 20px 15px; background: #12141a; }
        .review-card { background: #23272f; border-radius: 12px; padding: 15px; margin-bottom: 15px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: #FFD700; }
        .review-user { font-weight: bold; font-size: 14px; }
        .review-stars { color: #FFD700; font-size: 12px; }
        .review-date { font-size: 11px; color: #666; margin-left: auto; }
        .review-content { font-size: 13px; color: #ccc; }
        .faq-section { padding: 20px 15px; }
        .faq-item { margin-bottom: 15px; background: #23272f; border-radius: 10px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        .security-section { padding: 20px 15px; background: #12141a; text-align: center; border-top: 1px solid #333; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .security-text { font-size: 12px; color: #888; margin-bottom: 10px; }
        .security-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; font-size: 11px; }
        .security-links a { color: #FF6B35; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: #12141a; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1001; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 10px; }
        .nav-item:nth-child(3) { color: #FFD700; }
        footer { padding: 30px 15px; background: #0b0d11; border-top: 1px solid #333; text-align: center; margin-bottom: 60px; }
        .footer-social { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-social a { font-size: 13px; color: #bbb; border: 1px solid #333; padding: 5px 10px; border-radius: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { font-size: 12px; color: #888; }
        .footer-copy { font-size: 11px; color: #555; border-top: 1px solid #222; padding-top: 15px; }