body { padding: 0; margin: 0 }

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

#unity-canvas {
    width: 100%;
    height: 100%;
    background: #000000;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#unity-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 512px;
    height: 512px;
    max-width: 100vw;
    max-height: 100vh;
    background: url('logo.png') no-repeat center;
    background-size: contain;
    z-index: -10;
    pointer-events: none;
}

@media (max-width: 768px) { 
    #unity-logo {
        width: 512px;
        height: 512px;
    }
}

@media (max-height: 500px) {
    #unity-logo {
        width: 512px;
        height: 512px;
    }
}

#unity-progress-bar-empty {
    background-size: 100% 100%;
    width: 256px;
    height: 16px;
    margin-top: 280px;
    background: url('progress-bar-empty.png') no-repeat left center;
}

#unity-progress-bar-full {
    background-size: 100% 100%;
    width: 0%;
    height: 16px;
    background: url('progress-bar-full.png') no-repeat left center;
}

#unity-warning { 
    position: absolute; 
    left: 50%; 
    top: 5%; 
    transform: translate(-50%); 
    background: white; 
    padding: 10px; 
    display: none; 
}