/*!****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/ZyMall/assets/styles/404.scss ***!
  \****************************************************************************************************************************/
:root {
  --teal-frost: #F0FDFA;
  --teal-mist: #CCFBF1;
  --teal: #0F766E;
  --teal-bright: #14B8A6;
  --teal-deep: #115E59;
  --midnight: #1A1A1A;
  --charcoal: #2D2D2D;
  --stone: #6B7280;
  --stone-light: #9CA3AF;
  --page-bg: #F5F5F7;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 16px;
  --radius-sm: 10px;
}

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

body {
  font-family: var(--font-body);
  background: var(--page-bg);
  color: var(--midnight);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.a1 {
  animation: fadeUp 0.5s ease both;
}

.a2 {
  animation: fadeUp 0.5s ease 0.1s both;
}

.a3 {
  animation: fadeUp 0.5s ease 0.2s both;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 48px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 22px;
  width: auto;
}

.nav-back {
  margin-left: auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-back:hover {
  color: rgba(255, 255, 255, 0.8);
}

.page-main {
  max-width: 680px;
  width: 100%;
  margin: auto;
  padding: 0 20px 24px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 120px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--teal-mist), var(--teal-bright), var(--teal-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.8;
}

.error-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.error-desc {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 28px;
}

.btn-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--teal-bright);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.25);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  background: #fff;
  color: var(--midnight);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--teal-bright);
  color: var(--teal-deep);
  transform: translateY(-1px);
}

.help-text {
  margin-top: 20px;
  font-size: 12px;
  color: var(--stone-light);
}
.help-text a {
  color: var(--teal-bright);
  text-decoration: none;
  font-weight: 600;
}

footer {
  padding: 12px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: auto;
  text-align: center;
}
footer a,
footer span {
  font-size: 11px;
  color: var(--stone-light);
  text-decoration: none;
  margin: 0 8px;
}

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