/* =============================================
   HIGHER-OR-LOWER.CSS — Newspaper Edition
   QUIÉN COÑO FALTA
   ============================================= */

:root {
  --np-paper:    #f4ead2;
  --np-paper2:   #ede0c0;
  --np-paper3:   #e4d3aa;
  --np-ink:      #0f120e;
  --np-red:      #b5221e;
  --np-green:    #1f7a3d;
  --np-ink-mid:  rgba(15,18,14,0.68);
  --np-ink-soft: rgba(15,18,14,0.16);
  --np-white:    #ffffff;
  --shadow:      5px 5px 0 var(--np-ink);
  --shadow-soft: 3px 3px 0 var(--np-ink);

  /* Alias de las variables antiguas del tema oscuro/dorado -> paleta newspaper */
  --bg-dark:     var(--np-paper);
  --bg-purple:   var(--np-paper2);
  --neon-green:  var(--np-red);
  --neon-yellow: var(--np-red);
  --neon-gold:   var(--np-red);
  --text-light:  var(--np-ink);
}

/* ═══════════════════════════════════════════
   RESET + BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100%;
  background-color: var(--np-paper);
  background-image:
    radial-gradient(ellipse 115% 95% at 50% 50%,
      transparent 55%, rgba(15,18,14,0.07) 100%),
    linear-gradient(180deg,
      rgba(201,168,76,0.06) 0%, transparent 45%),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 159px,
      rgba(15,18,14,0.042) 159px, rgba(15,18,14,0.042) 160px
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  background-size: auto, auto, auto, 280px 280px;
  background-attachment: fixed;
  color: var(--np-ink);
  font-family: 'Rajdhani', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button { cursor: pointer; border: none; outline: none; background: none; font-family: 'Rajdhani', sans-serif; }
input  { outline: none; font-family: 'Rajdhani', sans-serif; }
a      { text-decoration: none; }

/* ═══════════════════════════════════════════
   COLUMNAS DE ANUNCIOS
   ═══════════════════════════════════════════ */
.ad-col {
  position: fixed;
  top: 0; bottom: 0; width: 72px;
  display: flex; flex-direction: column;
  z-index: 3;
  background: var(--np-paper);
}
.ad-col--left  { left: 0;  border-right: 1px solid var(--np-ink-soft); }
.ad-col--right { right: 0; border-left:  1px solid var(--np-ink-soft); }

.ad-strip {
  flex: 1; margin: 5px;
  border: 1px dashed var(--np-ink-soft);
  background: rgba(15,18,14,0.018);
  display: flex; align-items: center; justify-content: center;
  min-height: 80px;
}
.ad-strip--accent {
  border-color: rgba(181,34,30,0.20);
  background: rgba(181,34,30,0.022);
}
.ad-strip-label {
  font-family: 'DM Mono', monospace;
  font-size: 5.5px; letter-spacing: 0.16em;
  text-transform: uppercase; text-align: center;
  color: rgba(15,18,14,0.24); line-height: 1.7;
}
.ad-strip--accent .ad-strip-label { color: rgba(181,34,30,0.30); }

/* Empuja contenido en desktop para no quedar bajo las columnas */
@media (min-width: 760px) {
  .hol-mode-menu,
  .hol-game { margin-left: 72px; margin-right: 72px; }
  /* .hol-back-btn--ingame es position:fixed con top/left explícitos: ignora el margin-push, hay que desplazarlo a mano */
  .hol-back-btn--ingame { left: 88px; }
}
@media (max-width: 759px) {
  .ad-col { display: none; }
}

/* ═══════════════════════════════════════════
   BOTÓN VOLVER
   ═══════════════════════════════════════════ */
.hol-back-btn,
.back-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 160;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--np-ink); text-transform: uppercase; padding: 5px 10px;
  border: 1px solid var(--np-ink); background: var(--np-paper2);
  border-radius: 0; box-shadow: 2px 2px 0 var(--np-ink);
  transition: background 0.12s, color 0.12s;
  cursor: pointer;
}
.hol-back-btn:hover,
.back-btn:hover { background: var(--np-ink); color: var(--np-paper); }

/* Durante el juego necesita fixed para no depender del scroll */
.hol-back-btn--ingame {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 60;
}

/* ── JUEGO — oculto hasta que se seleccione un modo ── */
.hol-game {
  display: none;
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: transparent;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.hol-game.active {
  display: flex;
}

/* ── TOP BAR ── */
.hol-topbar {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px 10px;
  z-index: 50;
}

.hol-score-left,
.hol-score-right {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hol-score-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hol-score-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--np-ink-mid);
}

.hol-score-value {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--np-red);
  line-height: 1;
}

.hol-mode-name {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--np-ink-mid);
  text-transform: uppercase;
}

/* ── ARENA ── */
.hol-arena {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 900px;
  padding: 8px 16px 24px;
  flex: 1;
}

/* ── TARJETA DE JUGADOR ── */
.hol-panel {
  position: relative;
  flex: 1;
  max-width: 380px;
  /* Ratio Transfermarkt: 200×267 ≈ 3:4 */
  aspect-ratio: 3 / 4;
  border-radius: 0;
  overflow: hidden;
  border: 2px solid var(--np-ink);
  box-shadow: 5px 5px 0 var(--np-ink);
  transition: box-shadow 0.2s ease;
  background: var(--np-paper2);
}

.hol-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--np-paper2);
  transition: transform 0.6s ease;
  filter: sepia(12%) contrast(1.05) brightness(0.98);
}

.hol-panel:hover .hol-panel-bg {
  transform: scale(1.02);
}

.hol-panel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,18,14,0)    0%,
    rgba(15,18,14,0)    45%,
    rgba(15,18,14,0.55) 68%,
    rgba(15,18,14,0.92) 100%
  );
}

.hol-panel-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 16px 22px;
  z-index: 5;
  text-align: center;
}

.hol-player-club {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,234,210,0.75);
}

.hol-player-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  letter-spacing: 3px;
  color: var(--np-paper);
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hol-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(15,18,14,0.72);
  border: 1.5px solid var(--np-red);
  border-radius: 0;
  padding: 10px 20px 12px;
  backdrop-filter: blur(8px);
  min-width: 155px;
}

.hol-stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,234,210,0.65);
}

.hol-stat-value {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 1px;
  color: var(--np-paper);
  line-height: 1;
}

.hol-stat-reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(15,18,14,0.72);
  border: 1.5px solid var(--np-red);
  border-radius: 0;
  padding: 10px 20px 12px;
  backdrop-filter: blur(8px);
  min-width: 155px;
  margin-bottom: 12px;
  opacity: 0;
  transform: scale(0.85) translateY(6px);
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hol-stat-reveal.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── BOTONES DE RESPUESTA ── */
.hol-choices {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  max-width: 210px;
}

.hol-choice-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid var(--np-ink);
  border-radius: 0;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  overflow: hidden;
}

.hol-choice-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244,234,210,0.14);
  opacity: 0;
  transition: opacity 0.15s;
}

.hol-choice-btn:hover::after { opacity: 1; }
.hol-choice-btn:hover { transform: translateY(-1px); }
.hol-choice-btn:active { transform: scale(0.98); }

.hol-choice-btn--higher {
  background: var(--np-green);
  color: var(--np-paper);
  border-color: var(--np-green);
  box-shadow: 3px 3px 0 var(--np-ink);
}

.hol-choice-btn--equal {
  background: var(--np-paper2);
  color: var(--np-ink);
  box-shadow: 3px 3px 0 var(--np-ink-soft);
}

.hol-choice-btn--lower {
  background: var(--np-red);
  color: var(--np-paper);
  border-color: var(--np-red);
  box-shadow: 3px 3px 0 var(--np-ink);
}

.hol-btn-arrow {
  font-size: 0.7rem;
  opacity: 0.8;
}

.hol-choice-btn.disabled {
  pointer-events: none;
  opacity: 0.22;
  transform: scale(0.96);
}

.hol-choice-btn.correct-pick {
  opacity: 1 !important;
  transform: scale(1.04) !important;
  box-shadow: 0 0 0 3px var(--np-green), 3px 3px 0 var(--np-ink) !important;
}

.hol-choice-btn.wrong-pick {
  opacity: 1 !important;
  transform: scale(1.04) !important;
  box-shadow: 0 0 0 3px var(--np-red), 3px 3px 0 var(--np-ink) !important;
  background: var(--np-ink) !important;
  color: var(--np-red) !important;
}

/* ── VS BADGE ──
   Debe ser SIEMPRE visible sobre el papel crema: fondo tinta oscura,
   borde tinta, texto color papel y sombra dura roja de acento. */
.hol-vs {
  position: relative;
  z-index: 20;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--np-ink);
  border: 1.5px solid var(--np-ink);
  border-radius: 50%;
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--np-paper);
  box-shadow: 2px 2px 0 var(--np-red);
  margin: 0 -8px;
}

/* ── FEEDBACK FLASH ── */
.hol-panel.flash-correct::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 8;
  border-radius: 0;
  box-shadow: inset 0 0 0 3px var(--np-green);
  background: rgba(31,122,61,0.14);
  animation: flashFade 0.9s ease forwards;
  pointer-events: none;
}

.hol-panel.flash-wrong::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 8;
  border-radius: 0;
  box-shadow: inset 0 0 0 3px var(--np-red);
  background: rgba(181,34,30,0.10);
  animation: flashFade 0.9s ease forwards;
  pointer-events: none;
}

@keyframes flashFade {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

/* ── TRANSICIONES ── */
.hol-panel.sliding-out {
  animation: holSlideOut 0.4s ease-in forwards;
}
.hol-panel.sliding-in {
  animation: holSlideIn 0.4s ease-out forwards;
}

@keyframes holSlideOut {
  from { transform: translateX(0) scale(1); opacity: 1; }
  to   { transform: translateX(-20px) scale(0.97); opacity: 0; }
}

@keyframes holSlideIn {
  from { transform: translateX(20px) scale(0.97); opacity: 0; }
  to   { transform: translateX(0) scale(1); opacity: 1; }
}

/* ── LOADING ──
   CRITICAL: .hol-loading-title MUST keep 'Bebas Neue' font — only colors change. */
.hol-loading {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--np-paper);
}

.hol-loading.hidden { display: none; }

.hol-loading-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 6px;
  color: var(--np-red);
}

.hol-loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--np-ink-soft);
  border-top-color: var(--np-red);
  border-radius: 50%;
  animation: holSpin 0.8s linear infinite;
}

@keyframes holSpin {
  to { transform: rotate(360deg); }
}

/* ── GAME OVER OVERLAY ── */
.hol-gameover {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15,18,14,0.72);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.35s ease;
}

.hol-gameover.active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hol-gameover-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 34px 36px;
  max-width: 360px;
  width: 90%;
  background: var(--np-paper);
  border: 2px solid var(--np-ink);
  border-radius: 0;
  box-shadow: var(--shadow);
  animation: slideUp 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
  from { transform: translateY(28px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.hol-gameover-icon  { font-size: 2.8rem; filter: grayscale(100%); }

.hol-gameover-title {
  font-family: 'Anton', sans-serif;
  font-size: 2.1rem;
  letter-spacing: 6px;
  color: var(--np-ink);
}

.hol-gameover-score {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 900;
  font-size: 4.2rem;
  letter-spacing: 2px;
  color: var(--np-red);
  line-height: 1;
}

.hol-gameover-score-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--np-ink-mid);
  margin-top: -8px;
}

.hol-gameover-record {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--np-ink-mid);
}

.hol-gameover-record .new-record {
  color: var(--np-red);
  font-weight: 700;
}

.hol-play-again-btn {
  background: var(--np-ink);
  color: var(--np-paper);
  border: 2px solid var(--np-ink);
  padding: 13px 32px;
  border-radius: 0;
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 4px;
  cursor: pointer;
  transition: all 0.15s;
  margin-top: 4px;
  width: 100%;
  box-shadow: 3px 3px 0 var(--np-red);
  text-transform: uppercase;
}

.hol-play-again-btn:hover {
  background: var(--np-red);
  border-color: var(--np-red);
  box-shadow: 3px 3px 0 var(--np-ink);
}

.hol-change-mode-btn {
  background: transparent;
  color: var(--np-ink);
  border: 1.5px solid var(--np-ink);
  padding: 9px 22px;
  border-radius: 0;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  box-shadow: 2px 2px 0 var(--np-ink-soft);
  text-transform: uppercase;
}

.hol-change-mode-btn:hover {
  background: var(--np-ink-soft);
}

.hol-back-hub-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--np-ink-mid);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.hol-back-hub-link:hover { color: var(--np-ink); }


/* ============================================================ */
/* ── MENÚ DE SELECCIÓN DE MODO                                 */
/* ============================================================ */

.hol-mode-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  animation: fadeIn 0.25s ease;
  background-color: var(--np-paper);
  background-image:
    radial-gradient(ellipse 115% 95% at 50% 50%,
      transparent 55%, rgba(15,18,14,0.07) 100%),
    linear-gradient(180deg,
      rgba(201,168,76,0.06) 0%, transparent 45%),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 159px,
      rgba(15,18,14,0.042) 159px, rgba(15,18,14,0.042) 160px
    ),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  background-size: auto, auto, auto, 280px 280px;
  background-attachment: fixed;
}

.hol-mode-menu.active { display: flex; }

/* Botón ← HUB dentro del menú (única entrada que va al Hub) */
.hol-mode-menu .back-to-hub-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 160;
}

.hol-mode-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 56px 20px 48px;
  width: 100%;
  max-width: 560px;
}

/* ── CABECERA ── */
.hol-mode-header { text-align: center; }

.hol-mode-header-title {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  letter-spacing: -0.01em;
  color: var(--np-ink);
  line-height: 0.95;
}

.hol-mode-header-sub {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--np-ink-mid);
  margin-top: 8px;
  display: block;
}

/* ── LISTA DE MODOS — columna vertical, todas iguales ── */
.hol-mode-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.2vh, 12px);
  width: 100%;
}

.hol-mode-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--np-paper2);
  border: 2px solid var(--np-ink);
  border-radius: 0;
  padding: clamp(12px, 1.8vh, 20px) 20px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 3px 3px 0 var(--np-ink);
  animation: holCardIn 0.5s ease-out both;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hol-mode-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 60%, rgba(181,34,30,0.05));
  pointer-events: none;
}

.hol-mode-card:nth-child(1) { animation-delay: 0.05s; }
.hol-mode-card:nth-child(2) { animation-delay: 0.13s; }
.hol-mode-card:nth-child(3) { animation-delay: 0.21s; }
.hol-mode-card:nth-child(4) { animation-delay: 0.29s; }
.hol-mode-card:nth-child(5) { animation-delay: 0.37s; }
.hol-mode-card:nth-child(6) { animation-delay: 0.45s; }

@keyframes holCardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hol-mode-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--np-ink);
  background: var(--np-paper3);
}

.hol-mode-card:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--np-ink); }

/* ── LOGO DE LIGA ── */
.hol-league-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  padding: 4px;
  background: rgba(244,234,210,0.92);
  border: 1px solid var(--np-ink-soft);
}

.hol-league-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

/* ── TEXTOS DE LA CARD ── */
.hol-mode-texts {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.hol-mode-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  letter-spacing: 1px;
  color: var(--np-ink);
  line-height: 1.15;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.hol-mode-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  font-weight: 600;
  color: var(--np-ink-mid);
  line-height: 1.3;
}

.hol-mode-record {
  font-family: 'DM Mono', monospace;
  font-size: clamp(0.65rem, 1.1vw, 0.76rem);
  font-weight: 500;
  color: var(--np-red);
  font-style: italic;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 80px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--np-ink); padding: 8px 18px;
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.14em;
  color: var(--np-paper); text-transform: uppercase;
  z-index: 1000; opacity: 0; transition: all 0.22s ease;
  pointer-events: none; white-space: nowrap; box-shadow: 3px 3px 0 var(--np-red);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error   { background: var(--np-red); box-shadow: 3px 3px 0 var(--np-ink); }
.toast.warning { background: var(--np-paper3); color: var(--np-ink); box-shadow: 3px 3px 0 var(--np-ink); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .hol-arena {
    flex-direction: column;
    align-items: center;
    padding: 4px 12px 20px;
  }

  .hol-panel {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 3 / 4;
  }

  .hol-panel--left  { border-radius: 0; }
  .hol-panel--right { border-radius: 0; }

  .hol-vs {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
    margin: -9px 0;
    z-index: 25;
  }

  .hol-player-name { font-size: 1.15rem; }
  .hol-stat-value  { font-size: 1.5rem; }
  .hol-choices { max-width: 190px; gap: 5px; }

  .hol-choice-btn {
    padding: 9px 10px;
    font-size: 0.9rem;
  }

  .hol-panel-content { padding: 12px 10px 14px; }

  .hol-stat-block,
  .hol-stat-reveal {
    padding: 7px 12px 9px;
    min-width: 120px;
  }

  .hol-topbar { padding: 12px 14px 6px; }

  .hol-mode-header-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hol-mode-menu-inner { gap: 16px; padding: 44px 16px 36px; }
}

@media (max-width: 400px) {
  .hol-choice-btn {
    font-size: 0.82rem;
    letter-spacing: 2px;
  }
}
