#fxOverlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s ease;
}

#fxOverlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

#fxCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#crackOverlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

#auraLoader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.04), rgba(6,7,14,0.86));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#auraLoader.is-visible {
  opacity: 1;
}

.auraLoader__ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: rgba(255,255,255,0.9);
  animation: spin 1.05s linear infinite;
}

.auraLoader__label {
  margin-top: 14px;
  font-family: "PP Neue Montreal", "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: #f4f0eb;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
