.custom-loader-container{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(255,255,255,.85);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);display:flex;justify-content:center;align-items:center;z-index:9999;transition:transform .6s cubic-bezier(.7, 0, .3, 1),opacity .6s ease-out}.custom-loader-container.dark{background-color:rgba(13,13,13,.85)}.custom-loader-container.fade-out{transform:translateY(-100%)}.loader-content{display:flex;flex-direction:column;align-items:center;gap:20px}.loader-image{width:120px;height:120px;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes pulse{0%,100%{opacity:1}50%{opacity:.7}}.loader-image.pulse{animation:pulse 1.5s ease-in-out infinite}.loader-text{font-size:16px;color:#333;font-weight:500}.custom-loader-container.dark .loader-text{color:#ccc}.loader-progress{width:200px;height:4px;background-color:#f0f0f0;border-radius:2px;overflow:hidden;margin-top:10px}.custom-loader-container.dark .loader-progress{background-color:#333}.loader-progress-bar{height:100%;background:linear-gradient(90deg,#49b1f5,#00c4b6);border-radius:2px;animation:progress 2s ease-in-out infinite}@keyframes progress{0%{width:0%}50%{width:100%}100%{width:100%}}@media (max-width:768px){.loader-image{width:80px;height:80px}.loader-text{font-size:14px}.loader-progress{width:150px}}