body {
  margin: 0;
  padding: 0;
  background: #000000;
  overflow: hidden;
  width: 100dvw;
  height: 100dvh;
}

#experience,
#ui-root,
#fullscreen-media-root {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

#ui-root {
  z-index: 1;
  pointer-events: none;
}

#ui-root > *,
#fullscreen-media-root > * {
  pointer-events: all;
}

#fullscreen-media-root {
  z-index: 2;
  pointer-events: none;
}

#preload-screen > * {
  z-index: 10000;
}

#menu {
  display: inline-block;
  background: rgb(240, 241, 255);
  color: #333333;
  border-radius: 1em;
  padding: 1em;
  margin: 0;
  accent-color: rgb(77, 142, 255);
}

#menu fieldset {
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  border: none;
  padding: 8 0;
}

#menu legend {
  font-size: 1.1em;
}

#menu label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 4 0;
}

#menu button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #4d8eff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  padding: 8px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#menu button:hover {
  background-color: #3665b5;
}

#front-notice-label {
  font-family: Arial, sans-serif;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.controller-aid {
  display: inline-block;
  padding: 3px 6px;
  background-color: black;
  border-radius: 6px;
  color: white;
}

.controller-aid.is-touching {
  background-color: green;
}

.controller-aid.is-pressing {
  background-color: yellow;
  color: black;
}

#label-teleporter-hover {
  font-family: Arial, sans-serif;
  display: inline-block;
  font-size: 20em;
  font-weight: bold;
  color: #003781;
  white-space: nowrap;
}

#game-overlay-menu {
  position: fixed;
  top: 112px;
  right: 300px;
  left: 300px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-overlay-menu-item {
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.01em;
  background: linear-gradient(
    90deg,
    #ffffff -34.55%,
    rgba(255, 255, 255, 0) 117.15%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  cursor: pointer;
}

#game-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(17px);
  color: #fff;
}

.game-overlay-close {
  position: fixed;
  width: 150px;
  height: 44px;
  top: 112px;
  left: 106px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  /* identical to box height, or 16px */
  letter-spacing: 0.01em;
  background: linear-gradient(
    90deg,
    #ffffff -34.55%,
    rgba(255, 255, 255, 0) 117.15%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.game-overlay-close-text {
  margin-left: 10px;
}

.game-overlay-levels-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.row {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.game-overlay-level {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 5%;
  margin-right: 5%;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.01em;
  background: linear-gradient(
    90deg,
    #ffffff -34.55%,
    rgba(255, 255, 255, 0) 117.15%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.game-overlay-level span {
  margin-top: 32px;
}

.game-overlay-level img {
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .game-overlay-levels-container {
    flex-direction: column;
  }

  .game-overlay-level span {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .game-overlay-close {
    left: 31px;
    top: 32px;
  }

  #game-overlay-menu {
    right: 31px;
    top: 32px;
  }
}

#front-notice-label {
  z-index: 9999;
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  /* identical to box height, or 20px */

  letter-spacing: 0.01em;

  background: linear-gradient(
    90deg,
    #ffffff -34.55%,
    rgba(255, 255, 255, 0) 117.15%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.reactangle1 {
  position: absolute;
  top: -20px;
  left: -15px;
  z-index: 9998;
}

.reactangle2 {
  position: absolute;
  top: -25px;
  left: -35px;
  z-index: 9998;
}

.reactangle3 {
  position: absolute;
  bottom: 30px;
  left: -15px;
  z-index: 9998;
}

.reactangle4 {
  position: absolute;
  bottom: 20px;
  left: -20px;
  z-index: 9998;
}

.reactangle5 {
  position: absolute;
  bottom: 30px;
  right: -15px;
  z-index: 9998;
}

.reactangle6 {
  position: absolute;
  bottom: 20px;
  right: -20px;
  z-index: 9998;
}

.not-enabled {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}

.destination-image-1,
.destination-image-2,
.destination-image-3 {
  width: 280px;
  height: 172px;
}
