body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FF9933; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-nav-toggle { display: none; position: absolute; top: 10px; right: 10px; background: none; border: none; color: white; font-size: 24px; }
        .hero { text-align: center; margin: 30px 0; }
        .hero img { max-width: 100%; height: auto; }
        .download-btn, .login-btn { display: inline-block; background-color: #128C7E; color: white; padding: 12px 25px; margin: 10px 5px; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .stats { background-color: #F5F5F5; padding: 20px; border-radius: 10px; margin: 20px 0; }
        .section { margin: 40px 0; }
        .section h2 { color: #FF9933; border-bottom: 2px solid #FF9933; padding-bottom: 5px; }
        .攻略 { background-color: #E8F4F8; padding: 15px; border-left: 5px solid #128C7E; }
        .activity { background-color: #FFF8E1; padding: 15px; border-left: 5px solid #FFA000; }
        .community { background-color: #E8F5E9; padding: 15px; border-left: 5px solid #43A047; }
        footer { background-color: #333; color: white; padding: 20px; text-align: center; margin-top: 30px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #666; color: white; padding: 5px 10px; margin: 3px; border-radius: 3px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            .mobile-nav-toggle { display: block; }
            nav.active { display: flex; }
            .stats { flex-direction: column; }
            .stat-item { margin: 10px 0; }
        }
