.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 .company-name {
  color: white;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.splash-screen .slogan {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
  text-align: center;
}

.splash-screen .loading-text {
  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;
}