/* 404 Error Page Styles */

/* Error Hero Section */
.error-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  padding: var(--spacing-3xl) 0;
}

.error-content {
  display: block;
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

/* Animated 404 Number */
.error-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-lg);
  perspective: 1000px;
}

.error-number span {
  font-size: clamp(8rem, 15vw, 12rem);
  font-weight: 900;
  font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
  position: relative;
  letter-spacing: -0.02em;
}

.error-number .zero {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Error Message */
.error-message {
  margin-bottom: var(--spacing-3xl);
}

.error-message h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.error-message p {
  font-size: 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.7s both;
}


/* Action Buttons */
.error-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  margin-bottom: var(--spacing-3xl);
  animation: fadeInUp 1s ease-out 0.9s both;
}

.error-actions .btn {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  width: 200px;
  justify-content: center;
}

.error-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.error-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.error-actions .btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.error-actions .btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 768px) {
  .error-number {
    gap: var(--spacing-md);
  }
  
  .error-number span {
    font-size: clamp(6rem, 12vw, 8rem);
  }
  
  .error-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
}

@media (max-width: 480px) {
  .error-hero {
    padding: var(--spacing-xl) 0;
  }
  
  .error-message h1 {
    font-size: var(--font-size-xl);
  }
  
  .error-message p {
    font-size: var(--font-size-base);
  }
}
