* { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: #0f1216; color: #ffffff; line-height: 1.5; 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; border-bottom: 1px solid #2a2e38; }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: #ffcc00; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid #ffcc00; color: #ffcc00; padding: 6px 15px; border-radius: 20px; font-size: 14px; cursor: pointer; }
        .btn-register { background: linear-gradient(180deg, #ffcc00 0%, #d4a000 100%); color: #000; padding: 6px 15px; border-radius: 20px; font-size: 14px; font-weight: bold; border: none; cursor: pointer; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .announcement { background: #1a1d24; padding: 10px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: #ccc; border-bottom: 1px solid #2a2e38; }
        .announcement i { color: #ffcc00; }
        .marquee-container { flex: 1; overflow: hidden; white-space: nowrap; }
        .marquee-text { display: inline-block; animation: marquee 20s linear infinite; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 15px 15px 5px; display: flex; align-items: center; gap: 8px; }
        .section-title h2 { font-size: 18px; color: #ffcc00; text-transform: uppercase; letter-spacing: 1px; }
        .section-title i { color: #ffcc00; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 15px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2a2e38; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 8px; text-align: center; }
        .game-info h3 { font-size: 13px; font-weight: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eee; }
        .intro-card { margin: 15px; padding: 20px; background: linear-gradient(135deg, #1a1d24 0%, #252932 100%); border-radius: 15px; border: 1px solid #333; }
        .intro-card h1 { font-size: 20px; color: #ffcc00; margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: #aaa; line-height: 1.6; }
        .win-records { margin: 15px; background: #1a1d24; border-radius: 15px; padding: 15px; border: 1px solid #2a2e38; }
        .win-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #2a2e38; font-size: 12px; }
        .win-item:last-child { border-bottom: none; }
        .win-user { color: #eee; }
        .win-amount { color: #ffcc00; font-weight: bold; }
        .win-game { color: #888; }
        .reviews { padding: 15px; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; border-left: 4px solid #ffcc00; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; font-size: 14px; color: #ffcc00; }
        .review-stars { color: #ffcc00; font-size: 12px; }
        .review-content { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 15px; }
        .faq-item { background: #1a1d24; border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid #2a2e38; }
        .faq-question { font-weight: bold; color: #ffcc00; font-size: 15px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .faq-answer { font-size: 13px; color: #aaa; line-height: 1.6; }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 60px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2a2e38; z-index: 1000; }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active, .nav-item:hover { color: #ffcc00; }
        footer { background: #0a0c0f; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e38; }
        .footer-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-link { color: #888; font-size: 13px; }
        .footer-link:hover { color: #ffcc00; }
        .copyright { color: #555; font-size: 12px; margin-top: 20px; }
        .feature-badge { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 20px; opacity: 0.6; }
        .feature-badge i { font-size: 30px; }