.splash-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.splash-screen .splash-logo {
  display: block;
  width: 72px;
  height: 72px;
  animation: splash-logo-pulse 1.4s ease-in-out infinite;
}

.splash-screen .splash-text {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #6b7280;
}

.splash-screen .splash-dots span {
  opacity: 0;
  animation: splash-dot-blink 1.4s infinite both;
}

.splash-screen .splash-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.splash-screen .splash-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes splash-logo-pulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.65;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes splash-dot-blink {
  0%, 60%, 100% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
}
