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

body {
  background-color: #020202;
  color: white;
  font-family: sans-serif;
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
}

@media (max-width: 768px) {
  body {
    background-color: black;
  }
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.elevator-panel {
  width: 100%;
  max-width: 27rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(10, 10, 10);
  background-color: #000;
}

@media (max-width: 768px) {
  .elevator-panel {
    border: none;
  }
}
.title {
  font-size: 2.5rem;
  text-align: center;
}

.btn {
  padding: 0.6rem 0.8rem;
  font-size: 1.5rem;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 0.5rem;
  cursor: pointer;
  text-transform: uppercase;
}

@keyframes decorative-slash-animation {
  0% {
    background-position: -10rem;
  }
  100% {
    background-position: calc(100% + 10rem);
  }
}
@keyframes decorative-line-animation {
  0% {
    background-position: -30rem;
  }
  100% {
    background-position: calc(100% + 30rem);
  }
}
.decorative-line {
  width: 100%;
  height: 1rem;
  position: relative;
}
.decorative-line div {
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
}
.decorative-line div.flip {
  transform: scaleX(-1);
}
.decorative-line div.s1 {
  animation-duration: 4.2s;
}
.decorative-line div.s2 {
  animation-duration: 7s;
}
.decorative-line div.s3 {
  animation-duration: 8.2s;
}
.decorative-line div.s4 {
  animation-duration: 6.5s;
}
.decorative-line div.s5 {
  animation-duration: 5.8s;
}
.decorative-line .slash {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 194.2 19.84' %3E%3Cpath fill='%2300b3ff' d='M180.98 0h4.5l8.72 19.84h-4.5zM171.45 0h4.5l8.73 19.84h-4.5zM19.05 0h4.5l8.73 19.84h-4.5zM28.58 0h4.5l8.72 19.84h-4.5zM38.1 0h4.5l8.73 19.84h-4.5zM47.63 0h4.5l8.72 19.84h-4.5zM57.15 0h4.5l8.73 19.84h-4.5zM66.68 0h4.5l8.72 19.84h-4.5zM76.2 0h4.5l8.73 19.84h-4.5zM85.73 0h4.5l8.72 19.84h-4.5zM95.25 0h4.5l8.73 19.84h-4.5zM104.78 0h4.5L118 19.84h-4.5zM114.3 0h4.5l8.73 19.84h-4.5zM123.83 0h4.5l8.72 19.84h-4.5zM133.35 0h4.5l8.73 19.84h-4.5zM142.88 0h4.5l8.72 19.84h-4.5zM152.4 0h4.5l8.73 19.84h-4.5zM161.93 0h4.5l8.72 19.84h-4.5zM9.53 0h4.5l8.72 19.84h-4.5zM0 0h4.5l8.73 19.84h-4.5z' /%3E%3C/svg%3E");
  height: 0.75rem;
  animation: decorative-slash-animation 3s linear infinite;
}
.decorative-line .sep {
  position: absolute;
  display: block;
  height: 0.2rem;
  top: 0.81rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 1500 10' %3E%3Cpath fill='%23f900ff' d='M 0 0 L 1500 0 L 1500 10 L 0 10 Z' /%3E%3C/svg%3E");
  animation: decorative-line-animation 3s linear infinite;
}
.decorative-line .sep.top {
  top: -0.2rem;
}

.elevator-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
}
.elevator-buttons button {
  color: white;
  background-color: transparent;
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
  font-size: 1.6rem;
  border: 2px solid white;
  transition: all 0.3s;
}
.elevator-buttons button svg {
  padding: 0.7rem;
  transition: all 0.3s;
}
.elevator-buttons button:active, .elevator-buttons button.active {
  background-color: white;
  transition: all 0s;
  color: black;
}
.elevator-buttons button:active svg, .elevator-buttons button.active svg {
  transition: all 0s;
  filter: invert(1);
}

@keyframes vibrate {
  0% {
    left: 0;
  }
  25% {
    left: 2px;
  }
  50% {
    left: 0;
  }
  75% {
    left: -2px;
  }
  100% {
    left: 0;
  }
}
#elevator-doors {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  display: block;
  pointer-events: none;
}
#elevator-doors.close {
  pointer-events: initial;
}
#elevator-doors.close .door {
  transition-delay: 1s;
}
#elevator-doors.close .door.left {
  transform: translate(0, 0);
}
#elevator-doors.close .door.right {
  transform: translate(0, 0);
}
#elevator-doors.close .frame {
  transition-delay: 0s;
  opacity: 1;
}
#elevator-doors .frame {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  border: rgb(150, 150, 150) 1.3rem solid;
  z-index: 30;
  transition-delay: 1s;
  transition: opacity 1s;
  opacity: 0;
}
#elevator-doors .doors {
  z-index: 25;
  position: relative;
  width: 100%;
  height: 100%;
}
#elevator-doors .door {
  width: 51%;
  height: 100%;
  position: absolute;
  display: block;
  background: linear-gradient(to bottom, #b5bdc8 0%, #828c95 50%, #b5bdc8 80%, #828c95 100%);
  transition-delay: 1s;
  transition: transform 1s;
}
#elevator-doors .door.left {
  left: 0%;
  transform: translate(-100%, 0);
  box-shadow: -8px 0 10px 10px #000000;
  z-index: 20;
}
#elevator-doors .door.right {
  transform: translate(100%, 0);
  right: 0%;
  z-index: 19;
}
#elevator-doors.vibrate .doors {
  animation: vibrate 0.1s infinite;
}

.floor {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #151515;
  color: white;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  z-index: 1;
  display: flex;
}
.floor video {
  position: absolute;
  width: 100%;
  height: 100%;
}

#floor-space video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20%;
     object-position: 20%;
}

@media (max-width: 768px) {
  #floor-space video {
    transform: rotate(90deg);
    width: 100vh;
    height: 100vw;
  }
}
#floor-8 {
  flex-direction: column;
}
#floor-8 iframe {
  max-width: 100%;
  height: 100%;
}

#floor-club {
  background-color: black;
}
#floor-club video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#floor-1 video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 45% bottom;
     object-position: 45% bottom;
}

#floor-5,
#floor-9 {
  background-color: black;
}
#floor-5 video,
#floor-9 video {
  -o-object-fit: cover;
     object-fit: cover;
}

#floor-7 video {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
}

@media (max-width: 768px) {
  #floor-5,
  #floor-7 {
    justify-content: center;
    align-items: center;
  }
  #floor-5 video,
  #floor-7 video {
    max-height: 40vh;
  }
}
.footer {
  font-size: 0.8rem;
  color: #717171;
  text-align: center;
}
.footer a {
  color: #ff3e3e;
  text-decoration: none;
}
.footer small {
  color: #393939;
  font-size: 0.65rem;
}/*# sourceMappingURL=style.css.map */