/*
 * Custom background effects.
 *
 * Most effects registered in includes/class-msd-effects.php only need a
 * gradient value (no CSS file changes needed at all — see that file's
 * comment). Use this file only when an effect needs something a plain
 * background-image gradient can't do, e.g. a moving shine that needs its
 * own @keyframes and a background-size/position animation.
 *
 * Example — an animated moving shine (paired with a 'css_map' entry of
 * 'linear-gradient(110deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%)'
 * and background-size:200% 100% set via the same effect definition):
 *
 *   @keyframes msc-moving-shine {
 *     0%   { background-position: -150% 0; }
 *     100% { background-position: 150% 0; }
 *   }
 *
 * This file is enqueued right after menu.css / custom-animations.css on
 * every page the menu shortcodes render on.
 */
