/* Back to menu */

@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.explore_page {
  transition: opacity 2000ms ease-out;
  opacity: 1;
}

.explore_page.fade_in {
  animation: 2000ms ease-out fade_in forwards;
}

.explore_page.fade_out {
  animation: 2000ms ease-out fade_out forwards;
  pointer-events: none;
}

.explore_page .back_to_menu {
  position: fixed;
  top: 0;
  left: 0;
  margin: 40px;
  width: 50px;
  height: 50px;
  background: url('/static/images/arrow_back_round.svg') center/contain no-repeat;
  cursor: pointer;
}

@media (max-width: 700px) {
  .explore_page .back_to_menu {
    margin: 20px;
  }
}

.explore_page .sound_button {
  position: absolute;
  top: 105px;
  right: 40px;
  width: 38px;
  height: 38px;
  background: url('/static/images/sound_icon.svg') center/contain no-repeat;
  cursor: pointer;
}

@media (max-width: 700px) {
  .explore_page .sound_button {
    top: 20px;
    right: 20px;
  }
}


.explore_page .explore_splash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.explore_page .splash_desktop {
  display: block;
  text-align: center;
}

.explore_page .splash_mobile {
  display: none;
}

@media (max-width: 700px) {
  .explore_page .splash_desktop {
    display: none;
  }

  .explore_page .splash_mobile {
    display: block;
  }
}

.explore_page .splash_row {
  display: flex;
  justify-content: space-between;
}

.explore_page .splash_col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  height: 150px;
  gap: 20px;
  padding: 0 40px;
}

.explore_page .splash_col:first-child {
  border-right: 2px solid #000;
}

.explore_page .splash_text {
  font-family: "Libre Baskerville";
  color: #000;
  font-size: 16px;
  font-style: italic;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .explore_page .splash_text {
    white-space: normal;
  }
}

.explore_page .splash_icon {
  width: 32px;
  height: 32px;
}

.explore_page .splash_button {
  display: inline-block;
  margin-top: 30px;
  color: #fff;
  background: #000;
  padding: 8px 15px 9px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 400;
}

.explore_page .splash_mobile_wrapper {
  width: 85vw;
  aspect-ratio: 1;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.explore_page .splash_mobile_circle {
  width: 80vw;
  aspect-ratio: 1;
  background: #000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.explore_page .splash_mobile_icon {
  margin-bottom: 15px;
  width: 32px;
  height: 32px;
}

.explore_page .splash_mobile_text {
  font-family: "Libre Baskerville";
  color: #fff;
  font-size: 16px;
  font-style: italic;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
}

