* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Press Start 2P', monospace;
  background: #1a1a2e;
  color: #eee;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#root {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

canvas {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

button {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  padding: 12px 24px;
  background: #16213e;
  color: #eee;
  border: 3px solid #0f3460;
  cursor: pointer;
  transition: all 0.2s;
}

button:hover {
  background: #0f3460;
  border-color: #16213e;
  transform: scale(1.05);
}

button:active {
  transform: scale(0.95);
}

input {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  padding: 12px;
  background: #16213e;
  color: #eee;
  border: 3px solid #0f3460;
}

input:focus {
  outline: none;
  border-color: #e94560;
}
