.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease-out;
}

.splash-screen img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.splash-screen span {
  color: white;
  font-size: 18px;
  font-weight: 300;
  animation: fadeInOut 1.5s infinite;
}

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

@keyframes fadeInOut {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}