/* ============================================
   SPLASH SCREEN
   ============================================ */

.splash {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.splash.fade-out {
  opacity: 0;
  visibility: hidden;
}

.splash__logo {
  width: 140px;
  height: 140px;
  animation: splashPulse 2s ease-in-out infinite;
}

.splash__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.4));
}

.splash__tagline {
  font-size: 13px;
  color: var(--c-text-dim);
  letter-spacing: 2px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
  margin-right: 20px;
  justify-content: center;
  text-align: center;
}

.splash__text {
  color: var(--c-text);
}

@keyframes splashPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 16px rgba(0, 255, 65, 0.3));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 32px rgba(0, 255, 65, 0.6));
  }
}
