* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: #1a1d24; color: #ffffff; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; padding-bottom: 70px; }
        header { background-color: #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: 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 { padding: 8px 15px; border-radius: 5px; border: none; font-weight: bold; cursor: pointer; font-size: 14px; text-decoration: none; display: inline-block; }
        .btn-login { background-color: transparent; color: #FFD700; border: 1px solid #FFD700; }
        .btn-register { background: linear-gradient(90deg, #FF6B35, #FF2E63); color: #ffffff; }
        .banner { width: 100%; display: block; cursor: pointer; }
        .banner img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
        .jackpot-container { background: radial-gradient(circle, #2c313c 0%, #1a1d24 100%); padding: 20px; text-align: center; margin: 15px; border-radius: 15px; border: 2px solid #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
        .jackpot-label { color: #FFD700; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; font-weight: bold; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #ffffff; text-shadow: 0 0 10px #FFD700; font-family: 'Courier New', monospace; }
        .platform-card { background: #242831; padding: 20px; margin: 15px; border-radius: 12px; border-left: 4px solid #FFD700; }
        .platform-card h1 { font-size: 20px; color: #FFD700; margin-bottom: 10px; }
        .platform-card p { font-size: 14px; color: #ccc; }
        .section-title { padding: 0 15px; margin: 20px 0 10px; display: flex; align-items: center; gap: 10px; }
        .section-title h2 { font-size: 18px; border-left: 3px solid #FF2E63; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: #242831; border-radius: 10px; overflow: hidden; text-decoration: none; display: block; 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; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .game-info p { font-size: 11px; color: #888; }
        .trust-section { background: #111418; padding: 20px 15px; margin: 20px 0; text-align: center; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: center; }
        .trust-item { font-size: 24px; color: #555; }
        .guidelines { padding: 15px; }
        .guideline-card { background: #242831; padding: 15px; border-radius: 10px; margin-bottom: 15px; }
        .guideline-card h3 { color: #FFD700; font-size: 16px; margin-bottom: 8px; }
        .guideline-card p { font-size: 13px; color: #aaa; }
        .marquee-container { background: #111418; padding: 10px 0; overflow: hidden; white-space: nowrap; position: relative; border-y: 1px solid #333; }
        .marquee-content { display: inline-block; animation: scroll 30s linear infinite; }
        .win-record { display: inline-flex; align-items: center; background: #242831; padding: 5px 15px; margin: 0 10px; border-radius: 20px; font-size: 12px; gap: 8px; border: 1px solid #333; }
        .win-user { color: #FFD700; font-weight: bold; }
        .win-amount { color: #00ff88; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .providers-wall { padding: 15px; background: #242831; margin: 15px; border-radius: 10px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
        .provider-tag { background: #1a1d24; color: #888; padding: 5px 12px; border-radius: 5px; font-size: 12px; border: 1px solid #333; }
        .comments-section { padding: 15px; }
        .comment-card { background: #242831; padding: 15px; border-radius: 12px; margin-bottom: 15px; }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: #555; }
        .comment-user-info { flex: 1; }
        .comment-name { font-weight: bold; font-size: 14px; display: block; }
        .comment-stars { color: #FFD700; font-size: 12px; }
        .comment-date { font-size: 11px; color: #666; float: right; }
        .comment-body { font-size: 13px; color: #ccc; }
        .faq-section { padding: 15px; }
        .faq-item { background: #242831; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; border-bottom: 1px solid #333; }
        .faq-answer { padding: 15px; font-size: 13px; color: #aaa; background: #1d2129; }
        .security-section { padding: 20px 15px; text-align: center; background: #111418; margin-top: 20px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 30px; color: #FFD700; }
        .security-text { font-size: 12px; color: #666; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #111418; display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid #333; z-index: 1000; }
        .nav-item { text-align: center; text-decoration: none; color: #888; font-size: 10px; }
        .nav-item i { display: block; font-size: 18px; margin-bottom: 4px; }
        .nav-item.active { color: #FFD700; }
        footer { background: #0b0d10; padding: 30px 15px 100px; text-align: center; }
        .footer-contact { margin-bottom: 25px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .footer-contact a { color: #FFD700; text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; }
        .footer-links a { color: #666; text-decoration: none; font-size: 12px; }
        .footer-copyright { font-size: 11px; color: #444; border-top: 1px solid #222; padding-top: 15px; }