Thanks for playing! I originally planned to add a dash cooldown indicator, but I got sidetracked trying to implement a leaderboard. I ended up scrapping it because I couldn't get it working right. Then, with only two hours left in the jam, my entire UI randomly vanished—so I had to spend the rest of the time fixing that instead.
For the effect on the itch page - you have to request custom CSS access. Once you are approved add this code to the Custom CSS box under edit theme on your game page:
.screenshot {
background-color: #050505;
border: 6px #7986A7 solid;
border-radius: 5%;
position: relative;
display: inline-block;
transition: all 200ms ease-in;
transform: scale(1);
}
.screenshot:hover{
box-shadow: 0px 0px 100px 5px #2E4774;
z-index: 2;
transition: all 200 ease-in;
transform: scale(1.04) rotate(-1deg);
}