@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(610bc32a7e32c292ce59.ttf) format("truetype");
}
html,
body,
#app,
#common {
  width: 100%;
  height: 100%;
}
body {
  position: fixed;
  inset: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  font-family: "PT Sans", Arial, sans-serif;
}
#common,
#container,
#splash {
  position: fixed;
  inset: 0;
}
#container {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-image: url(5a6990c9028a882426d2.jpg);
  background-position: center;
}
#container canvas {
  width: 100%;
  max-width: calc(100vh * 2.2);
  max-height: 100vh;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #000;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5), 0 1.2rem 4rem rgba(0, 0, 0, 0.65);
}
#splash {
  position: fixed;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 5% 10vh;
  overflow: hidden;
  background-image: url(9d9a118bece75cac521b.jpg);
  background-position: center;
  background-size: cover;
  opacity: 1;
  transition: opacity 600ms ease,
    visibility 0s linear 0s;
}
#splash.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: opacity 600ms ease,
    visibility 0s linear 600ms;
}
.splash-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}
#splash.is-video-playing .splash-video {
  opacity: 1;
}
.loading-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  --loading-font-size: 1.5rem;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 5px #000;
}
.loading-label {
  min-height: 2.8rem;
  margin: 0 0 0.7rem;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 500ms ease,
    transform 500ms ease;
  font: 700 calc(var(--loading-font-size)) / 1.35 "PT Sans", Arial, sans-serif;
}
.loading-label.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.progressBar {
  position: relative;
  width: 100%;
  height: 1.5cm;
  padding: 3px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.47);
}
.progressBar > .progress {
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  overflow: hidden;
  background-color: #2b2bc2;
  background-image: linear-gradient(to top, #3a2bc2 37%, #6b54f0 69%);
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.3);
}
.progressBar > .progress::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  overflow: hidden;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  background-size: 50px 50px;
  animation: progress-gradient 3s linear infinite;
}
.percents {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 var(--loading-font-size) / 1 "PT Sans", Arial, sans-serif;
}
.loading-error {
  padding: 0.8rem 1rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.68);
  font: 700 var(--loading-font-size) / 1.4 "PT Sans", Arial, sans-serif;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
@keyframes progress-gradient {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

