* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        header { background: #111418; padding: 10px 15px; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #FFD700; text-transform: uppercase; letter-spacing: 1px; }
        .header-right { display: flex; gap: 8px; }
        .btn { padding: 8px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; transition: transform 0.2s; }
        .btn-login { background: transparent; color: #ffffff; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(45deg, #FF6B35, #FF2E63); color: #ffffff; }
        .btn:active { transform: scale(0.95); }
        .banner { width: 100%; display: block; aspect-ratio: 2/1; object-fit: cover; cursor: pointer; }
        .jackpot-container { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px; text-align: center; border-bottom: 2px solid #FFD700; margin-bottom: 20px; }
        .jackpot-title { color: #FFD700; font-size: 14px; text-transform: uppercase; font-weight: bold; margin-bottom: 5px; }
        .jackpot-amount { font-size: 32px; font-weight: 900; color: #ffffff; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); font-family: monospace; }
        .platform-intro { padding: 20px; background: #252932; margin: 15px; border-radius: 15px; border-left: 4px solid #FFD700; }
        .platform-intro h1 { font-size: 20px; margin-bottom: 10px; color: #FFD700; }
        .platform-intro p { font-size: 14px; color: #ccc; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; font-size: 18px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ""; width: 4px; height: 18px; background: #FFD700; display: inline-block; border-radius: 2px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 15px; }
        .game-card { background: #252932; border-radius: 12px; overflow: hidden; transition: transform 0.3s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; }
        .game-info h3 { font-size: 13px; font-weight: bold; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .game-info p { font-size: 11px; color: #888; margin-top: 2px; }
        .payments-section { background: #111418; padding: 20px 15px; margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; opacity: 0.8; }
        .payment-icon { font-size: 24px; color: #ddd; }
        .guidelines { padding: 15px; display: flex; flex-direction: column; gap: 15px; }
        .guideline-card { background: #252932; padding: 15px; border-radius: 10px; }
        .guideline-card h2 { font-size: 16px; color: #FFD700; margin-bottom: 8px; }
        .guideline-card p { font-size: 13px; color: #bbb; }
        .marquee-container { background: #111418; padding: 10px 0; overflow: hidden; margin: 20px 0; }
        .marquee-track { display: flex; white-space: nowrap; animation: marquee 40s linear infinite; }
        .win-record { background: #252932; padding: 8px 15px; border-radius: 20px; margin: 0 10px; display: flex; align-items: center; gap: 8px; border: 1px solid #333; font-size: 12px; }
        .win-record span { color: #FFD700; font-weight: bold; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 20px 15px; text-align: center; color: #888; font-size: 12px; line-height: 2; }
        .providers-wall span { margin: 0 8px; display: inline-block; }
        .comments-container { padding: 15px; display: flex; flex-direction: column; gap: 12px; }
        .comment-card { background: #252932; padding: 15px; border-radius: 12px; border-bottom: 2px solid #333; }
        .comment-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .user-info { display: flex; align-items: center; gap: 10px; }
        .user-info i { font-size: 20px; color: #FFD700; }
        .user-name { font-weight: bold; font-size: 14px; }
        .rating { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #666; }
        .comment-content { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #252932; margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h2 { font-size: 15px; color: #FFD700; margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: #bbb; }
        .safety-section { padding: 25px 15px; background: #111418; text-align: center; border-top: 1px solid #333; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: #FFD700; }
        .safety-text { font-size: 12px; color: #888; max-width: 600px; margin: 0 auto; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111418; display: flex; justify-content: space-around; padding: 8px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; font-size: 10px; color: #888; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }
        footer { padding: 30px 15px 100px; background: #0a0c0f; border-top: 1px solid #222; }
        .footer-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contact a { background: #252932; padding: 8px 15px; border-radius: 5px; font-size: 13px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        .footer-links a { color: #888; font-size: 13px; text-align: center; }
        .copyright { text-align: center; font-size: 12px; color: #555; padding-top: 20px; border-top: 1px solid #222; }