html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

/* Bühne: zentriert das Bild im Viewport */
.stage {
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;
}

/* Bildfläche mit festem Seitenverhältnis */
.image-frame {
    position: relative;

    width: 100%;
    max-width: 1200px;

    aspect-ratio: 1200 / 630;

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay-Text RELATIV ZUM BILD */
.overlay-text {
    position: absolute;

    /* gleicher Mittelpunkt wie OG-Generierung */
    top: 33.3333%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;

    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(20px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    text-align: center;
    white-space: pre-line;

    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
