/* Full-screen boot overlay while Supabase restores session (avoids “glitchy” flashes). */
#auth-boot-overlay.auth-boot-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483645;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #1e293b 0%, #020617 55%, #000 100%);
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.auth-boot-inner {
  text-align: center;
  padding: 32px;
  max-width: 320px;
}

.auth-boot-brand {
  margin: 0 0 28px;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #f8fafc;
}

.auth-boot-brand span {
  color: #22d3ee;
}

.auth-boot-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid rgba(34, 211, 238, 0.15);
  border-top-color: #22d3ee;
  animation: auth-boot-spin 0.85s linear infinite;
}

.auth-boot-text {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

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