/* ── SPLASH OVERLAY ── */
#splashOverlay {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  animation: splashIn 0.6s ease forwards;
}

#splashOverlay.hide {
  animation: splashOut 0.5s ease forwards;
  pointer-events: none;
}

.splash-logo {
  width: 330px;
  height: 330px;
  border-radius: 26px;
  animation: splashPop 0.7s ease 0.4s both;
}

.splash-label {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 5px;
  text-transform: uppercase;
  animation: splashFade 0.6s ease 1.2s both;
}

.splash-tagline {
  font-family: var(--font-ui);
  font-size: 25px;
  color: var(--text-muted);
  letter-spacing: 1px;
  animation: splashFade 0.6s ease 2s both;
}

@keyframes splashIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes splashPop {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  65% {
    opacity: 1;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes splashFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashOut {
  to {
    opacity: 0;
    transform: scale(1.04);
  }
}

/* ── LOGO HOVER (toolbar + footer) ── */
.app-logo {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}

.app-logo:hover {
  filter: drop-shadow(0 0 8px var(--green)) drop-shadow(0 0 18px #2ecc7144);
  transform: scale(1.1);
}

.topbar-logo-img {
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent);
  border-radius: 8px;
}

.footer-logo-img {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  vertical-align: middle;
  margin: 0 5px;
}
