/* loader.css — Extracted from index.html inline styles (TECH-F1-001 Paso 1)
   CSP: Eliminates need for 'unsafe-inline' in style-src. See ADR-001. */

.initial-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  background: #1a1a2e;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #333;
  border-top-color: #e94560;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-text {
  color: #666;
  margin-top: 16px;
  font-family: 'Nunito', sans-serif;
}
