html, body {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

#unity-container {
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Canvas Unity */
#unity-canvas {
    width: 100%;
    height: 100%;
    background: url('bg.jpg') center center / cover no-repeat;
}

/* Loading bar container */
#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 80%; /* <-- tu jest wysokość */
    transform: translateX(-50%);
    display: none;
}

/* Logo (ukryte) */
#unity-logo {
    width: 0px;
    height: 0px;
    background: url('bg.png') no-repeat center;
}

/* Pasek pusty */
#unity-progress-bar-empty {
    margin-left: auto;
    margin-right: auto;
    width: 141px;
    height: 18px;
    background: url('progress-bar-empty-dark.png') no-repeat center;
}

/* Pasek pełny */
#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    background: url('progress-bar-full-dark.png') no-repeat center;
}

/* Ostrzeżenia */
#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    display: none;
}
