.launch-splash {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.25), rgba(13, 2, 33, 0.95));
}

.launch-splash-content {
  text-align: center;
  padding: 2rem 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  background: rgba(20, 8, 46, 0.85);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
  animation: launchPulse 2.4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.launch-logo {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.2));
}

.launch-splash-content h1 {
  margin: 0;
  font-size: 2.2rem;
}

.launch-splash-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.launch-ready {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

#launch-continue-btn {
  margin-top: 0.6rem;
  padding: 0.9rem 2.4rem;
}

.launch-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.welcome-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 2, 33, 0.75);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.welcome-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.welcome-card {
  padding: 2rem 3rem;
  border-radius: 20px;
  text-align: center;
  background: rgba(26, 12, 56, 0.9);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.welcome-card h2 {
  margin-bottom: 0.4rem;
}

.welcome-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
}

@keyframes launchPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.kbc-select {
  background-color: rgba(0, 0, 0, 0.35);
}

.game-status .status-indicator {
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 215, 0, 0.15);
  }
  50% {
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.45);
  }
}
.launch-splash {
  position: fixed;
  inset: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
}

.screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.screen.active {
  overflow-y: auto;
}
