/* Flappy Chase — phone-only presentation of the game window.
   The whole screen becomes the play field; you tap anywhere to flap, so the
   Starchaser D-pad/jump controls and hint are hidden here. */
@media (max-width: 640px) {
  /* canvas fills the available screen, letterboxed to keep its aspect */
  #win-game .sc-wrap {
    flex: 1 1 auto; display: flex; align-items: center; justify-content: center;
    background: var(--lcd, #aebc9f); padding: 0;
  }
  #win-game #scGame {
    width: auto; height: 100%; max-width: 100%; max-height: 100%;
    margin: 0 auto; touch-action: none; image-rendering: auto;
    box-shadow: inset 0 0 0 2px var(--edge, #2a3320);
  }
  /* no on-screen buttons or hint — the whole canvas is the tap target */
  #win-game .sc-controls,
  #win-game .sc-hint { display: none !important; }
  /* the FM mute button on the title bar still works; nothing else to change */
}
