#boot-splash {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.boot-splash__inline {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.boot-splash__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #64748b;
}

.boot-splash__spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e2e8f0;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: boot-spin 0.8s linear infinite;
  box-sizing: border-box;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes boot-spin {
  to {
    transform: rotate(360deg);
  }
}
