/**
 * MUCH/MANY TRAINER STYLES — GRID LAYOUT REWRITE
 * Senior-level layout: no vh gaps, no black bars.
 * CRITICAL: visibility-based hiding для Grid-compatibility
 */

/* ============================================
   LAYOUT VARIABLES
   ============================================ */

:root {
  /* Structural heights (visual) */
  --mm-header-height: 70px;
  --mm-stats-height: 56px;
  --mm-buttons-height: 96px;

  /* Safe areas for notched devices */
  --mm-safe-top: max(env(safe-area-inset-top), 0px);
  --mm-safe-bottom: max(env(safe-area-inset-bottom), 0px);

  /* Effective areas */
  --mm-header-total: calc(var(--mm-header-height) + var(--mm-safe-top));
  --mm-stats-total: var(--mm-stats-height);
  --mm-buttons-total: calc(var(--mm-buttons-height) + var(--mm-safe-bottom));

  /* Neon colors (keep original palette) */
  --mm-neon-cyan: #00f0ff;
  --mm-neon-magenta: #ff00ff;
  --mm-neon-yellow: #ffff00;

  /* Glow intensity */
  --mm-glow-base: 20px;
  --mm-glow-spread: 40px;
  --mm-glow-hover: 30px;
}

@media (max-width: 768px) {
  :root {
    --mm-header-height: 60px;
    --mm-stats-height: 52px;
    --mm-buttons-height: 88px;

    --mm-glow-base: 12px;
    --mm-glow-spread: 24px;
    --mm-glow-hover: 18px;
  }
}

@media (max-width: 480px) {
  :root {
    --mm-header-height: 56px;
    --mm-stats-height: 48px;
    --mm-buttons-height: 82px;

    --mm-glow-base: 10px;
    --mm-glow-spread: 20px;
    --mm-glow-hover: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --mm-glow-base: 0;
    --mm-glow-spread: 0;
    --mm-glow-hover: 0;
  }
}

/* ============================================
   ROOT GAME LAYOUT (CSS GRID)
   ============================================ */

/* Body already has gradient in core.css; here управляем layout-only */
.game-body {
  display: grid;
  grid-template-rows:
    var(--mm-header-total)   /* header */
    var(--mm-stats-total)    /* stats  */
    1fr                      /* arena  */
    var(--mm-buttons-total); /* buttons */
  grid-template-areas:
    "mm-header"
    "mm-stats"
    "mm-game"
    "mm-buttons";

  min-height: 100vh;  /* desktop / fallback */
  min-height: 100dvh; /* modern mobile */

  width: 100vw;
  max-width: 100%;
  overflow: hidden;
}

/* ============================================
   HEADER & STATS (GRID CHILDREN)
   ============================================ */

.trainer-header {
  grid-area: mm-header;
  position: relative;           /* no fixed: участвует в потоке */
  display: flex;
  align-items: center;
  height: var(--mm-header-total);
  padding-inline: 1rem;

  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.trainer-header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-btn {
  color: var(--accent);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.back-btn:hover {
  background: rgba(79, 140, 255, 0.1);
  transform: translateX(-3px);
}

.trainer-header h1 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 0;
}

@media (max-width: 480px) {
  .trainer-header h1 {
    font-size: 1rem;
  }

  .back-btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}

.game-stats {
  grid-area: mm-stats;
  position: relative;           /* no fixed */

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;

  height: var(--mm-stats-total);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;

  background: rgba(0, 0, 0, 0.85);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);

  z-index: 20;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.stat-value {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.power-up-indicator {
  background: rgba(255, 200, 0, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 200, 0, 0.5);
  animation: mm-pulse 1s infinite;
}

@keyframes mm-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
  .game-stats {
    gap: 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }

  .stat-item:nth-child(1) .stat-label::before { content: '🏆 '; }
  .stat-item:nth-child(2) .stat-label::before { content: '⚡ '; }

  .stat-label {
    font-size: 0;
  }

  .stat-value {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .game-stats {
    gap: 0.6rem;
    padding: 0.3rem 0.8rem;
  }

  .stat-value {
    font-size: 0.75rem;
  }
}

/* ============================================
   GAME CONTAINER (ARENA ROW)
   ============================================ */

.game-container {
  grid-area: mm-game;
  position: relative;

  width: 100%;
  height: 100%;      /* grid даёт 1fr — это и есть "игровое окно" */

  overflow: hidden;
  z-index: 5;
}

.game-container::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.0) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 6;
}

/* ============================================
   START / GAME-OVER SCREENS
   ============================================ */

.start-screen,
.game-over-screen {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.9);
  z-index: 50;
}

.start-content,
.game-over-content {
  text-align: center;
  padding: 1.5rem;
  max-width: 550px;
}

.rules-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  text-align: left;
  margin: 1rem auto;
  max-width: 450px;
}

.rule-item {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-card-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .start-content,
  .game-over-content {
    padding: 1rem;
  }

  .rules-compact {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-width: 100%;
  }

  .rule-item {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }

  .final-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-card-value {
    font-size: 2rem;
  }
}

/* ============================================
   GAME ARENA & LANES
   ============================================ */

.game-arena {
  position: relative;
  width: 100%;
  height: 100%;
}

.lanes {
  position: absolute;
  inset: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.3rem, 1.5vw, 1rem);
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
  max-width: 100vw;

  box-sizing: border-box;
}

.lane {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px dashed rgba(255, 255, 255, 0.15);
  border-right: 2px dashed rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
}

.lane.active {
  background: rgba(10, 132, 255, 0.25);
  border-left-color: rgba(10, 132, 255, 0.8);
  border-right-color: rgba(10, 132, 255, 0.8);
  box-shadow: inset 0 0 60px rgba(10, 132, 255, 0.5);
}

@media (max-width: 768px) {
  .lanes {
    padding-inline: 0.4rem;
    gap: 0.25rem;
  }
}

/* ============================================
   FALLING QUESTION
   ============================================ */

.falling-question {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%) translateY(0) translateZ(0);
  width: 90%;

  background: rgba(10, 14, 39, 0.95);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 1.5rem;

  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
              0 0 20px rgba(10, 132, 255, 0.3);

  transition: none;
  will-change: transform, opacity;
  z-index: 10;
}

.falling-question .question-text {
  margin-bottom: 0.5rem;
}

.falling-question .question-noun {
  color: var(--accent);
  font-weight: 700;
}

.falling-question.correct {
  animation: mm-correct-hit 0.5s ease-out forwards;
  border-color: #00ff64;
  background: rgba(0, 255, 100, 0.2);
}

@keyframes mm-correct-hit {
  0% {
    transform: translateX(-50%) scale(1);
    filter: brightness(1);
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    filter: brightness(2);
  }
  100% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
}

.falling-question.wrong {
  animation: mm-shake 0.3s ease-out;
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.2);
}

@keyframes mm-shake {
  0%, 100% { transform: translateX(-50%); }
  25% { transform: translateX(-60%); }
  75% { transform: translateX(-40%); }
}

.falling-question .hint {
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: rgba(255, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #ff6b6b;
}

@media (max-width: 768px) {
  .falling-question {
    width: 85%;
    font-size: 0.95rem;
    padding: 0.75rem;
    top: -140px;
  }

  .falling-question .hint {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
    margin-top: 0.4rem;
  }
}

@media (max-width: 480px) {
  .falling-question {
    width: 80%;
    font-size: 0.9rem;
    padding: 0.6rem;
    line-height: 1.25;
  }
}

/* ============================================
   POWER-UP ITEM
   ============================================ */

.power-up-item {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%) translateY(0) translateZ(0);
  width: 80px;
  height: 80px;

  background: rgba(255, 200, 0, 0.3);
  border: 3px solid rgba(255, 200, 0, 0.8);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;

  box-shadow: 0 0 30px rgba(255, 200, 0, 0.6);
  animation: mm-rotate-powerup 2s linear infinite;
  transition: none;
  will-change: transform, opacity;
  z-index: 15;
}

@keyframes mm-rotate-powerup {
  from { transform: translateX(-50%) translateY(0) rotate(0deg) translateZ(0); }
  to   { transform: translateX(-50%) translateY(0) rotate(360deg) translateZ(0); }
}

.power-up-item.collected {
  animation: mm-collect 0.5s ease-out forwards;
}

@keyframes mm-collect {
  0% { transform: translateX(-50%) scale(1); opacity: 1; }
  100% { transform: translateX(-50%) scale(2); opacity: 0; }
}

@media (max-width: 768px) {
  .power-up-item {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }
}

/* ============================================
   PLAYER (TIED TO GRID, NOT VH)
   ============================================ */

.player {
  position: absolute;
  /* Игрок опирается на высоту кнопок, но не через vh */
  bottom: calc(var(--mm-buttons-total) + 20px);
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  z-index: 25;

  transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.player[data-current-lane="0"] {
  left: calc(100% / 6 * 1 + clamp(0.5rem, 2vw, 1.5rem));
}

.player[data-current-lane="1"] {
  left: 50%;
}

.player[data-current-lane="2"] {
  left: calc(100% / 6 * 5 - clamp(0.5rem, 2vw, 1.5rem));
}

.player-character {
  font-size: 4rem;
  text-align: center;
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.8));
  animation: mm-idle 2s ease-in-out infinite;
}

@keyframes mm-idle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

.player.throwing .player-character {
  animation: mm-throw 0.3s ease-out;
}

@keyframes mm-throw {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2) translateY(-10px); }
  100% { transform: scale(1); }
}

.player.shielded {
  filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.8));
}

.player.shielded::before {
  content: '🛡️';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: mm-shield-pulse 1s ease-in-out infinite;
}

@keyframes mm-shield-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
  50%      { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

@media (max-width: 768px) {
  .player {
    width: 50px;
    height: 50px;
    bottom: calc(var(--mm-buttons-total) + 15px);
  }

  .player[data-current-lane="0"] {
    left: calc(100% / 6 * 1 + 0.4rem);
  }

  .player[data-current-lane="2"] {
    left: calc(100% / 6 * 5 - 0.4rem);
  }

  .player-character {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
  }

  .player.shielded::before {
    font-size: 1.5rem;
    top: -12px;
  }
}

@media (max-width: 480px) {
  .player {
    width: 45px;
    height: 45px;
    bottom: calc(var(--mm-buttons-total) + 12px);
  }

  .player-character {
    font-size: 2rem;
  }
}

/* ============================================
   STONE THROW ANIMATION
   ============================================ */

.stone-throw {
  position: absolute;
  bottom: calc(var(--mm-buttons-total) + 100px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  opacity: 0;
  pointer-events: none;
}

.stone-throw.active {
  animation: mm-stone-fly 0.4s ease-out;
}

@keyframes mm-stone-fly {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-300px) scale(0.5);
  }
}

/* ============================================
   ANSWER PANEL — GRID ROW (VISIBILITY-BASED)
   CRITICAL: Grid должен всегда видеть эту строку!
   ============================================ */

.answer-panel {
  grid-area: mm-buttons;
  position: relative;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: clamp(0.4rem, 1.5vw, 0.8rem);

  padding: clamp(0.6rem, 1.8vw, 1rem) clamp(0.8rem, 3vw, 1.5rem);
  padding-bottom: var(--mm-safe-bottom);

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.75) 60%,
    rgba(0, 0, 0, 0.95) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.6);

  min-height: var(--mm-buttons-total);
  z-index: 15;

  /* CRITICAL FIX: visibility вместо display */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

/* Когда JS удаляет style="display: none", показываем панель */
.answer-panel:not([style*="display: none"]) {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

/* Pill-style adaptive buttons */
.answer-btn {
  position: relative;
  padding: clamp(0.7rem, 1.6vw, 1rem) clamp(0.6rem, 2vw, 1.2rem);
  min-height: clamp(44px, 7vh, 64px);

  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.78rem, 2.3vw, 0.98rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.1;

  background: rgba(0, 0, 0, 0.4);
  border-radius: 999px;
  border: 2px solid transparent;
  color: #ffffff;

  cursor: pointer;
  touch-action: manipulation;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;

  transform: translateZ(0);
  will-change: transform, box-shadow, background, border-color;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.18s.ease-out,
              background 0.18s ease-out,
              border-color 0.18s ease-out;

  overflow: hidden;
  backdrop-filter: blur(12px);
  text-align: center;
}

.answer-btn::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease-out, transform 0.22s ease-out;
}

.answer-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
  z-index: -1;
}

/* Neon ring colors */
.answer-btn:nth-child(1) {
  border-color: rgba(0, 240, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(0, 240, 255, 0.15),
    0 0 var(--mm-glow-base) rgba(0, 240, 255, 0.55);
}

.answer-btn:nth-child(1)::after {
  background: radial-gradient(circle, rgba(0, 240, 255, 0.5), transparent 70%);
}

.answer-btn:nth-child(2) {
  border-color: rgba(255, 0, 255, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 0, 255, 0.15),
    0 0 var(--mm-glow-base) rgba(255, 0, 255, 0.55);
}

.answer-btn:nth-child(2)::after {
  background: radial-gradient(circle, rgba(255, 0, 255, 0.5), transparent 70%);
}

.answer-btn:nth-child(3) {
  border-color: rgba(255, 255, 0, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 0, 0.15),
    0 0 var(--mm-glow-base) rgba(255, 255, 0, 0.55);
}

.answer-btn:nth-child(3)::after {
  background: radial-gradient(circle, rgba(255, 255, 0, 0.5), transparent 70%);
}

.button-main-label {
  font-size: 0.9em;
}

.button-hint {
  font-size: 0.7em;
  opacity: 0.8;
  text-transform: none;
}

/* Hover (desktop) */
@media (hover: hover) and (pointer: fine) {
  .answer-btn:hover:not(:active) {
    transform: translateY(-3px) scale(1.03);
  }

  .answer-btn:hover::before {
    opacity: 1;
    transform: translate3d(8%, 8%, 0);
  }

  .answer-btn:nth-child(1):hover:not(:active) {
    box-shadow:
      0 0 0 1px rgba(0, 240, 255, 0.4),
      0 0 var(--mm-glow-hover) rgba(0, 240, 255, 0.85),
      0 16px 26px rgba(0, 0, 0, 0.65);
  }

  .answer-btn:nth-child(2):hover:not(:active) {
    box-shadow:
      0 0 0 1px rgba(255, 0, 255, 0.4),
      0 0 var(--mm-glow-hover) rgba(255, 0, 255, 0.85),
      0 16px 26px rgba(0, 0, 0, 0.65);
  }

  .answer-btn:nth-child(3):hover:not(:active) {
    box-shadow:
      0 0 0 1px rgba(255, 255, 0, 0.4),
      0 0 var(--mm-glow-hover) rgba(255, 255, 0, 0.9),
      0 16px 26px rgba(0, 0, 0, 0.65);
  }
}

.answer-btn:active {
  transform: scale(0.97) translateZ(0);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 10px 20px rgba(0, 0, 0, 0.7);
}

.answer-btn:active::before {
  opacity: 0.9;
}

.answer-btn:active::after {
  opacity: 0.2;
}

@media (prefers-reduced-motion: reduce) {
  .answer-btn,
  .answer-btn::before,
  .answer-btn::after {
    transition: none;
  }
}

.answer-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.9rem, 4vw, 2.4rem);
  height: clamp(1.9rem, 4vw, 2.4rem);

  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(0.9rem, 1.9vw, 1.1rem);
  font-weight: 600;
}

.answer-btn:nth-child(1) .answer-key {
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.answer-btn:nth-child(2) .answer-key {
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.answer-btn:nth-child(3) .answer-key {
  box-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

.answer-btn:nth-child(1) .answer-key::before { content: '1'; }
.answer-btn:nth-child(2) .answer-key::before { content: '2'; }
.answer-btn:nth-child(3) .answer-key::before { content: '3'; }

@media (max-width: 768px) {
  .answer-panel {
    grid-template-columns: 1fr;
  }

  .answer-btn {
    min-height: clamp(44px, 9vh, 58px);
  }
}

@media (max-width: 480px) {
  .answer-panel {
    padding-inline: clamp(0.6rem, 2vw, 0.9rem);
    gap: 0.5rem;
  }

  .answer-btn {
    font-size: clamp(0.72rem, 3.1vw, 0.82rem);
  }
}

.answer-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

/* ============================================
   SLOW MOTION POWER-UP
   ============================================ */

.game-arena.slow-motion .falling-question {
  animation-play-state: paused !important;
}

.game-arena.slow-motion::after {
  content: '⏱️ SLOW MOTION';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 200, 0, 0.8);
  text-shadow: 0 0 20px rgba(255, 200, 0, 0.6);

  pointer-events: none;
  z-index: 100;
}

@media (max-width: 768px) {
  .game-arena.slow-motion::after {
    font-size: 1.8rem;
  }
}
