.app-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  font-family: Arial, Helvetica, sans-serif;
}
.app-splash__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 3rem;
  background: #004379;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.app-splash__logo { width: 220px; max-width: 100%; height: auto; }
.app-splash__spinner {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: app-splash-spin 0.9s linear infinite;
}
.app-splash__text {
  margin: 0;
  font-size: 0.95rem;
  color: #bbd5ef;
  letter-spacing: 0.02em;
}
@keyframes app-splash-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .app-splash__spinner { animation-duration: 2s; }
}
