/* ============================================================================
   croak-hop.css — Game-specific styling for the VHC GameZone embed
   Used by: games/croak-hop.php
   ============================================================================ */

/* Main container */
main {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px 40px;
}

/* Canvas-Wrap: 640×640 Square */
.canvas-wrap {
  max-width: 640px;
  width: 100%;
}

#gc {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

/* Overlay-Sub (Pause/Game-Over Infozeile) */
#ov-sub {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 4px 0 12px;
  text-align: center;
}
#ov-sub.hidden { display: none; }
