.splash-screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #07101f;
}

.splash-ball-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 140px;
  justify-content: flex-end;
}

.splash-ball {
  font-size: 3.5rem;
  line-height: 1;
  display: block;
  animation: ball-bounce 0.65s ease-out infinite alternate;
  transform-origin: center bottom;
}

.splash-shadow {
  width: 52px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 4px;
  animation: shadow-pulse 0.65s ease-out infinite alternate;
}

.splash-brand {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1.75rem;
}

@keyframes ball-bounce {
  0% {
    transform: translateY(0) scaleX(1.18) scaleY(0.82);
  }
  12% {
    transform: translateY(-10px) scaleX(1) scaleY(1);
  }
  100% {
    transform: translateY(-88px) scaleX(0.94) scaleY(1.06);
  }
}

@keyframes shadow-pulse {
  0%   { transform: scaleX(1.2);  opacity: 0.45; }
  100% { transform: scaleX(0.35); opacity: 0.08; }
}
