/* ========================================
   OCULTAR COMPLETAMENTE GAMIFICACIÓN
   ======================================== */

/* Ocultar botón flotante de gamificación */
.gamification-fab,
.gamification-fab * {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Ocultar menú de gamificación */
.gamification-menu,
.gamification-menu *,
.gamification-menu.show,
.gamification-menu.show * {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Ocultar indicadores de estado */
.gamification-indicator,
.gamification-indicator *,
.gamification-indicator.show,
.gamification-indicator.show * {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Ocultar elementos de gamificación en general */
[class*="gamification"],
[class*="gamification"] *,
[id*="gamification"],
[id*="gamification"] * {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Ocultar elementos creados dinámicamente */
.gamification-element,
.gamification-hover {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

