/* Flix - Stylesheet
   Sepia-Dark-Mode laut SPEC.md (Abschnitt 4.2) */

/* Globaler Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Vollbild, Sepia-Dark-Hintergrund, zentrierter Inhalt */
html, body {
    width: 100vw;
    height: 100vh;
    background-color: #2a2520;
    color: #ede4cf;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: hidden;
}

#stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    opacity: 0.9;
}
