.redirecting {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  padding: var(--spacing-4);
}

.content {
  text-align: center;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: var(--spacing-8);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 100%;
  animation: fadeIn var(--animation-duration-normal) ease-out;
}

.title {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 var(--spacing-4) 0;
}

.message {
  font-family: var(--font-family-base);
  font-size: 1rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(var(--spacing-4));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .content {
    padding: var(--spacing-6);
    margin: var(--spacing-4);
  }
  
  .title {
    font-size: 1.25rem;
  }
  
  .message {
    font-size: 0.875rem;
  }
}

/* Dark mode support */
:global(.dark) .redirecting {
  background: var(--gradient-secondary);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .content {
    animation: none;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}