This is my simple Snake game built with Python's turtle module.
- I use the arrow keys to control the snake (up, down, left, right).
- When the snake eats the yellow food, it grows and the score increases.
- The speed slowly increases as the score goes up.
- If the snake hits the red border or its own body, the game ends.
- After I die, I can click the PLAY button to start a new run.
- Start screen with the title and a clear PLAY button.
- Live score and high-score display at the top.
- Simple grid background and border to define the play area.
- Built only with the
turtlemodule, no extra libraries needed.
# Run the game
python main.py

