Combine clip-path with CSS transforms. Transform affects the clipped element, creating interesting 3D effects.
clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
transform: rotate(45deg) scale(1.2);
/* Clip-path applies first, then transform */