/* ============================================================
   FarmQuest — game-ui.css
   Canvas container, HUD overlays, pointer utilities
   ============================================================ */

#game-container {
  position: relative;
  border: 3px solid #8B6914;
  box-shadow: 0 0 40px rgba(139, 105, 20, 0.6);
  /* Phaser will size the canvas; we just frame it */
}

#game-container canvas {
  display: block;
}

/* Utility: make Phaser text-based overlays feel native */
.fq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; /* Phaser handles its own input */
}
