I might be stuck, then. I'm trying to increase the player count, which should be a simple change, but everything is hard-coded into the CSS (which is poor programming practice). I could try to fix the existing CSS, but it's such a mess that it'd probably be easier for me to write my own CSS from scratch, and do it properly this time. However, if I did that, then I would be affecting games in progress. So I was going to write a CSS switcher - which I've done before, and would (probably) be pretty easy to do here, but I don't have access to the place where the site sets the CSS for the game.
After that, I was going to add some extra characters (there's a nice list at
https://boardgamearena.com/forum/viewto ... 99&t=19633), but again, each individual character is hard-coded into the PHP, and also the CSS. I'd want to write a data structure for a Character, something like
Duke {
Color = FFCC00;
Name = "Tax"
Desc = "take 3 coins" }
Then it would be a whole lot easier to add additional characters.