*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  user-select: none;
  overflow: hidden;
  color: #fff;
  font-family: "Bender Regular";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.loadingscreen {
  width: 100%;
  height: 100%;
}

/* background */
.loadingscreen .background {
  width: 100%;
  height: 100%;
}

.snowflake {
  position: absolute;
  z-index: 99999;
  top: -10vh;
  color: #fff;
  font-size: 1em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 0.463vh #000;
  animation: fall linear infinite;
  left: var(--x, 0);
  opacity: var(--opacity, 0.8);
  font-size: var(--size, 1em);
  transform: rotate(var(--rotation, 0deg));
}

@keyframes fall {
  0% {
    top: 0vh;
    left: var(--x, 0);
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(var(--drift, 0px)) rotate(180deg);
  }
  100% {
    top: 100vh;
    left: calc(var(--x, 0) + var(--drift-end, 0px));
    transform: translateX(var(--drift, 0px)) rotate(360deg);
  }
}

.loadingscreen .video {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.loadingscreen .video video,
.loadingscreen .video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.loadingscreen .background {
  width: 100%;
  height: 100%;
}

.loadingscreen .background .design {
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
}

.loadingscreen .background .radial {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    61.57% 61.57% at 50% 50%,
    rgba(20, 11, 11, 0.62) 0%,
    rgba(20, 11, 11, 0.71) 69.15%,
    rgba(20, 11, 11, 0.83) 100%
  );
}

.loadingscreen .background .shadows {
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(34.1852vh);
}

.loadingscreen .background .shadows .top {
  position: absolute;
  width: 100%;
  height: 100%;
}

.loadingscreen .background .shadows .top::before {
  position: absolute;
  content: "";
  top: -25.2778vh;
  left: -28.3333vh;
  width: 43.9815vh;
  height: 43.2407vh;
  border-radius: 50%;
  background: #308fff;
}

.loadingscreen .background .shadows .top::after {
  position: absolute;
  content: "";
  top: -25.2778vh;
  right: -28.3333vh;
  width: 43.9815vh;
  height: 43.2407vh;
  border-radius: 50%;
  background: #308fff;
}

.loadingscreen .background .shadows .bot {
  position: absolute;
  width: 100%;
  height: 100%;
}

.loadingscreen .background .shadows .bot::before {
  position: absolute;
  content: "";
  bottom: -18.6111vh;
  left: -28.3333vh;
  width: 43.9815vh;
  height: 27.7778vh;
  border-radius: 50%;
  background: #308fff;
}

.loadingscreen .background .shadows .bot::after {
  position: absolute;
  content: "";
  bottom: -18.6111vh;
  right: -28.3333vh;
  width: 43.9815vh;
  height: 27.7778vh;
  border-radius: 50%;
  background: #308fff;
}

/* inner */
.loadingscreen .inner {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.loadingscreen .inner .center {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2407vh;
}

.loadingscreen .inner .center .title-container {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.loadingscreen .inner .center .title-container .santa {
  position: absolute;
  top: -2vh;
  left: 2.5vh;
  width: 10vh;
  height: 10vh;
  transform: rotate(-15deg);
}

.loadingscreen .inner .center .title-container .title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Bender Bold";
  color: #fff;
  font-size: 11.8519vh;
  margin-bottom: -1vh;
}

.loadingscreen .inner .center .title-container .subtitle {
  font-family: "Bender Regular";
  color: #fff;
  font-size: 2.2222vh;
  letter-spacing: 6.7611vh;
  margin-left: 6.5vh;
}

.loadingscreen .inner .center .social-container {
  display: flex;
  align-items: center;
  gap: 2.0833vh;
}

.loadingscreen .inner .center .social-container .box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 0.9259vh;
  width: 11.3889vh;
  height: 11.3889vh;
  border-radius: 0.2778vh;
  background: radial-gradient(
    232.12% 100% at 50% 0%,
    rgba(140, 140, 140, 0.25) 0%,
    rgba(64, 64, 64, 0) 100%
  );
  box-shadow:
    0 0 0.9259vh 0.3704vh rgba(0, 0, 0, 0.5),
    0 0 1.6574vh 0 rgba(255, 255, 255, 0.05) inset;
}

.loadingscreen .inner .center .social-container .box::after {
  position: absolute;
  content: "";
  top: 0;
  width: 3.9815vh;
  height: 0.1852vh;
  background: #308fff;
  box-shadow: 0 0 2.713vh 0 #308fff;
}

.loadingscreen .inner .center .social-container .box img {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  width: 3.5185vh;
}

.loadingscreen .inner .center .social-container .box .button {
  position: absolute;
  bottom: 0.9259vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 0.9259vh * 2);
  height: 2.5vh;
  border-radius: 0.2778vh;
  border: 0.0463vh solid #fff;
  background: radial-gradient(
    232.12% 100% at 50% 0%,
    rgba(140, 140, 140, 0.25) 0%,
    rgba(64, 64, 64, 0) 100%
  );
  box-shadow: 0 0 1.6574vh 0 rgba(255, 255, 255, 0.05) inset;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1.3889vh;
  transition:
    background 0.3s,
    color 0.3s,
    border 0.3s;
}

.loadingscreen .inner .center .social-container .box .button:hover {
  background: #308fff;
  box-shadow: 0 0 1.6574vh 0 #308fff inset;
  border: 0.0463vh solid #308fff;
}

.loadingscreen .inner .center .volume-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -2vh;
  gap: 0.6481vh;
  width: calc(11.3889vh * 2 + 2.0833vh);
  height: 2.8704vh;
  padding: 0.463vh;
  border-radius: 0.2778vh;
  border: 0.05vh solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 1.6574vh 0 rgba(255, 255, 255, 0.05) inset;
}

.loadingscreen .inner .center .volume-box .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.9444vh;
  height: 1.9444vh;
  border-radius: 0.0926vh;
  border: 0.05vh solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.loadingscreen .inner .center .volume-box .icon-box img {
  height: 1.0185vh;
}

.loadingscreen .inner .center .volume-box input {
  width: 100%;
  height: 0.3vh;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.4629vh;
  outline: none;
  cursor: pointer;
}

.loadingscreen .inner .center .volume-box input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 0.7vh;
  width: 1.3889vh;
  background: #d9d9d9;
  cursor: pointer;
}

/* footer */
.loadingscreen .footer {
  position: absolute;
  bottom: 3.1481vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3vh;
}

.loadingscreen .footer .loading-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18.7037vh;
  height: 18.7037vh;
  aspect-ratio: 1 / 1;
}

.loadingscreen .footer .loading-container svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 2s linear infinite;
  transform-origin: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg) translateZ(0);
  }
  to {
    transform: rotate(360deg) translateZ(0);
  }
}

.loadingscreen .footer .loading-container .percentage {
  position: absolute;
  font-family: "Bender Bold";
  font-size: 3.5556vh;
  color: #fff;
}

.loadingscreen .footer .info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2407vh;
}

.loadingscreen .footer .info-container .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2407vh;
  height: 3.2407vh;
  transform: rotate(135deg);
  background: radial-gradient(
    77.72% 77.72% at 50% 50%,
    rgba(48, 143, 255, 0.25) 0%,
    rgba(19, 60, 134, 0.25) 100%
  );
}

.loadingscreen .footer .info-container .icon-box::after {
  position: absolute;
  content: "";
  z-index: 9999;
  inset: 0;
  padding: 0.05vh;
  background: linear-gradient(to top, #ffffff00, rgba(255, 255, 255, 0.55));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.loadingscreen .footer .info-container .icon-box .inner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.3148vh;
  height: 2.3148vh;
  border: 0.0463vh solid #308fff;
  background: radial-gradient(
    77.72% 77.72% at 50% 50%,
    rgba(48, 143, 255, 0.25) 0%,
    rgba(19, 60, 134, 0.25) 100%
  );
  box-shadow: 0 0 4.2778vh 0 rgba(48, 143, 255, 0.55);
}

.loadingscreen .footer .info-container .icon-box .inner-icon img {
  width: 0.8333vh;
  height: 1.3593vh;
  transform: rotate(-135deg);
}

.loadingscreen .footer .info-container .text {
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-size: 1.2963vh;
  line-height: 1.7593vh;
  max-width: 77.5vh;
}
