Create a simple bomb defusal game with the following features:
1. **Main Game Screen:**
* Display a countdown timer that starts at 10 seconds and ticks down to 0.
* Show six colored wires: Green, Red, Yellow, Blue, White, and Black. The order of these wires should be randomized each time a new game starts.
* Each wire should be a tappable button.
2. **Game Logic:**
* If the player taps the **Red** wire before the timer reaches 0, they win the game.
* If the player taps any wire other than the red one (Green, Yellow, Blue, White, Black), the bomb explodes and they lose.
* If the timer reaches 0 before the player taps any wire, the bomb explodes and they lose.
3. **Win Screen:**
* When the player wins, display a "You Win!" or "Bomb Defused!" message.
* Include a "Play Again" button to restart the game.
4. **Lose Screen:**
* When the player loses, display a "KABOOM!" or "Game Over" message.
* Include a "Try Again" button to restart the game.
The app should have a simple, engaging interface suitable for a quick-play game. No user login or backend is required.
Create a simple bomb defusal game with the following features:
1. **Main Game Screen:**
* Display a countdown timer that starts at 10 seconds and ticks down to 0.
* Show six colored wire...