#init-spinner {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  z-index: 9999;
}
#init-spinner__ring {
  width: 48px;
  height: 48px;
  border: 5px solid #333;
  border-top-color: #f0a500;
  border-radius: 50%;
  animation: init-spin 0.8s linear infinite;
}
#init-spinner__text {
  margin-top: 16px;
  color: #aaa;
  font-size: 0.9rem;
  font-family: sans-serif;
  letter-spacing: 0.05em;
}
@keyframes init-spin {
  to { transform: rotate(360deg); }
}
