body {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

#unity-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

#unity-logo {
    width: 512px;
    height: 512px;
    background: url('logo.png') no-repeat center;
}

#unity-progress-bar-empty {
    width: 512px;
    height: 65px;
    margin-top: 10px;
    background: url('progress-bar-empty.png') no-repeat center;
}

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

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

#fullScreenToggle {
    width: 100%;
    height: 100%;
    position: absolute;
}

/* Scaling for mobile devices */
@media only screen and (max-width: 768px) {
    #unity-logo {
        width: 256px;
        height: 256px;
        background: url('logo-mobile.png') no-repeat center;
    }

    #unity-progress-bar-empty {
        width: 256px;
        height: 33px;
        margin-top: 10px;
        background: url('progress-bar-empty-mobile.png') no-repeat center;
    }
    
    #unity-progress-bar-full {
        width: 0%;
        height: 33px;
        background: url('progress-bar-full-mobile.png') no-repeat center;
    }
}
