diff --git a/html/index.html b/html/index.html
index e3e2544..a31e739 100644
--- a/html/index.html
+++ b/html/index.html
@@ -72,11 +72,48 @@
text-align: center;
margin-top: 20px;
}
+
+
+ .rules-section {
+ margin-bottom: 20px;
+ text-align: left;
+ width: 100%;
+ max-width: 600px;
+ }
+
+ .rules-section h2 {
+ margin-bottom: 10px;
+ text-align: center;
+ }
+
+ .rules-section ul {
+ padding-left: 20px;
+ }
+
+ .rules-section li {
+ margin-bottom: 5px;
+ }
+
+
Turn of Destiny
+
+
+
Game Rules
+
+ - Rule 0: You will automatically be put in the first avalible lobby.
+ - Rule 1: If you are the first player in the lobby you must wait for game board to load before opening a new tab(player2).
+ - Rule 2: When 2 players are in the lobby you can press start game.
+ - Rule 3: If more than 4 people the remaining people will be put in another lobby.
+ - Rule 4: If you want to start a second game or lobby the first lobby must be closed to start another lobby.
+ - Rule 5: The round ends when the puzzle is solved or all leters are guessed
+ - Rule 6: The game ends when all three rounds are over.
+ - Rule 7: Dont worry about the lobbe leabderboard, you wont make it on their [insert evil Elon Musk laugh] .
+
+
@@ -233,7 +270,7 @@
Scores
stakeDisplay.textContent = 'Stake: ' + (currentRound.currentStake);
statusDisplay.textContent = 'Status: ' + (gameState.isGameActive ? 'Closed' : 'Open');
roundDisplay.textContent = 'Round: ' + (gameState.currentRoundIndex + 1) + '/' + gameState.rounds.length;
- winnerDisplay.textContent = 'Winner: ' + (gameState.winner ? gameState.winner.name : '');
+ winnerDisplay.textContent = 'Winner: ' + (gameState.winner ? gameState.winner.name : 'No winner yet');
currentPlayerDisplay.textContent = 'Current Player: ' + (gameState.players.find(p => p.name === currentPlayer.name).name);
scoreTable.innerHTML = '';