#initial-app-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #18181b;
  /* Matches body */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 99999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#initial-app-splash .splash-spinner {
  width: 1.75rem;
  height: 1.75rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: #206bc4;
  /* Tabler Primary Blue */
  animation: splash-spin 0.6s linear infinite;
}

#initial-app-splash .splash-text {
  color: #71717a;
  /* Muted zinc-400 text color */
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes splash-spin {
  to {
    transform: rotate(360deg);
  }
}
