/* ── FREESKI — embed styles ──────────────────────────────────
   The game (freeski.js) draws everything to its own <canvas>.
   This just gives it a crisp, full-bleed, snow-white surface
   inside the desktop window body (.freeski-mount) or a
   standalone stage.
   ─────────────────────────────────────────────────────────── */

.freeski-mount {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  background: #ffffff;          /* SkiFree snow */
}

.fs-canvas {
  display: block;
  background: #ffffff;
  outline: none;
  cursor: crosshair;
  touch-action: none;
  image-rendering: pixelated;   /* keep the original sprites sharp */
  image-rendering: crisp-edges;
}
