/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&display=swap');

/* Reset / Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Root Variables */
:root {
  --bg-color: #0a0a0a;
  --text-color: #eaeaea;
  --accent-color: #00ff9f;
}

/* Body Setup */
body {
  align-items: center;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  font-family: 'Orbitron', sans-serif;
  height: 100vh;
  justify-content: center;
  overflow: hidden;
}

/* Game Container */
#game-container {
  height: 100%;
  position: relative;
  width: 100%;
}

/* Canvas (Phaser will inject this) */
canvas {
  display: block;
}