.games-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    /* Center cards */
    align-items: center;
}

.game-card {
    display: block; /* cleaner than inline-block here */
    width: fit-content; /* shrink to content */
    max-width: 100%;
    text-align: center; /* center text inside card */

    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition:
        background 0.15s ease,
        transform 0.15s ease;
}

.game-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.game-card h2 {
    margin: 0;
    font-size: 1.1rem;
}

.game-card p {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    opacity: 0.7;
}
