.global-loading-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background-color:hsla(0,0%,100%,.95);z-index:1005;display:flex;align-items:center;justify-content:center;-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px);animation:fadeIn .2s ease-out}.global-loading-overlay.fade-out{animation:fadeOut .4s ease-out forwards}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes slideUpFadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.global-loading-content{display:flex;flex-direction:column;align-items:center;justify-content:center}.loading-text{margin-top:1rem;color:#666;font-size:1.1rem;font-weight:500}main.page-enter{animation:slideUpFadeIn .5s ease-out}