* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background: #111827;
  color: #f9fafb;
  font-family: Arial, sans-serif;
}

.game {
  width: min(92vw, 480px);
  padding: 24px;
  text-align: center;
  background: #1f2937;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgb(0 0 0 / 35%);
}

h1 {
  margin: 0 0 8px;
}

.hint {
  margin: 0 0 18px;
  color: #cbd5e1;
}

.scoreboard {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 18px;
}

canvas {
  width: 100%;
  max-width: 400px;
  background: #020617;
  border: 4px solid #38bdf8;
  border-radius: 12px;
}

.status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #facc15;
  font-weight: bold;
}
