/* ✅ 23 — Game Image Wrapper */
.game-img-wrap{ position:relative; width:100%; aspect-ratio:0.85/1; overflow:hidden; background:#000; }
.game-img-wrap img{ width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .3s ease, transform .3s ease; }
.game-img-wrap img.loaded{ opacity:1; }
