After thinking about it a bit I think that problems in PPAD may be interesting to you: http://en.wikipedia.org/wiki/PPAD_(complexity)
There are a few PPAD-complete problems: Nash equilibria, Finding Brouwer Fixed Points, and End-of-the-Line. I think that you can see the common thread among all of these: we know that the object exists (unlike in SAT or the decision version of TSP).The thing about approximating a Nash equilibrium (say a mixed equilibrium in a symmetric game) is that any solution but the exact equilibrium will result in continued play or possibly even a loss by proceeding from the approximated point of equilibrium---the approximately best strategy. So, unless one can make the approximation bound incredibly small the prospect of approximate Nash equilibria seems dubious. One might also ask whether there are problems such that the existence of approximation algorithms implies something about an entire class of problems....
Suppose we have an $N-$player fair game with symmetric utility functions. Let the space of strategies for player $i$ be $D_i$. Mixed strategies for player $i$ can consist of subsets of $D_i$. In an $N-$player game call a strategy profile $\vec{V} = \{v_i\}_{i=1}^N$ an $\epsilon-$approximate Nash Equilibrium if for all players $i \in \{1, \ldots, N\}$ and all actions $a \in v_i$ $$\mathbb{E}\left[ u_i(a | \vec{X})\right] \geq \mathbb{E}\left[ u_i(b | \vec{X})\right] - \epsilon, \; \forall b \in D_i$$
where $u_i$ is the utility function for player $i$ and the expectation is over the weights that the remaining players put on their mixed strategies. A lot of games and actually a lot of real-world scenarios turn out to have mixed equilibria, but that isn't the focus of this response.
Currently the smallest known value for which there is a partially polynomial time $\epsilon-$approximation (exponential in the approximation accuracy) is $\approx .333$ for normalized utility functions, i.e. $\operatorname{Ran}(u_i) = \left[ 0,1 \right]$. Furthermore, if there were to be a fully polynomial time algorithm, ie. $O((1/\epsilon)^d P(N))$ rather that $O(N^{1/\epsilon})$, then $PPAD \subset P$ which is a big deal. So as it stands either the approximations are bad or some hierarchy collapse happens---even then the usefulness of the approximation is very questionable.
If you are still convinced that approximate Nash equilibria don't quite fit the bill I suggest looking at End-of-the-Line (explained in the wiki article I attached).
For more on this wonderful subject I suggest Noam Nisan (and Co.'s) great book Algorithmic Game Theory.