.loader-container {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(15, 20, 25, 0.68); /* fondo premium oscuro glass */
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  font-size: 1.15rem;
  z-index: 9999;
  flex-direction: column;
  font-family: var(--font-display);
  backdrop-filter: var(--blur-backdrop);
}

/* Loader circular premium */
.loader {
  border: 8px solid rgba(226, 232, 240, 0.13); /* Gris claro, usa --text-light con opacidad */
  border-top: 8px solid;
  border-image: linear-gradient(90deg, var(--accent-gold), var(--accent-green)) 1;
  border-radius: 50%;
  width: 54px; height: 54px;
  animation: spin 1.15s linear infinite;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.13);
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
