/* ✅ 21 — Game Card Base */
.game-card{ background: linear-gradient(160deg, rgba(250,204,21,.08) 0%, rgba(5,150,105,.05) 50%, rgba(0,0,0,0) 100%),
    linear-gradient(180deg, #132f52 0%, #0f2744 60%, #0a1d33 100%); border:1px solid var(--border); border-radius:16px; overflow:hidden; position:relative;
    cursor:pointer; transition:transform .2s cubic-bezier(.22,1,.36,1), box-shadow .2s ease; animation:fadeIn .3s ease both;
    box-shadow: 0 10px 28px rgba(0,0,0,.5), 0 3px 10px rgba(5,150,105,.12), inset 0 1px 0 rgba(250,204,21,.08); }
.game-card:active{ transform:scale(.95); }
