/**
 * GSAP Animation Styles
 */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00A99D 0%, #7B2CBF 100%);
    z-index: 9999;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
}
