.splash-screen {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 50%, #e8f4fd 100%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-screen.splash-screen--hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: splashFadeIn 0.6s ease;
}

.splash-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.splash-logo-wrap img {
  height: 42px;
  width: auto;
  animation: splashPulse 2s ease-in-out infinite;
}

.splash-brand {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #1c84ff;
  letter-spacing: -0.01em;
}

.splash-loader {
  width: 160px;
  height: 3px;
  background: rgba(28, 132, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.splash-loader__bar {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #1c84ff, #5ba8ff);
  border-radius: 3px;
  animation: splashSlide 1.2s ease-in-out infinite;
}

.splash-text {
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

@keyframes splashSlide {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(250%); }
  100% { transform: translateX(-100%); }
}

@keyframes splashPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.96); }
}

@keyframes splashFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-bs-theme="dark"] .splash-screen {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

[data-bs-theme="dark"] .splash-text {
  color: #64748b;
}

