How many possible chess games are there? There are a great many more if neither player is trying to win and instead are collaborating to play the longest possible legal games.
Officially, chess moves are defined as a piece moved by each player, that is, two half-moves. Instead of using this definition I'm going to call such a half-move a move. So there is a chess rule that the games ends in a draw after one hundred such moves with no captures or pawn moves.
Any game has at most 30 captures followed by the kings sashaying about for another one hundred moves so that's 31*100=3100. Now you want to maximize the number of possibilities per move. If all you have is a queen and a king then you usually have 7*8+8=64 possibilities per move. To maximize possibilities you value the most mobile pieces. So you want to promote your pawns into queens. One may sacrifice four pawns to get them out of the way. Move a pawn four squares, taken by enemy pawn. This allows three pawns to advance a full six squares. So this makes for (3*6+4-1)*4 = 84 pawn moves minus pawn captures. The length of the longest game is about (31+84)*100 = 11500 moves (which in official chess terminology is a 5750 move game). Games less than this length contribute little to the number of possible games.
So what about the average number of possibilities per move. The maximum is more than an eight queen board with its 64*8=512 possibilities. Let's reduce this to 200, each side has three queens and a couple of bishops or rooks. The number of games is then about 200^11500. Very roughly this is 10^26450. Optimists can round up to 10^30000, pessimists down to a measly 10^20000.