/* Interactive pages (games, simulations) */

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(16px, 4vw, 20px);
}

canvas {
  display: block;
  border: 1px solid var(--color-border);
}

/* Captions and status panels */
#caption,
#status-panel {
  max-width: var(--width-narrow);
  text-align: center;
  margin-top: clamp(16px, 4vw, 20px);
  font-size: var(--font-size-small);
  line-height: var(--line-height-compact);
}

#caption {
  color: var(--color-text-muted);
  font-style: italic;
}

#status-panel {
  color: var(--color-text-muted);
  font-family: monospace;
  line-height: 1.9;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: clamp(12px, 3vw, 16px);
}
