/* [project]/app/not-found.module.css [app-client] (css) */
.not-found-module__sxuMuG__page {
  color: #f5f5f5;
  background: #111;
  flex-direction: column;
  min-height: 100vh;
  font-family: Noto Sans KR, Outfit, -apple-system, sans-serif;
  display: flex;
  overflow-x: hidden;
}

.not-found-module__sxuMuG__nav {
  z-index: 1000;
  -webkit-backdrop-filter: blur(12px);
  background: #111111e6;
  border-bottom: 1px solid #ffffff14;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.not-found-module__sxuMuG__navInner {
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 3rem;
  display: flex;
}

.not-found-module__sxuMuG__navLogo {
  letter-spacing: .04em;
  color: #f5f5f5;
  font-family: Anton, sans-serif;
  font-size: 1.75rem;
  text-decoration: none;
}

.not-found-module__sxuMuG__navLinks {
  gap: 2.5rem;
  display: flex;
}

.not-found-module__sxuMuG__navLinks a {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #a3a3a3;
  font-size: .8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.not-found-module__sxuMuG__navLinks a:hover {
  color: #f5f5f5;
}

.not-found-module__sxuMuG__navLinks a:after {
  content: "";
  background: #f5f5f5;
  width: 0;
  height: 2px;
  transition: width .3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.not-found-module__sxuMuG__navLinks a:hover:after {
  width: 100%;
}

.not-found-module__sxuMuG__hero {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 2rem;
  display: flex;
  position: relative;
}

.not-found-module__sxuMuG__hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #ffffff14 0%, #0000 70%);
  width: 600px;
  height: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.not-found-module__sxuMuG__heroContent {
  z-index: 1;
  max-width: 1200px;
  position: relative;
}

.not-found-module__sxuMuG__heroSub {
  letter-spacing: .25em;
  color: #a3a3a3;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  animation: .8s forwards not-found-module__sxuMuG__fadeInUp;
}

.not-found-module__sxuMuG__heroTitle {
  letter-spacing: .02em;
  color: #f5f5f5;
  text-transform: uppercase;
  opacity: 0;
  margin: 0;
  font-family: Anton, sans-serif;
  font-size: clamp(6rem, 20vw, 15rem);
  font-weight: 400;
  line-height: .95;
  animation: .8s .2s forwards not-found-module__sxuMuG__fadeInUp;
}

.not-found-module__sxuMuG__heroAccent {
  letter-spacing: -.02em;
  color: #d9d9d9;
  opacity: 0;
  margin: 2rem 0 4rem;
  font-family: Noto Sans KR, sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  animation: .8s .4s forwards not-found-module__sxuMuG__fadeInUp;
}

.not-found-module__sxuMuG__ctaButton {
  color: #111;
  letter-spacing: .02em;
  cursor: pointer;
  opacity: 0;
  background: #f5f5f5;
  border: none;
  border-radius: 0;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 3rem;
  font-family: Outfit, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s;
  animation: .8s .6s forwards not-found-module__sxuMuG__fadeInUp;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.not-found-module__sxuMuG__ctaButton:before {
  content: "";
  background: #dcdcdc;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
}

.not-found-module__sxuMuG__ctaButton:hover:before {
  transform: translateX(0);
}

.not-found-module__sxuMuG__ctaButton:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px #ffffff40;
}

.not-found-module__sxuMuG__ctaButton:hover .not-found-module__sxuMuG__ctaArrow {
  transform: translateX(6px);
}

.not-found-module__sxuMuG__ctaArrow {
  z-index: 1;
  font-size: 1.5rem;
  transition: transform .3s;
  position: relative;
}

.not-found-module__sxuMuG__ctaButton span:not(.not-found-module__sxuMuG__ctaArrow) {
  z-index: 1;
  position: relative;
}

@keyframes not-found-module__sxuMuG__fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .not-found-module__sxuMuG__navInner {
    padding: 1rem 1.5rem;
  }

  .not-found-module__sxuMuG__navLinks {
    gap: 1.5rem;
  }

  .not-found-module__sxuMuG__hero {
    padding: 7rem 1.5rem 2rem;
  }

  .not-found-module__sxuMuG__heroAccent {
    margin: 1.5rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .not-found-module__sxuMuG__navLogo {
    font-size: 1.5rem;
  }

  .not-found-module__sxuMuG__navLinks a {
    font-size: .75rem;
  }

  .not-found-module__sxuMuG__heroTitle {
    font-size: 5.5rem;
  }

  .not-found-module__sxuMuG__heroAccent {
    font-size: 1.25rem;
  }

  .not-found-module__sxuMuG__ctaButton {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=app_not-found_module_9651f0f8.css.map*/