You have a $N$ sided die. And $X$ players. You have to devise a game, such that only one player wins and every player is equally likely to win. Also, the game should be finite (there shouldn't be a single infinite run in the sample space)
Is it possible to construct such a game? (However complicated, doesn't matter) If yes, how?
At the first glance, it seems like it isn't possible, since (For $N=6$) we can only have sample space of the sizes of powers of $2,3,6$. But maybe there exists a complicated game where the sizes are different?

If the game is always finite, let $K$ be the maximum length of the game. We have $N^K$ possible outcomes for $K$ rolls, so the game must assign each player the same number of these outcomes, i.e. $X$ must divide $N^K$.
Now how do we translate the existence of such $K$ to a condition on $N$ and $X$? If $X=p_1^{k_1}p_2^{k_2}\ldots p_l^{k_l}$ (all $k_i>0$), then such $K$ exist if and only if $p_1p_2\ldots p_l$ divides $N$ ($N$ must divide all prime factors of $X$, because otherwise $N^K$ can never be a multiple of $X$). This is sufficient because if we set $K=\text{lcm}(k_1,\ldots,k_l)$, then $X$ divides $N^K$.
We conclude: If $X=p_1^{k_1}p_2^{k_2}\ldots p_l^{k_l}$ (the prime factorisation of $X$), then a fair finite game exists if and only if $p_1p_2\ldots p_l$ divides $N$.
EDIT:
As an example, let us construct a game when $X=20$ and $N=10$: Note that $X=2^2\cdot 5$, so the condition '$p_1p_2\ldots p_l$ divides $N$' becomes $2\cdot 5=10$ divides $N$, which holds for $N=10$. I claim that we can make the game always have 2 rolls. Also, instead of $\{1,\ldots, 10\}$, I will label the outcome of the dice as $\{0,1,\ldots, 9\}$. 2 rolls now look like (5,1), (0,9), (8,7) and so on. Notice that these look like 2 digit numbers, so you see rolling a (0,9) as the number 9 for example. Given that we have 20 players, we can simply divide the 100 possible outcomes (0 to 99) among the players, so each player gets 5 outcomes as their win condition.
Player 1 wins if the 'outcome' is less than 5, i.e. the rolls were (0,0),(0,1),(0,2),(0,3) and (0,4). Player 2 wins if the outcome is between 5 and 10: (0,5),(0,6),(0,7),(0,8) and (0,9). And so on