* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1115; color: #e0e0e0; line-height: 1.6; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        header { background: #1a1d24; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #fff; }
        .header-btns { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #d4af37; color: #d4af37; font-size: 14px; font-weight: bold; }
        .btn-reg { padding: 6px 15px; border-radius: 20px; background: linear-gradient(135deg, #d4af37, #f9df7b); color: #000; font-size: 14px; font-weight: bold; }
        .banner { width: 100%; aspect-ratio: 2 / 1; cursor: pointer; overflow: hidden; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #242832; padding: 8px 15px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #d4af37; }
        .announcement i { font-size: 16px; }
        .scroll-text { flex: 1; overflow: hidden; white-space: nowrap; position: relative; }
        .scroll-text span { display: inline-block; padding-left: 100%; animation: scroll 15s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
        .section-container { padding: 15px; }
        .section-title { font-size: 18px; color: #fff; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #d4af37; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; transition: transform 0.2s; border: 1px solid #2a2e38; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card .game-info { padding: 8px; text-align: center; }
        .game-card .game-info h3 { font-size: 13px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #ccc; }
        .platform-intro { background: #1a1d24; border-radius: 15px; padding: 20px; margin-bottom: 25px; border: 1px solid #2a2e38; }
        .platform-intro h1 { font-size: 22px; color: #d4af37; margin-bottom: 15px; }
        .platform-intro h2 { font-size: 18px; color: #fff; margin-top: 15px; margin-bottom: 10px; }
        .platform-intro p { font-size: 14px; color: #999; margin-bottom: 10px; }
        .winning-list { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; height: 300px; overflow-y: auto; border: 1px solid #2a2e38; }
        .winning-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .win-user { color: #aaa; }
        .win-amt { color: #f1c40f; font-weight: bold; }
        .win-game { color: #44bd32; }
        .reviews-section { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
        .review-card { background: #1a1d24; padding: 15px; border-radius: 12px; border: 1px solid #2a2e38; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
        .review-user { color: #d4af37; font-weight: bold; }
        .review-rating { color: #f1c40f; }
        .review-text { font-size: 13px; color: #999; font-style: italic; }
        .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 25px; }
        .feature-item { background: #1a1d24; padding: 15px; border-radius: 12px; text-align: center; border: 1px solid #2a2e38; }
        .feature-item i { font-size: 24px; color: #d4af37; margin-bottom: 8px; }
        .feature-item span { display: block; font-size: 12px; color: #fff; }
        .faq-section { background: #1a1d24; border-radius: 15px; padding: 15px; margin-bottom: 25px; }
        .faq-item { margin-bottom: 15px; border-bottom: 1px solid #2a2e38; padding-bottom: 10px; }
        .faq-q { color: #d4af37; font-weight: bold; font-size: 14px; margin-bottom: 5px; display: block; }
        .faq-a { color: #999; font-size: 13px; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 1000; border-top: 1px solid #2a2e38; }
        .nav-item { text-align: center; color: #8e8e93; flex: 1; }
        .nav-item i { font-size: 18px; display: block; margin-bottom: 2px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: #d4af37; }
        footer { background: #121418; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e38; }
        .foot-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .foot-links a { font-size: 13px; color: #666; transition: color 0.3s; }
        .foot-links a:hover { color: #d4af37; }
        .copyright { font-size: 12px; color: #444; margin-top: 15px; }