html,
body,
#app {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

body {
    margin: 0;
    padding: 0;
    background-size: cover;
    background-image: url("assets/textures/background/low/background.webp");
    background-repeat: no-repeat;
}

/* Zajištění, že pixi-container zabírá celou plochu */
#pixi-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    /* Výchozí: nahoře (přepíše se JS podle layoutu) */
    justify-content: center;
}