body {
  margin: 0;
  overflow: hidden;
  background: #87CEEB;
  font-family: Arial, sans-serif;
}

canvas {
  display: block;
  margin: 0 auto;
  background: #5c94fc;
  cursor: pointer;
}

#gameInfo {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  pointer-events: none;
  z-index: 10;
}

#controls {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 12px;
  pointer-events: none;
  z-index: 10;
}