html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    touch-action: none;
    overscroll-behavior: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

#unity-container {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

#unity-canvas {
    display: block;
    background: #000;
    touch-action: none;
}

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

#unity-progress-bar-empty {
    width: min(64vw, 360px);
    height: 16px;
    background: #1a1a1a;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #2a2a2a inset;
}

#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: #ff7a00;
    transition: width .15s linear;
}

#unity-logo,
#unity-footer,
#unity-webgl-logo,
#unity-build-title,
#unity-fullscreen-button {
    display: none;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: #fff;
    color: #000;
    padding: 10px;
    display: none;
    z-index: 3;
}

#vk {
    display: none !important;
}