/* Fullscreen splash */
#splash-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #ff00c3, #8e2de2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.6s ease;
}

.splash-logo {
  width: 150px;
  animation: pulse 1.5s infinite ease-in-out;
}

/* Loading dots animation */
.loading-dots {
  margin-top: 20px;
  display: flex;
  gap: 6px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: bounce 0.6s infinite alternate;
}

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

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

/* Fade-out effect */
.fade-out {
  animation: fadeOut 0.6s ease forwards;
}

/* Animations */
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes bounce {
  to {
    transform: translateY(-5px);
    opacity: 0.7;
  }
}
