/* Global Animation Keyframes */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main content animation class */
.page-content {
    animation: slideUpFade 0.8s ease-out forwards;
}

/* Staggered animations for children */
.page-content > * {
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

.page-content > *:nth-child(1) { animation-delay: 0.1s; }
.page-content > *:nth-child(2) { animation-delay: 0.2s; }
.page-content > *:nth-child(3) { animation-delay: 0.3s; }
.page-content > *:nth-child(4) { animation-delay: 0.4s; }
.page-content > *:nth-child(5) { animation-delay: 0.5s; }
.page-content > *:nth-child(n+6) { animation-delay: 0.6s; }

/* Performance optimization */
.page-content {
    will-change: transform, opacity;
    backface-visibility: hidden;
}
