body {
  margin: 0;
  background: #FFFCF8;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #0E0C1C;
  }
}

#sp-splash {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: 'Poppins', system-ui, sans-serif;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(255,122,47,0.18), transparent 70%),
    radial-gradient(50% 40% at 80% 60%, rgba(255,179,71,0.12), transparent 70%);
  z-index: 0;
  opacity: 1;
  transition: opacity .25s ease-out;
  pointer-events: none;
}

.sp-splash--leaving {
  opacity: 0;
}

.sp-splash__ring {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 3px solid rgba(255,122,47,.18);
  border-top-color: #FF7A2F;
  animation: sp-spin .9s linear infinite;
}

.sp-splash__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FF7A2F;
}

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

@media (prefers-reduced-motion: reduce) {
  .sp-splash__ring {
    animation: none;
  }
}
