#splash-screen{position:fixed;inset:0;background:#fff;z-index:999999;display:none;align-items:center;justify-content:center;transition:opacity .3s ease;animation:panelFadeIn .3s ease-out}.splash-panel{background:#9b9898;padding:40px 36px 32px;border-radius:var(--css-border-radius);box-shadow:0 12px 40px rgba(0,0,0,.25);display:flex;flex-direction:column;align-items:center;text-align:center;min-width:300px}.splash-content{display:flex;flex-direction:column;align-items:center;text-align:center;width:280px}.splash-logo{max-width:220px;margin-bottom:28px}.progress-container{width:100%;height:6px;background:#444;border-radius:var(--css-border-radius);overflow:hidden;margin-bottom:16px}.progress-bar{height:100%;width:0;background:linear-gradient(90deg,#2b2b2b,#ddd)}html.show-splash .progress-bar{animation:load-progress 6s linear forwards}.splash-text{font-size:14px;color:#2b2b2b;letter-spacing:.03em}html.show-splash #splash-screen{display:flex}@keyframes load-progress{from{width:0}to{width:100%}}@keyframes panelFadeIn{from{opacity:0;transform:scale(0.98)}to{opacity:1;transform:scale(1)}}