/* ---- KEEPING IT REEL (pier-at-midnight fishing, js/reel.js) ---- */
#reelWorld {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: none;
  background: #04030e;
}
body.reel-mode #reelWorld { display: block; }

#reelWorld canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* HOOKED! / catch cards / SNAP / storm banners */
.reel-banner {
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%) scale(0.6);
  font: 900 clamp(1.2rem, 4vw, 2.4rem)/1.2 Consolas, 'Courier New', monospace;
  letter-spacing: 0.1em;
  text-align: center;
  color: #26e0ff;
  text-shadow: 3px 3px 0 #03141c, 0 0 24px rgba(38, 224, 255, 0.5);
  opacity: 0;
  pointer-events: none;
  max-width: 90vw;
}
.reel-banner.show {
  animation: reel-banner-pop 0.35s ease-out forwards;
}
.reel-banner.go { color: #39ff7a; text-shadow: 3px 3px 0 #04140a, 0 0 24px rgba(57, 255, 122, 0.5); }
.reel-banner.gold { color: #ffd23a; text-shadow: 3px 3px 0 #3a2a04, 0 0 28px rgba(255, 210, 58, 0.6); }
.reel-banner.over { color: #ff5252; text-shadow: 3px 3px 0 #3a0808, 0 0 24px rgba(255, 82, 82, 0.6); }
.reel-banner.storm {
  color: #ffd23a;
  text-shadow: 3px 3px 0 #2a1a30, 0 0 18px rgba(255, 210, 58, 0.8), 0 0 44px rgba(124, 77, 255, 0.6);
  animation: reel-banner-pop 0.35s ease-out forwards, reel-storm-throb 0.9s ease-in-out 0.35s infinite;
}

@keyframes reel-banner-pop {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  60% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes reel-storm-throb {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}
