/* 404 Error Page Styles */

.error-404 {
  text-align: center;
  padding: 2rem 0;
}

.error-404 h1 {
  font-size: 8rem;
  color: #007acc;
  margin: 0;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-404 h2 {
  font-size: 2rem;
  color: #333;
  margin: 1rem 0;
}

.error-404 p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.error-link {
  display: inline-block;
  background: #007acc;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.error-link:hover {
  background: #005a99;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.error-link.secondary {
  background: #6c757d;
}

.error-link.secondary:hover {
  background: #545b62;
}

@media (max-width: 600px) {
  .error-404 h1 {
    font-size: 6rem;
  }
  
  .error-404 h2 {
    font-size: 1.5rem;
  }
  
  .error-links {
    flex-direction: column;
    align-items: center;
  }
  
  .error-link {
    width: 200px;
  }
}