/* Browse-list card for a digital game — links to the single view to play.
   When a captured canvas thumbnail exists it sits behind a Play overlay;
   otherwise we show a flat placeholder. */
.game-browse-card {
    display: block;
    position: relative;
    margin: 12px 0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    background: #111d33;
    border: 1px solid #293c60;
    transition: transform 0.18s ease, border-color 0.18s ease;
}
.game-browse-card:hover {
    transform: translateY(-2px);
    border-color: #6afcff;
}

.game-browse-card.has-thumb {
    aspect-ratio: 16 / 9;
}
.game-browse-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.game-browse-card.has-thumb .game-browse-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.4em;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to bottom, rgba(8, 14, 28, 0) 40%, rgba(8, 14, 28, 0.55) 100%);
    transition: background 0.18s ease;
}
.game-browse-card.has-thumb:hover .game-browse-play {
    background: linear-gradient(to bottom, rgba(8, 14, 28, 0.15) 30%, rgba(8, 14, 28, 0.7) 100%);
}

.game-browse-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #6afcff;
    font-weight: 600;
    font-size: 1.1em;
}
