/* ==================== 
   404 Error Page 
   ==================== */

.error-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-content {
  width: 100%;
}

.error-code {
  font-size: 15rem;
  font-weight: 800;
  color: #FF1A40;
  margin: 0;
  line-height: 1;
}

.error-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #414141;
  margin: 1rem 0;
}

.error-message {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 3rem;
}

.error-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.error-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #414141;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.error-link:hover {
  background-color: #FF1A40;
}

/* Responsive */
@media (max-width: 768px) {
  .error-code {
    font-size: 8rem;
  }
  
  .error-title {
    font-size: 2rem;
  }
  
  .error-message {
    font-size: 1rem;
  }
  
  .error-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .error-link {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}