/* ═══════════════════════════════════════════════════════════════
   SPACE CADET PINBALL — Iframe (classement : voir game-scoreboard.css)
   ═══════════════════════════════════════════════════════════════ */

/* Zone scrollable sous le header (jeu + classement), le jeu s'adapte
   à la largeur du conteneur standard des jeux (.game-container, 800px). */
.pinball-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--font-xlarge);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large, 24px);
}

.pinball-frame-wrapper {
    width: 100%;
    aspect-ratio: 600 / 440; /* résolution native du moteur */
    background: #000;
    border-radius: var(--border-radius-sm, 6px);
    overflow: hidden;
    flex-shrink: 0;
}

.pinball-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
