/* ==========================================================================
   SPLASH OVERLAY (CLICK TO ENTER / GUNS.LOL ENTRANCE)
   ========================================================================== */
.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 5, 10, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s ease;
}

.splash-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  text-align: center;
  padding: 30px;
  animation: splashPulse 2.4s ease-in-out infinite alternate;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-badge {
  font-family: var(--font-cyber);
  font-size: 0.72rem;
  letter-spacing: 3px;
  color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.35);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.splash-glitch {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8.5vw, 6rem);
  font-weight: 800;
  letter-spacing: 3px;
  background: var(--rainbow-gradient);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowShine 6s linear infinite;
  filter: drop-shadow(0 0 35px rgba(0, 242, 254, 0.35));
  margin-bottom: 24px;
  position: relative;
}

.splash-prompt {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  letter-spacing: 2px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 242, 254, 0.4);
  padding: 12px 30px;
  border-radius: 999px;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.25);
  animation: buttonPulse 2s ease-in-out infinite alternate;
  transition: transform 0.2s ease;
}

.splash-prompt:hover {
  transform: scale(1.05);
}

.prompt-icon {
  font-size: 1.3rem;
  animation: soundWiggle 1s ease infinite alternate;
}

.splash-sub {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-family: var(--font-mono);
}

@keyframes splashPulse {
  0% { transform: scale(0.98); }
  100% { transform: scale(1.02); }
}

@keyframes buttonPulse {
  0% { box-shadow: 0 0 15px rgba(0, 242, 254, 0.25); border-color: rgba(0, 242, 254, 0.4); }
  100% { box-shadow: 0 0 32px rgba(255, 42, 141, 0.55); border-color: rgba(255, 42, 141, 0.6); }
}

@keyframes soundWiggle {
  0% { transform: rotate(-10deg); }
  100% { transform: rotate(10deg); }
}

@keyframes rainbowShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
