.loader_boss { display:none; position:fixed; z-index:9999; inset:0; background: rgba(15,23,42,.55); backdrop-filter: blur(2px); }
.loader-card { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:120px; height:120px; border-radius:16px; background:rgba(17,24,39,.9); border:1px solid rgba(255,255,255,.08); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.5rem; }
.loader-dual { width:42px; height:42px; border:3px solid rgba(255,255,255,.15); border-top-color:#7c3aed; border-right-color:#22d3ee; border-radius:50%; animation:spin 0.8s linear infinite; }
.loader-text { font-size:.8rem; color:#cbd5e1; font-weight:600; }
@keyframes spin { to { transform: rotate(360deg); } }
