/* ── BGM Events Splash Screen ── */
#bgm-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0C1017;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: opacity 1.5s ease, visibility 1.5s ease;
}

#bgm-splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: linear-gradient(135deg, #16C784 0%, #0fa868 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(22, 199, 132, 0.5);
  animation: splashPulse 2s ease-in-out infinite;
  margin-bottom: 28px;
}

.splash-logo-wrap img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 16px;
}

@keyframes splashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,199,132,0.45); }
  50%       { box-shadow: 0 0 0 18px rgba(22,199,132,0); }
}

.splash-title {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  text-align: center;
}

.splash-title span {
  color: #16C784;
}

.splash-slogan {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  letter-spacing: 0.3px;
  margin-bottom: 52px;
  font-style: italic;
}

.splash-dots {
  display: flex;
  gap: 8px;
}

.splash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16C784;
  animation: splashDot 1.2s ease-in-out infinite;
}

.splash-dots span:nth-child(2) { animation-delay: 0.2s; }
.splash-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes splashDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
  40%            { transform: scale(1);   opacity: 1;   }
}