    /* Common gradient effect for headings */
    .text-multicolor-animated {
      background: linear-gradient(90deg, #00f0ff, #ff00f0, #00ff88);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% auto;
      animation: shimmer 5s linear infinite;
    }
    
    /* Animate gradient movement (shimmer effect) */
    @keyframes shimmer {
      to {
        background-position: -200% center;
      }
    }