:root {
  font-family: 'Courier New', Courier, monospace;
  background-color: #1a1a1a;
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#game-container {
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  border: 4px solid #444;
  background-color: #000;
}

canvas {
  display: block;
  /* Disable cursor over canvas since we might draw our own or just hide it */
  cursor: none; 
}
