:root {
  --bg: #000000;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  font-family: "Courier New", monospace;
}

#canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  cursor: pointer;
  background: #000;
}

#controls {
  position: fixed;
  bottom: 6px;
  right: 8px;
  z-index: 10;
  pointer-events: none;
}

#remix {
  pointer-events: auto;
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: color 0.2s, background 0.2s;
}

#remix:hover {
  color: #00ffff;
  background: rgba(0, 0, 0, 0.7);
}