/* splash.css */

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d6efd; /* Or your theme */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.splash-text {
  font-size: 2.5rem;
  color: white;
  font-weight: bold;
  animation: fadeInOut 2.5s ease-in-out forwards;
  font-family: 'Segoe UI', sans-serif;
}

.splash-text span {
  color: #ffd700;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1); }
}
