.game-list {
    border-radius: 23px;

    .game-item {
        background-color: var(--pixel-bg-dark);
        border-radius: 23px;
        margin-bottom: 30px;
        display: block;

        &:hover {
            background-color: #2b2d2e;
            color: unset;
        }

        img {
            border-radius: 23px;
        }

        h4 {
            font-size: 15px;
        }
    }
}

.game-info {
    i {
        width: 25px;
        display: flex;
        justify-content: end;
    }

    &:hover span {
        color: var(--color-white);
    }
}

.game-install-icon {
    cursor: pointer;
}
