body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff4500; color: white; padding: 15px 0; 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: 15px; right: 20px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { color: #ff4500; text-align: center; margin-bottom: 30px; }
        h2 { color: #333; border-bottom: 2px solid #ff4500; padding-bottom: 5px; margin-top: 40px; }
        h3 { color: #666; margin-top: 30px; }
        .download-btn, .login-btn { display: inline-block; background-color: #ff4500; color: white; padding: 12px 25px; text-decoration: none; font-weight: bold; border-radius: 5px; margin: 15px 0; }
        .download-btn:hover, .login-btn:hover { background-color: #e03e00; }
        .game-stats { background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); margin: 20px 0; }
        .攻略-section { background-color: #e8f4f8; padding: 20px; border-radius: 8px; margin: 20px 0; }
        .community-post { background-color: white; padding: 15px; border-radius: 8px; margin-bottom: 15px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 40px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #666; color: white; padding: 5px 10px; border-radius: 20px; margin: 5px; text-decoration: none; }
        .tag:hover { background-color: #ff4500; }
        img { max-width: 100%; height: auto; display: block; margin: 20px auto; border-radius: 8px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            .container { padding: 10px; }
            h1 { font-size: 24px; }
            h2 { font-size: 20px; }
        }
