/* Vector Runner — game-specific overrides. Scoped to this page only (loaded
   after the shared styles.css). Nothing here touches the shared token set. */

/* the runner reads landscape, so widen the standard portrait game column */
.game-main--wide {
  width: min(48rem, calc(100vw - var(--page-pad)));
}

/* the canvas is a 2:1 landscape strip; keep the neon horizon feel */
.board-frame--runner {
  border-radius: 0.9rem;
  background:
    linear-gradient(rgba(10, 10, 18, 0.7), rgba(5, 5, 10, 0.9)),
    radial-gradient(circle at 22% 120%, rgba(121, 87, 255, 0.16), transparent 60%),
    radial-gradient(circle at 80% -10%, rgba(105, 221, 255, 0.1), transparent 55%);
  cursor: pointer;
}
.board-frame--runner #board {
  cursor: pointer;
}
