html.mv-booting {
  overflow: hidden !important;
}
#mvSplash {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 80% at 50% 40%, #0b1730 0%, #050814 62%, #03050c 100%);
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 1;
  visibility: visible;
}
#mvSplash.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mv-splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.mv-splash-inner img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.18),
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 42px rgba(0, 212, 255, 0.32);
  animation: mvSplashIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.mv-splash-word {
  font-family: Sora, "Segoe UI", system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: #e8f4ff;
  text-indent: 0.28em;
  animation: mvSplashIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.mv-splash-word span {
  color: #00e5ff;
}
@keyframes mvSplashIn {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.86);
    filter: blur(6px);
  }
  28% {
    opacity: 1;
    transform: translateY(0) scale(1.03);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mv-splash-inner img,
  .mv-splash-word {
    animation: none;
  }
}
