.game-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #fff;
    min-width: 300px;
    height: 300px;
}

.game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #333;
    height: 50px;
}

.card-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
    overflow: hidden;
    padding: 1rem;
}

.card-middle .game-image {
    width: 100%;
    object-fit: contain;
}

.card-body {
    font-size: 0.9rem;
}

#games-container {
    gap: 20px;
}

.no-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #aaa;
    font-size: 1rem;
    text-align: center;
    
}