/* Base styles */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  /*cursor: none; !* Hide the default mouse pointer *!*/
}

.container {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.text-card {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#gameContainer {
  position: relative;
  margin-top: 20px;
}

#gameCanvas {
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

button {
  padding: 10px 20px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.scoreboard {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
  font-size: 20px;
}

.scoreboard .score, .scoreboard .missed {
  padding: 10px 20px;
  border-radius: 5px;
}

.light-theme .scoreboard .score {
  background: #74ebd5;
  color: #333;
}

.light-theme .scoreboard .missed {
  background: #ff7f7f;
  color: #333;
}

.dark-theme .scoreboard .score {
  background: #00FF00;
  color: #000;
}

.dark-theme .scoreboard .missed {
  background: #FF0000;
  color: #000;
}

/* Light theme */
.light-theme {
  background: linear-gradient(135deg, #74ebd5 0%, #ACB6E5 100%);
  color: #333;
}

.light-theme .container {
  background: rgba(255, 255, 255, 0.8);
}

.light-theme .text-card {
  background: rgba(255, 255, 255, 0.8);
}

.light-theme #gameCanvas {
  background-color: #fff;
}

/* Dark theme */
.dark-theme {
  background-color: #000;
  color: #00FF00;
}

.dark-theme .container {
  background: #000;
  border: 1px solid #00FF00;
}

.dark-theme .text-card {
  background: #000;
  border: 1px solid #00FF00;
}

.dark-theme #gameCanvas {
  border: 1px solid #00FF00;
  background-color: #000;
}
