.loading-modal-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.8);backdrop-filter:blur(8px);display:flex;justify-content:center;align-items:center;z-index:9999;animation:fadeIn .3s ease-out}.loading-modal-container{background:var(--color-content-bg);border-radius:24px;box-shadow:0 20px 60px var(--color-shadow-primary),0 2px 8px var(--color-shadow-primary),inset 0 1px 0 var(--color-content-bg);padding:2.5rem;max-width:480px;width:90%;text-align:center;animation:modalSlideIn .4s cubic-bezier(.175,.885,.32,1.275);border:1px solid var(--color-shadow-primary)}.loading-logo-container{margin-bottom:2rem;display:flex;justify-content:center;align-items:center}.loading-logo{width:150px;height:auto;object-fit:contain;animation:logoFadeInOut 2s ease-in-out infinite;margin-top:2rem}.loading-modal-text{margin-bottom:2rem}.loading-modal-title{font-size:1.5rem;color:var(--color-text);margin:0 0 1rem;font-family:Poppins,sans-serif;font-weight:700}.loading-modal-message{font-size:1rem;color:var(--color-text);margin:0;line-height:1.5;font-weight:500}.loading-modal-submessage{font-size:.875rem;color:var(--color-text-secondary);margin:.5rem 0 0;line-height:1.4;font-weight:400}.loading-progress-dots{display:flex;justify-content:center;margin-top:2rem;align-items:center;gap:.5rem}.progress-dot{width:8px;height:8px;border-radius:50%;background:var(--color-highlight);animation:dotPulse 1.5s ease-in-out infinite}.progress-dot:first-child{animation-delay:0s}.progress-dot:nth-child(2){animation-delay:.3s}.progress-dot:nth-child(3){animation-delay:.6s}.progress-dot:nth-child(4){animation-delay:.9s}@keyframes dotPulse{0%,80%,to{transform:scale(1);opacity:.5}40%{transform:scale(1.3);opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes modalSlideIn{0%{opacity:0;transform:translateY(30px) scale(.9)}to{opacity:1;transform:translateY(0) scale(1)}}@keyframes logoFadeInOut{0%,to{opacity:.3;transform:scale(.95)}50%{opacity:1;transform:scale(1)}}@media (max-width:768px){.loading-modal-container{padding:2rem;border-radius:20px}.loading-modal-title{font-size:1.3rem}.loading-modal-message{font-size:.9rem}.loading-logo{width:100px}}@media (max-width:480px){.loading-modal-container{padding:1.5rem}.loading-modal-title{font-size:1.2rem}.loading-modal-message{font-size:.85rem}.loading-logo{width:100px;height:auto}}