/* ═══════════════════════════════════════════════
   HAND CRICKET — game.css
   Game-screen specific overrides
   (Base game styles are in main.css)
   ═══════════════════════════════════════════════ */

/* Ensure .gm is the positioning context for cinematic overlays */
.gm{
  position:relative;
}

/* Pip out animation */
.pip.out{animation:pipOut .4s ease;}
@keyframes pipOut{0%{transform:scale(0);}50%{transform:scale(1.4);}100%{transform:scale(1);}}

/* Timer danger pulse */
.timer-bar.danger{animation:timerDanger .5s ease-in-out infinite;}
@keyframes timerDanger{0%,100%{opacity:1;}50%{opacity:.5;}}
