/* Page Transition Styles */
body {
    opacity: 0;
    transform: scale(1.02);
    filter: blur(10px);
    transition: opacity 0.25s ease-out, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s ease-out;
}

body.fade-in {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Ensure smooth scrolling is globally active */
html {
    scroll-behavior: smooth;
}