.search-container {
    margin-bottom: 20px;
    text-align: center;
}

.search-container input {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    font-size: 16px;
    width: 300px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
}

.games {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.game {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 10px;
}

.game img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: filter 0.3s ease;
}

.game a {
    display: block;
    width: 100%;
    height: 100%;
}

.game:hover img {
    filter: brightness(80%);
}

.game .bio {
    display: none;
}
