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

body {
  background: #0f0f0f;
  color: #e0e0e0;
  font-family: monospace;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px 16px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

h1 {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

#info {
  font-size: 0.85rem;
  color: #888;
}

#canvas {
  cursor: crosshair;
  image-rendering: pixelated;
}
