* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%; height: 100%;
  background: #14202b;
  background-image: radial-gradient(circle at 20% 20%, #1f3346 0%, #0e1720 70%);
  overflow: hidden;
  font-family: "Comic Sans MS", "Trebuchet MS", cursive, sans-serif;
  touch-action: none;
  -webkit-user-select: none; user-select: none;
}
#game-wrap {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
#canvas {
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 0 4px #000, 0 20px 60px rgba(0,0,0,0.6);
  image-rendering: auto;
  cursor: crosshair;
}
#controls { display: none; }
#remix {
  position: fixed;
  bottom: 6px; right: 10px;
  font-size: 12px;
  color: #7fb0c8;
  text-decoration: none;
  opacity: 0.7;
  z-index: 10;
  font-family: sans-serif;
}
#remix:hover { opacity: 1; color: #1CA0E8; text-decoration: underline; }