@keyframes wsSplashPulse {
  0%,100% { opacity: 0.55; transform: scale(0.96); }
  50%      { opacity: 1;    transform: scale(1.03); }
}
#wsSplash {
  position: fixed; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: #050f28;
  z-index: 9999;
  transition: opacity 0.35s ease;
}
#wsSplash img {
  width: 90px; height: 90px;
  border-radius: 20px;
  animation: wsSplashPulse 1.4s ease-in-out infinite;
}
#wsSplash span {
  margin-top: 18px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.6px;
  color: rgba(255,255,255,0.40);
}
