/* SAFE-CHANGE: background system for UI-001 - official radial gradient */
:root {
  --bg-official: radial-gradient(56.65% 56.65% at 50% 50%, #8A4BF8 0%, #330D7F 100%);
}

/* Clase principal para aplicar en layout: */
.bg-official {
  background: var(--bg-official);
  background-repeat: no-repeat;
  background-size: cover;
}

body.bg-official {
  background: var(--bg-official);
  background-repeat: no-repeat;
  background-size: cover;
}
