/* Language Switch Animation */
body {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

body.lang-switching {
    opacity: 0;
    pointer-events: none;
    /* Prevent clicks during transition */
}