You can change your button style specifically when a fan is hovering on it to draw fans eyes to the ticket link.
To do so, find where you installed the Seated listings in your site code and add this style block just before.
<style>
.seated-event-link1:hover,
.seated-event-link2:hover {
color: #33cc33 !important;
border: solid 2px #fff !important;
background: #fff !important;
}
</style>
Note: This code example pulls together all the different changes for the button:hover class into one block. It changes the font color, the border color, and the background color.
You can pick your own colors here.