/* Sonic Frenzy — game-specific styles */
body {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.game-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

canvas {
  display: block;
  cursor: pointer;
  /* Crisp pixel rendering for the retro look */
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
