#boot-splash {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background: #07080c;
}

#boot-splash-note {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 119, 0.55);
  box-shadow: 0 0 18px rgba(212, 175, 119, 0.35);
  animation: boot-pulse 1.4s ease-in-out infinite;
}

@keyframes boot-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  #boot-splash-note {
    animation: none;
    opacity: 0.8;
  }
}