/* ========================= MUSIC PAGE – FLICKER‑FREE HOVER ========================= */ #YOURCOLLECTIONID .fe-block-image { position: relative; overflow: hidden !important; } /* Remove default transition effects */ #YOURCOLLECTIONID .fe-block-image, #YOURCOLLECTIONID .fe-block-image .fe-image-container, #YOURCOLLECTIONID .fe-block-image a, #YOURCOLLECTIONID .fe-block-image img { transition: none !important; transform: none !important; opacity: 1 !important; } /* Add clean fade overlay on hover */ #YOURCOLLECTIONID .fe-block-image::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.15); /* subtle fade */ opacity: 0; pointer-events: none; transition: opacity 0.4s ease; } #YOURCOLLECTIONID .fe-block-image:hover::after { opacity: 1; }