/* Base hidden state */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* When visible */
.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optional variations */
.animate.left {
    transform: translateX(-50px);
}

.animate.right {
    transform: translateX(50px);
}

.animate.zoom {
    transform: scale(0.8);
}

/* When visible override */
.animate.show.left,
.animate.show.right,
.animate.show.zoom {
    transform: translateX(0) scale(1);
} 