/* splash-screen.css — initial page loader shown before React hydrates */

body.page-loading * {
  transition: none !important;
}

.splash-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: #ffffff;
  flex-direction: column;
  gap: 16px;
}

.loader-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid #e9ecef;
  border-top-color: #3e97ff;
  border-radius: 50%;
  animation: s4ds-spin 0.8s linear infinite;
}

.loading-text {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: #99a1b7;
  letter-spacing: 0.5px;
}

@keyframes s4ds-spin {
  to { transform: rotate(360deg); }
}
