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

html {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
  overscroll-behavior-y: none;
  background: #020510;
}

body {
  height: 100vh;
  height: -webkit-fill-available;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  overscroll-behavior-y: none;
}

.sky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.sky .nebula {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 1;
  backface-visibility: hidden;
}
.sky .constellation {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  will-change: transform, opacity;
}

.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.container:hover .aura-layer {
  animation: rainbowBurst 2s ease-out 1;
}
.container .mascot-wrapper {
  position: absolute;
  z-index: 0;
  animation: floatVertical 6s ease-in-out infinite;
}
.container .mascot-wrapper .mascot-container {
  position: relative;
  animation: floatHorizontal 8s ease-in-out infinite;
}
.container .mascot-wrapper .mascot-container .aura-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("/img/ranni-the-moon-snail.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  pointer-events: none;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}
.container .mascot-wrapper .mascot-container .aura-red {
  filter: drop-shadow(0 0 50px rgba(255, 0, 0, 0.9));
  animation-delay: 0s;
}
.container .mascot-wrapper .mascot-container .aura-orange {
  filter: drop-shadow(0 0 50px rgba(255, 165, 0, 0.9));
  animation-delay: 0.2s;
}
.container .mascot-wrapper .mascot-container .aura-yellow {
  filter: drop-shadow(0 0 50px rgba(255, 255, 0, 0.9));
  animation-delay: 0.4s;
}
.container .mascot-wrapper .mascot-container .aura-green {
  filter: drop-shadow(0 0 50px rgba(0, 255, 0, 0.9));
  animation-delay: 0.6s;
}
.container .mascot-wrapper .mascot-container .aura-cyan {
  filter: drop-shadow(0 0 50px rgba(0, 255, 255, 0.9));
  animation-delay: 0.8s;
}
.container .mascot-wrapper .mascot-container .aura-blue {
  filter: drop-shadow(0 0 50px rgba(0, 0, 255, 0.9));
  animation-delay: 1s;
}
.container .mascot-wrapper .mascot-container .aura-purple {
  filter: drop-shadow(0 0 50px rgba(138, 43, 226, 0.9));
  animation-delay: 1.2s;
}
.container .mascot-wrapper .mascot-container img {
  width: 600px;
  max-width: 60vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(100, 200, 255, 0.3));
  position: relative;
}
.container .title-container {
  perspective: 1000px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.container .title-container h1 {
  font-family: "Montserrat", sans-serif;
  font-size: min(7rem, 7.27vw);
  max-width: 80vw;
  font-weight: 900;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  margin: 0;
  filter: contrast(1.1) brightness(0.9);
  animation: letterSpacingExpand 10s cubic-bezier(0, 0, 0, 1) forwards;
}
.container .title-container h1:hover {
  color: #FFFFFF;
  text-shadow: none;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  animation: letterSpacingExpand 10s cubic-bezier(0, 0, 0, 1) forwards, neonPulse 2.5s ease-in-out 0.6s infinite;
}
.container .title-container .tagline {
  font-family: "Montserrat", sans-serif;
  font-size: min(1.5rem, 4.17vw);
  max-width: 80vw;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  letter-spacing: 0.2em;
  margin-top: 0;
  text-transform: uppercase;
}
.container .title-container .tagline span {
  display: inline-block;
  opacity: 0;
  transform: rotateX(-90deg);
  animation: flipIn 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes zoom-approach {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: scale(1.33);
    opacity: 0;
  }
}
@keyframes nebula-drift {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  99% {
    transform: scale(2);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes floatVertical {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes floatHorizontal {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(15px);
  }
}
@keyframes rainbowBurst {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}
@keyframes letterSpacingExpand {
  0% {
    opacity: 0;
    letter-spacing: -0.15em;
  }
  100% {
    opacity: 1;
    letter-spacing: 0.1em;
  }
}
@keyframes neonIgnition {
  0% {
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0));
  }
  70% {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.55)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
  }
  75% {
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.15));
  }
  79% {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.55)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
  }
  88% {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.45));
  }
  93% {
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.2));
  }
  97% {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.85)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.45));
  }
  100% {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  }
}
@keyframes neonPulse {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
  }
}
@keyframes flipIn {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
.veil {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 1px;
  z-index: 9999;
  pointer-events: none;
}

.veil-overlay {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(0.1px);
  -webkit-backdrop-filter: blur(0.1px);
}

/*# sourceMappingURL=home.css.map */
