.not-found-page {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.not-found-page__content {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.not-found-page__icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.not-found-page__title {
  margin: 0 0 12px;
  font-size: 26px;
  color: #0e1c44;
}

.not-found-page__text {
  margin: 0 0 24px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.not-found-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0e1c44;
  color: #f6f0e9;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.05s ease,
    box-shadow 0.18s ease;
}

.not-found-page__button:hover {
  background: #162a63;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.not-found-page__button:active {
  transform: translateY(1px);
  box-shadow: none;
}

@media (max-width: 768px) {
  .not-found-page {
    min-height: calc(100vh - 140px);
  }

  .not-found-page__content {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .not-found-page__title {
    font-size: 22px;
  }

  .not-found-page__text {
    font-size: 14px;
  }
}
