/* ✅ 08 — Real Game Card Base Style */
.real-game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border) !important;
    background: linear-gradient(160deg, rgba(250, 204, 21, 0.08) 0%, rgba(5, 150, 105, 0.05) 50%, rgba(0,0,0,0) 100%),
                linear-gradient(180deg, #132f52 0%, #0f2744 60%, #0a1d33 100%) !important;
    cursor: pointer;
    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) !important;
}
.real-game-card:active { transform: scale(.95); }
.real-game-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
