Could we have a separate :hover colour for the status buttons, because the XmlHttpRequest latency combined with the CSS animation means that I can't see if the colour is from my hover or if my click has taken effect. (This is a problem because I can't always tell if the click from my mouse was registered.) Suggestions:
.tributton-watch .button.acquired:hover {background-color: #FCE07F;color: #fff;}
.tributton-watch .button.watched:hover {background-color: #63CC8A;color: #fff;}
.tributton-watch .button.skipped:hover {background-color: #C5C5C5;color: #fff;}
[Maybe add some network UI feedback with something like having the font-awesome icon for that button {display:none;} when the button is clicked and {display:block;} when the XMLHttpRequest returns from the server?]

