.not-found-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7f7f7 0%, #976087 100%);
  padding: 2rem;
}

.not-found-content {
  text-align: center;
  max-width: 600px;
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.not-found-title {
  font-size: 8rem;
  font-weight: 800;
  color: #644b6d;
  margin: 0;
  line-height: 1;
  background: linear-gradient(135deg, #644b6d 0%, #976087 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.not-found-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 1rem 0;
}

.not-found-description {
  font-size: 1.1rem;
  color: #666;
  margin: 1.5rem 0 1rem;
  line-height: 1.6;
}

.not-found-redirect {
  font-size: 1rem;
  color: #644b6d;
  background: #f7f7f7;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0 2rem;
  font-weight: 500;
}

.not-found-redirect strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: #976087;
}

.not-found-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.not-found-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.not-found-button.primary {
  background: #644b6d;
  color: white;
}

.not-found-button.primary:hover {
  background: #533d5c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 75, 109, 0.3);
}

.not-found-button.secondary {
  background: #976087;
  color: white;
}

.not-found-button.secondary:hover {
  background: #7d4e70;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(151, 96, 135, 0.3);
}

.not-found-help {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.not-found-help p {
  color: #666;
  margin-bottom: 0.5rem;
}

.not-found-link {
  color: #644b6d;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.not-found-link:hover {
  color: #976087;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .not-found-title {
    font-size: 5rem;
  }

  .not-found-subtitle {
    font-size: 1.5rem;
  }

  .not-found-description {
    font-size: 1rem;
  }

  .not-found-content {
    padding: 2rem 1.5rem;
  }

  .not-found-actions {
    flex-direction: column;
  }

  .not-found-button {
    width: 100%;
    justify-content: center;
  }
}

