/**
 * Social Redirect Page Styles
 * Minimalist design matching other static pages
 */

/* Page Wrapper */
.social-redirect-page {
    padding: 4rem 0;
}

/* Header Section */
.social-redirect-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-redirect-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.social-redirect-title-normal {
    color: var(--foreground);
}

.social-redirect-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--muted-foreground);
    margin-top: 0.75rem;
}

/* Content Section */
.social-redirect-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Portal Container */
.portal-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-gif {
    width: 280px;
    height: auto;
    border-radius: var(--radius-secondary);
}

/* Timer Text */
.redirect-timer-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: center;
    margin: 0;
}

.redirect-countdown {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes portalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .social-redirect-page {
        padding: 2rem 0;
    }
    
    .social-redirect-header {
        margin-bottom: 2rem;
    }
    
    .portal-gif {
        width: 200px;
    }
    
    .redirect-timer-text {
        font-size: 1.25rem;
    }
    
    .redirect-countdown {
        font-size: 1.75rem;
    }
}
