/* assets/css/splash.css */
#splash{
  position:fixed; inset:0; z-index:2000;
  display:flex; align-items:center; justify-content:center;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  transition: opacity .45s ease;
}
#splash.hide{ opacity:0; }
#splash.hidden{ display:none !important; }

#splash .card{
  width:min(720px,92vw);
  padding:16px;
  border-radius:16px;
  border:2px solid rgba(255,214,140,.45);
  background: rgba(28,18,12,.78);
  box-shadow: 0 20px 70px rgba(0,0,0,.65);
  text-align:left;
}

#splash .logo{
  font-weight:900;
  font-size:14px;
  margin-bottom:10px;
  color: #ffd773;
  letter-spacing:.2px;
}
#splash .status{
  margin:10px 0 8px;
  font-size:12px;
  opacity:.92;
}
#splash .meta{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  font-size:11px;
  opacity:.9;
  margin-bottom:8px;
}
#splash .bar-wrap{
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
}
#splash .bar{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, rgba(255,215,0,.55), rgba(140,200,255,.55));
  transition: width .18s ease;
}

#splash .log{
  margin-top:10px;
  max-height: 220px;
  overflow:auto;
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size:11px;
  line-height:1.35;
}
#splash .log-line{ display:flex; gap:8px; padding:2px 0; }
#splash .log-line .t{ opacity:.75; }
#splash .log-line.ok .m{ opacity:.92; }
#splash .log-line.fail .m{ color: rgba(255,120,120,.95); font-weight:700; }

#splash .spinner{
  width:32px; height:32px;
  border-radius:999px;
  border:3px solid rgba(255,255,255,.14);
  border-top-color: rgba(255,215,0,.75);
  animation: spin 1s linear infinite;
  margin: 6px 0 2px;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

#splash .hint{
  margin-top:10px;
  font-size:11px;
  opacity:.75;
}
