/* ================================
   MARY'S MANTLE — WORLD CLASS LOADER
   ================================ */

.mm-loader {
  position: fixed;
  inset: 0;
  background: var(--mm-bg, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.mm-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.mm-loader-inner {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Glowing Ring */
.mm-loader-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(0, 120, 255, 0.25);
  border-top-color: rgba(0, 120, 255, 0.9);
  animation: mmSpin 1.4s linear infinite;
  box-shadow: 0 0 20px rgba(0, 120, 255, 0.4);
}

/* Soft Glow Behind Ring */
.mm-loader-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 120, 255, 0.35),
    rgba(0, 120, 255, 0.05),
    transparent
  );
  animation: mmPulse 2.4s ease-in-out infinite;
}

/* Text */
.mm-loader-text {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--mm-text, #ffffff);
  letter-spacing: 0.5px;
  opacity: 0;
  animation: mmFadeIn 1.2s ease forwards 0.4s;
}

/* Animations */
@keyframes mmSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mmPulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes mmFadeIn {
  to {
    opacity: 1;
  }
}
