* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #0f1217; color: #ffffff; line-height: 1.5; overflow-x: hidden; padding-bottom: 70px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        header { height: 60px; background: #1a1d24; 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 #2d323d; }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; border-radius: 4px; }
        .logo-box strong { font-size: 16px; font-weight: normal; color: #ffcc00; letter-spacing: 0.5px; }
        .header-btns { display: flex; gap: 10px; }
        .header-btns button { padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: transform 0.2s; }
        .login-btn { background: #2d323d; color: #ffffff; }
        .reg-btn { background: linear-gradient(135deg, #ffcc00, #ff9900); color: #000000; }
        .header-btns button:active { transform: scale(0.95); }
        main { width: 100%; max-width: 600px; margin: 0 auto; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; display: block; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .announcement { background: #1a1d24; height: 36px; display: flex; align-items: center; padding: 0 10px; border-bottom: 1px solid #2d323d; }
        .announcement i { color: #ffcc00; margin-right: 10px; font-size: 14px; }
        .scroll-text { flex: 1; overflow: hidden; white-space: nowrap; font-size: 13px; color: #cccccc; }
        .scroll-text span { display: inline-block; animation: scroll 20s linear infinite; }
        @keyframes scroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
        .section-title { padding: 15px; display: flex; align-items: center; gap: 8px; font-size: 18px; color: #ffcc00; }
        .section-title h2 { font-size: 18px; font-weight: 600; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 12px; }
        .game-card { background: #1a1d24; border-radius: 12px; overflow: hidden; border: 1px solid #2d323d; transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 8px; text-align: center; }
        .game-info p { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #eeeeee; }
        .intro-box { padding: 20px 15px; margin: 15px 12px; background: #1a1d24; border-radius: 12px; border: 1px solid #2d323d; }
        .intro-box h1 { font-size: 20px; color: #ffcc00; margin-bottom: 10px; line-height: 1.3; }
        .intro-box p { font-size: 14px; color: #aaaaaa; text-align: justify; }
        .winners-section { background: #1a1d24; margin: 15px 12px; border-radius: 12px; border: 1px solid #2d323d; overflow: hidden; }
        .winners-list { height: 150px; overflow-y: auto; padding: 10px; }
        .winner-item { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #262a33; font-size: 12px; }
        .winner-item span:first-child { color: #aaaaaa; }
        .winner-item span:last-child { color: #00ff88; font-weight: 600; }
        .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 12px; margin-bottom: 20px; }
        .feature-item { background: #1a1d24; border-radius: 10px; padding: 15px 5px; text-align: center; border: 1px solid #2d323d; }
        .feature-item i { font-size: 24px; color: #ffcc00; margin-bottom: 8px; display: block; }
        .feature-item span { font-size: 11px; color: #ffffff; display: block; }
        .reviews-section { padding: 0 12px; margin-bottom: 20px; }
        .review-card { background: #1a1d24; border-radius: 12px; padding: 15px; margin-bottom: 10px; border: 1px solid #2d323d; }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .review-user i { font-size: 20px; color: #ffcc00; }
        .review-user strong { font-size: 14px; }
        .review-rating { color: #ffcc00; font-size: 12px; margin-bottom: 5px; }
        .review-content { font-size: 13px; color: #cccccc; font-style: italic; }
        .faq-section { padding: 0 12px; margin-bottom: 20px; }
        .faq-item { background: #1a1d24; border-radius: 8px; margin-bottom: 8px; padding: 12px; border: 1px solid #2d323d; }
        .faq-item h3 { font-size: 14px; color: #ffcc00; margin-bottom: 5px; }
        .faq-item p { font-size: 13px; color: #aaaaaa; }
        .navigater { position: fixed; bottom: 0; left: 0; width: 100%; height: 65px; background: #1a1d24; display: flex; justify-content: space-around; align-items: center; z-index: 1000; border-top: 1px solid #2d323d; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #888888; flex: 1; }
        .nav-item i { font-size: 18px; }
        .nav-item span { font-size: 11px; }
        .nav-item.active { color: #ffcc00; }
        footer { background: #1a1d24; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2d323d; }
        .footer-row { margin-bottom: 20px; }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 15px; }
        .footer-links a { font-size: 13px; color: #aaaaaa; transition: color 0.2s; }
        .footer-links a:hover { color: #ffcc00; }
        .footer-copy { font-size: 12px; color: #666666; margin-top: 20px; }
        .btn-download-float { margin: 20px 12px; padding: 15px; background: linear-gradient(90deg, #ffcc00, #ff9900); border-radius: 12px; text-align: center; color: #000000; font-weight: bold; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }