""" Wordle Game GAME RULES:
- A secret 5-letter word is chosen randomly from a dictionary
- Player has 6 attempts to guess the word
- After each guess, feedback is provided:
- GREEN background: letter is correct and in the right position
- YELLOW background: letter is in the word but wrong position
- GRAY background: letter is not in the word at all
- Win condition: guess the word correctly within 6 attempts
- Lose condition: run out of attempts without guessing correctly
- Invalid guesses (not 5 letters or not in dictionary) don't count as attempts
INPUT VALIDATION:
- Must be exactly 5 characters
- Must be in the dictionary (wordle.txt)
- Case insensitive (assume lowercase input) """ BUILT WITH THE ASSISTANCE OF CLAUDE AI