/* 404 Error Page */
.error-404 {
  padding: 80px 0 120px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-404__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-404__code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.error-404__number {
  font-size: 120px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  text-shadow: 4px 4px 12px rgba(240, 138, 36, 0.2);
}

.error-404__icon {
  width: 100px;
  height: 100px;
  animation: float 3s ease-in-out infinite;
}

.error-404__title {
  font-size: 32px;
  margin: 0 0 16px;
  color: var(--text);
}

.error-404__text {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.error-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-404__actions .btn {
  min-width: 200px;
}

/* Анимация для иконки */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 720px) {
  .error-404 {
    padding: 60px 0 80px;
  }
  
  .error-404__number {
    font-size: 80px;
  }
  
  .error-404__icon {
    width: 70px;
    height: 70px;
  }
  
  .error-404__code {
    gap: 12px;
  }
  
  .error-404__title {
    font-size: 24px;
  }
  
  .error-404__text {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .error-404__actions .btn {
    min-width: 180px;
    padding: 10px 20px;
    font-size: 14px;
  }
}
