[hidden] { display: none !important; }
.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  background: #0b0b0b;
  color: #fff;
}
.boot-screen[hidden] { display: none; }
.boot-card {
  display: grid;
  place-items: center;
  gap: 11px;
  letter-spacing: .06em;
}
.boot-card strong { font-size: 23px; }
.boot-card small { color: #aaa; letter-spacing: .03em; }
.boot-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #ffffff26;
  border-top-color: #e2bd68;
  border-radius: 50%;
  animation: boot-spin .8s linear infinite;
}
@keyframes boot-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .boot-spinner { animation-duration: 1.6s; }
}
