body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    font-family: "Montserrat", sans-serif;
    background-image: linear-gradient(125deg, #7194f3, #abe7ff);
}
#unity-container { position: absolute }
#unity-container.unity-desktop { left: 50%; top: 50%; transform: translate(-50%, -50%) }
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-play {
    position: relative;
    margin-bottom: 8px;
    padding: 0;
    border: solid 3px #e8eef3a1;
    box-shadow: rgba(0, 0, 0, 0.05) 4px 4px 10px 4px;
}
#unity-play canvas {
    position: absolute;
}
.unity-mobile #unity-play {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}
#unity-canvas {
    width: 100%;
    height: 100%;
    background: #231F20;
}
#unity-loading-bar {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('background.png') center / cover rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
}
#unity-loading-bar.fade {
    opacity: 0;
    transition: .5s;
}
#unity-loading-bar.fade.active {
    opacity: 1;
}
#unity-loading-bar h1 {
    width: 100%;
    height: 100%;
    text-decoration: none;
    text-align: center;
    color: #ffffffb2;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
}
#unity-logo { width: 154px; height: 130px; background: url('unity-logo-dark.png') no-repeat center }
.progress-bar-empty {
    width: 80%;
    height: 8px;
    background-color: #737475;
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    left: 50%;
    top: 95%;
    transform: translate(-50%, -50%);
}
.progress-bar-full {
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: #b5f8f4;
}
#unity-footer { position: relative }
.unity-mobile #unity-footer { display: none }
#unity-webgl-logo {
    float: left;
    width: 204px;
    height: 38px;
    background: url('webgl-logo.png') no-repeat center;
    transition: .2s;
}
#unity-webgl-logo:hover {
    background-color: #ffffff50;
}
#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-size: 18px;
}
#unity-fullscreen-button {
    float: right;
    width: 30px;
    height: 30px;
    color: #6bc3fa;
    border: solid 2px #6bc3fa;
    border-radius: 3px;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#unity-fullscreen-button:hover {
    background: #6bc3fa;
    color: rgb(201, 226, 255);
}
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }

.spinner {
    position: absolute;
    right: 12px;
    bottom: 12px;

    width: 28px;
    height: 28px;
    border-top: 4px solid rgba(255, 255, 255, 0.2);
    border-right: 4px solid rgba(255, 255, 255, 0.2);
    border-bottom: 4px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #ffffff;
    border-radius: 50%;

    animation: spinner-spin .8s infinite linear;
}

@keyframes spinner-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
