* {
    margin: 0;
    padding: 0;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    background: #000;
}

#game-container {
    margin: auto;
    position: relative;
    display: block;
    overflow: hidden;
}

#game-container #video-player,
#game-container video,
#game-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#game-container video {
    object-fit: cover;
}

#game-container > div > :not(video):not(.vjs-loading-spinner) {
    display: none !important;
}

.vjs-loading-spinner .vjs-control-text {
    display: none !important;
}

#version {
    position: fixed;
    right: 0;
    bottom: 0;
    font-family: monospace;
    font-size: 12px;
    color: white;
    line-height: 1.4;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    padding: 0 4px;
}