* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background-color: #0f1218; color: #ffffff; line-height: 1.6; overflow-x: hidden; padding-bottom: 70px; }
        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); border-bottom: 1px solid #2d323e; }
        .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; letter-spacing: 0.5px; }
        .header-right { display: flex; gap: 10px; }
        .btn-login { padding: 6px 15px; border-radius: 20px; border: 1px solid #ffd700; color: #ffd700; font-size: 14px; text-decoration: none; background: transparent; transition: 0.3s; }
        .btn-register { padding: 6px 15px; border-radius: 20px; background: linear-gradient(135deg, #ffd700, #ffae00); color: #000; font-size: 14px; text-decoration: none; font-weight: bold; border: none; transition: 0.3s; }
        .banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #252a34; height: 35px; display: flex; align-items: center; overflow: hidden; padding: 0 10px; border-bottom: 1px solid #333; }
        .announcement i { color: #ffd700; margin-right: 10px; }
        .scrolling-text { white-space: nowrap; animation: marquee 20s linear infinite; font-size: 13px; color: #ccc; }
        @keyframes marquee { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-container { padding: 20px 15px; }
        .section-title { font-size: 18px; color: #ffd700; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid #ffd700; padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; text-decoration: none; color: #fff; transition: transform 0.2s; border: 1px solid #2d323e; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; font-size: 13px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; background: #252a34; }
        .platform-intro { background: #1a1d24; border-radius: 16px; padding: 20px; margin: 10px 15px; border: 1px solid #2d323e; }
        .platform-intro h1 { font-size: 20px; color: #ffd700; margin-bottom: 12px; }
        .platform-intro p { font-size: 14px; color: #aaa; margin-bottom: 10px; }
        .winning-records { background: #1a1d24; margin: 10px 15px; border-radius: 16px; padding: 15px; border: 1px solid #2d323e; height: 250px; overflow-y: auto; }
        .winning-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2d323e; font-size: 12px; }
        .winning-item span:first-child { color: #ccc; }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 15px; }
        .feature-box { background: #1a1d24; padding: 15px 5px; border-radius: 12px; text-align: center; border: 1px solid #2d323e; }
        .feature-box i { font-size: 24px; color: #ffd700; margin-bottom: 8px; }
        .feature-box span { font-size: 11px; display: block; color: #eee; }
        .reviews-section { padding: 20px 15px; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 12px; border: 1px solid #2d323e; }
        .review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .review-user { font-weight: bold; color: #ffd700; font-size: 14px; }
        .review-stars { color: #ffae00; font-size: 12px; }
        .review-content { font-size: 13px; color: #ccc; font-style: italic; }
        .faq-section { padding: 20px 15px; }
        .faq-item { background: #1a1d24; margin-bottom: 10px; border-radius: 10px; border: 1px solid #2d323e; overflow: hidden; }
        .faq-question { padding: 15px; font-weight: bold; color: #eee; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; color: #aaa; font-size: 13px; }
        .navigater { position: fixed; bottom: 0; left: 0; right: 0; background: #1a1d24; height: 65px; display: flex; justify-content: space-around; align-items: center; border-top: 1px solid #2d323e; z-index: 1001; }
        .nav-item { text-decoration: none; color: #888; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
        .nav-item i { font-size: 20px; }
        .nav-item.active { color: #ffd700; }
        footer { background: #0a0c10; padding: 30px 15px 100px; text-align: center; font-size: 13px; border-top: 1px solid #1a1d24; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }
        .footer-links a { color: #aaa; text-decoration: none; }
        .footer-policy { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 12px; }
        .footer-policy a { color: #666; text-decoration: none; }
        .copyright { color: #444; margin-top: 10px; }
        .download-btn-float { background: linear-gradient(135deg, #ffd700, #ffae00); color: #000; padding: 10px 20px; border-radius: 25px; font-weight: bold; margin: 20px auto; display: block; width: fit-content; text-decoration: none; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }