@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Share Tech Mono', monospace;
  color: #00ff88;
  overflow: hidden;
}

#game-wrapper {
  position: relative;
  border: 1px solid #00ff8844;
  box-shadow: 0 0 30px #00ff8822, inset 0 0 30px #00000088;
}

canvas {
  display: block;
  background: #000;
}
