
.error-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.error-page__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.error-page__illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-page__illustration svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.error-page__text {
  text-align: left;
}

.error-page__code {
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-page__title {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.error-page__desc {
  font-size: 18px;
  color: #6b7280;
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.error-page__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.error-page__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.error-page__actions .btn svg {
  width: 20px;
  height: 20px;
}

.error-page__suggestions {
  background: #f9fafb;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e5e7eb;
}

.error-page__suggestions-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 24px 0;
}

.error-page__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.error-page__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s;
}

.error-page__link:hover {
  border-color: #34d399;
  background: #ecfdf5;
  color: #34d399;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.15);
}

.error-page__link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .error-page {
    padding: 40px 0;
  }

  .error-page__content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .error-page__illustration svg {
    max-width: 280px;
  }

  .error-page__text {
    text-align: center;
  }

  .error-page__code {
    font-size: 80px;
  }

  .error-page__title {
    font-size: 28px;
  }

  .error-page__desc {
    font-size: 16px;
  }

  .error-page__actions {
    justify-content: center;
  }

  .error-page__suggestions {
    padding: 24px;
  }

  .error-page__links {
    grid-template-columns: 1fr;
  }
}
