/* [project]/app/ErrorPages.module.css [app-client] (css) */
.ErrorPages-module__PWNDaq__container {
  background-color: var(--bg-main);
  min-height: 100vh;
  font-family: var(--font-inter, sans-serif);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.ErrorPages-module__PWNDaq__card {
  background-color: var(--bg-surface);
  box-shadow: var(--shadow-md);
  border-radius: 1.25rem;
  width: 100%;
  max-width: 520px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.ErrorPages-module__PWNDaq__errorIcon {
  background-color: var(--danger-bg);
  width: 64px;
  height: 64px;
  color: var(--danger);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  display: flex;
}

.ErrorPages-module__PWNDaq__notFoundIcon {
  background-color: var(--primary-light);
  width: 72px;
  height: 72px;
  color: var(--primary);
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  display: flex;
  transform: rotate(-10deg);
}

.ErrorPages-module__PWNDaq__decorativeCircle {
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -50px;
  right: -50px;
}

.ErrorPages-module__PWNDaq__cardContent {
  z-index: 1;
  position: relative;
}

.ErrorPages-module__PWNDaq__code404 {
  color: var(--text-primary);
  letter-spacing: -2px;
  margin-bottom: .5rem;
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.ErrorPages-module__PWNDaq__title {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 700;
}

.ErrorPages-module__PWNDaq__subtitle {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
}

.ErrorPages-module__PWNDaq__description {
  color: var(--text-secondary);
  max-width: 400px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.6;
}

.ErrorPages-module__PWNDaq__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  display: flex;
}

.ErrorPages-module__PWNDaq__btnPrimary {
  background-color: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: none;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  transition: background-color .2s;
  display: flex;
}

.ErrorPages-module__PWNDaq__btnPrimary:hover {
  background-color: var(--primary-hover);
}

.ErrorPages-module__PWNDaq__btnOutline {
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  cursor: pointer;
  background-color: #0000;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  transition: border-color .2s;
  display: flex;
}

.ErrorPages-module__PWNDaq__btnOutline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.ErrorPages-module__PWNDaq__footer {
  color: var(--text-muted);
  margin-top: 2rem;
  font-size: .8125rem;
}

@media (max-width: 480px) {
  .ErrorPages-module__PWNDaq__card {
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
  }

  .ErrorPages-module__PWNDaq__errorIcon {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
  }

  .ErrorPages-module__PWNDaq__notFoundIcon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .ErrorPages-module__PWNDaq__description {
    margin-bottom: 1.5rem;
  }

  .ErrorPages-module__PWNDaq__btnPrimary, .ErrorPages-module__PWNDaq__btnOutline {
    justify-content: center;
    width: 100%;
    padding: .5rem 1rem;
  }

  .ErrorPages-module__PWNDaq__actions {
    flex-direction: column;
  }
}

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