/* ---------- CAMPAÑA (estilo 7a0) ---------- */
.campana-header {
  text-align: center;
  padding: 24px 20px 16px;
  max-width: 800px;
  margin: 0 auto;
}
.campana-seed {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.campana-titulo {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.campana-controls {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
}
.campana-btn {
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1.5px solid rgba(117,170,219,0.35);
  background: var(--bg-surface);
  color: var(--text-bright);
  cursor: pointer;
  transition: all 0.15s ease;
}
.campana-btn:hover {
  background: var(--celeste-light);
  border-color: var(--celeste);
  color: var(--azul);
}
.campana-btn.active {
  background: var(--azul);
  color: #fff;
  border-color: var(--azul);
  box-shadow: 0 2px 8px rgba(0,56,168,0.28);
}

/* Selector de velocidad (segmented control) */
.csp-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.csp-label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.csp-group {
  display: inline-flex;
  align-items: stretch;
  gap: 3px;
  padding: 3px;
  background: var(--bg-secondary);
  border: 1px solid rgba(117,170,219,0.3);
  border-radius: var(--radius-full);
}
.csp-btn {
  border-radius: var(--radius-full);
  padding: 5px 13px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: transparent;
  transition: all 0.15s ease;
}
.csp-btn:hover { color: var(--azul); background: rgba(117,170,219,0.25); }
.csp-btn.active {
  background: var(--azul);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,56,168,0.3);
}
.campana-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.campana-list:has(.mi-card) { max-width: 940px; }

/* Layout dual: partido principal + sidebar otros resultados */
.campana-dual {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.campana-main {
  flex: 1;
  min-width: 0;
}
.campana-sidebar {
  border-radius: 14px;
  flex: 0 0 230px;
  background: var(--bg-surface);
  border: 1px solid rgba(117,170,219,0.2);
  box-shadow: 0 4px 20px rgba(0,56,168,0.09);
  padding: 10px;
}
.campana-sidebar-title {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--azul);
  opacity: 0.7;
  margin-bottom: 7px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(117,170,219,0.2);
}
.campana-sb-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.63rem;
  color: var(--text-dim);
}
.campana-sb-row:last-child { border-bottom: none; }
.campana-sb-local  { text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.campana-sb-visit  { text-align: left;  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.campana-sb-score  {
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--text-bright);
  padding: 0 4px;
  white-space: nowrap;
}

/* Banner eliminación */
.campana-eliminado {
  background: rgba(212,59,59,0.08);
  border: 2px solid var(--red);
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  width: 100%;
}

@media (max-width: 600px) {
  .campana-dual { flex-direction: column; }
  .campana-sidebar { flex: 0 0 auto; width: 100%; box-sizing: border-box; }
  .campana-header { padding: 16px 12px 10px; }
  .campana-list { padding: 0 10px 32px; }
  .campana-hist-row {
    grid-template-columns: 52px 1fr auto 16px;
    font-size: 0.68rem;
    padding: 5px 6px;
  }
  .campana-hist-goles { font-size: 0.65rem; padding: 3px 6px; }
  .campana-resumen-card { padding: 12px 14px; margin: 12px 0 0; }
  .crc-record { font-size: 2rem; }
  .crc-stats { gap: 16px; }
  .mc-record { font-size: 2.6rem; }
  .mc-stats-row { gap: 10px; padding: 8px 0; }
  .mc-stat-val { font-size: 1.2rem; }
}

@media (max-width: 760px) {
  .mi-card { grid-template-columns: 1fr; }
  .mc-card-hero { border-right: none; border-bottom: 1px solid rgba(117,170,219,0.2); padding: 20px 16px; }
  .csp-wrap { flex-direction: column; gap: 5px; }
}

/* ══════════════════════════════════════
   HISTORIAL DE CAMPAÑA (estilo 7a0)
   ══════════════════════════════════════ */
.campana-hist-row {
  display: grid;
  grid-template-columns: 68px 1fr auto 20px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.84rem;
  background: var(--bg-surface);
  border-radius: 10px 10px 0 0;
  border: 1px solid rgba(117,170,219,0.2);
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(0,56,168,0.06);
}
.campana-hist-row.win  { border-left: 3px solid var(--green, #27ae60); }
.campana-hist-row.loss { border-left: 3px solid #c84040; }
.campana-hist-row.draw { border-left: 3px solid var(--text-dim); }
.campana-hist-fase {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  white-space: nowrap;
}
.campana-hist-rival {
  font-weight: 600;
  color: var(--text-bright);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.campana-hist-score {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-bright);
  white-space: nowrap;
}
.campana-hist-ind {
  font-weight: 800;
  font-size: 0.92rem;
  text-align: right;
}
.campana-hist-ind.win  { color: var(--green, #27ae60); }
.campana-hist-ind.loss { color: #e05050; }
.campana-hist-ind.draw { color: var(--text-dim); }
.campana-hist-goles {
  font-size: 0.72rem;
  color: var(--text-dim);
  padding: 5px 12px 9px;
  background: var(--bg-surface);
  border: 1px solid rgba(117,170,219,0.2);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 8px rgba(0,56,168,0.06);
  margin-bottom: 6px;
  line-height: 1.5;
}
.campana-hist-goles .recibido { color: var(--red-dark, #c0392b); }

/* Tarjeta de partido EN VIVO compacta */
.campana-match-live {
  border-radius: 14px;
  background: var(--bg-surface);
  border: 1.5px solid rgba(117,170,219,0.35);
  box-shadow: 0 4px 16px rgba(0,56,168,0.14), 0 0 0 3px rgba(0,56,168,0.06);
  padding: 10px 14px;
  margin-top: 8px;
}
.cml-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cml-fase {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}
.cml-min {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--celeste);
  letter-spacing: 0.08em;
}
.cml-teams {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.cml-team-name {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-bright);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cml-local  { text-align: right; }
.cml-visita { text-align: left; }
.cml-score-box {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--azul);
  color: #fff;
  padding: 4px 10px;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,56,168,0.35);
}
.cml-sn {
  font-size: 1.2rem;
  font-weight: 800;
  min-width: 18px;
  text-align: center;
  line-height: 1;
}
.cml-dash {
  font-size: 1rem;
  opacity: 0.5;
}
.cml-feed {
  border-top: 1px solid var(--bg-secondary);
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-height: 100px;
  overflow: hidden;
}

/* Sidebar de grupo durante fase de grupos */
.campana-sb-pos-row {
  display: grid;
  grid-template-columns: 18px 1fr 28px;
  gap: 4px;
  padding: 3px 0;
  font-size: 0.65rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--text);
}
.campana-sb-pos-row:last-child { border-bottom: none; }
.campana-sb-pos-row.human-pos {
  font-weight: 700;
  color: var(--azul);
}
.sb-pos-n { color: var(--text-dim); font-weight: 600; }
.sb-pos-t { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sb-pos-p { text-align: right; font-weight: 700; }

/* Match card estilo 7a0 */
.match-card {
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid rgba(117,170,219,0.2);
  box-shadow: 0 2px 10px rgba(0,56,168,0.07);
  margin-bottom: 6px;
  overflow: hidden;
}
.match-card:last-child { margin-bottom: 0; }
.match-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: var(--bg-surface-2);
  border-bottom: 1px solid rgba(117,170,219,0.15);
}
.match-card-fase {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.match-card-body {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  gap: 10px;
}
.match-card-rival {
  flex: 1;
}
.match-card-rival-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
}
.match-card-score {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  min-width: 55px;
  text-align: center;
}
.match-card-score.win { color: var(--green); }
.match-card-score.loss { color: #e05050; }
.match-card-score.draw { color: var(--text-dim); }
.match-card-score.pending { color: var(--text-muted); font-size: 1.2rem; }
.match-card-goles {
  padding: 0 14px 10px;
  font-size: 0.7rem;
  color: var(--text-dim);
}
.match-card-goles span { font-weight: 600; color: var(--text); }
.match-card-check {
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}
.match-card-x {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Expandible */
.match-card-expand {
  display: none;
  border-top: 1px solid rgba(45,138,78,0.25);
  padding: 12px 14px;
  background: var(--bg-surface-2);
}
.match-card-expand.open { display: block; }
.match-card-expand-title {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.match-card-expand-gol {
  font-size: 0.78rem;
  padding: 2px 0;
  color: var(--text);
}
.match-card-expand-gol .minuto {
  font-weight: 700;
  color: var(--black);
  margin-right: 6px;
}

/* Tabla de clasificación en expandible */
.clasificacion-mini {
  border: 1px solid rgba(117,170,219,0.2);
  border-radius: 8px;
  background: var(--bg-surface);
  overflow: hidden;
}
.clasificacion-mini-row {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.clasificacion-mini-row:last-child { border: none; }
.clasificacion-mini-pos {
  font-family: var(--font-title);
  font-weight: 700;
  width: 22px;
  color: var(--text-muted);
}
.clasificacion-mini-team {
  flex: 1;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  font-size: 0.68rem;
}
.clasificacion-mini-pts {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--black);
  margin-right: 6px;
  font-size: 0.72rem;
}
.clasificacion-mini-dg {
  font-size: 0.68rem;
  color: var(--text-dim);
  min-width: 24px;
  text-align: right;
}
.clasificacion-mini-row.first {
  background: rgba(45, 138, 78, 0.08);
}

/* Penales */
.penales-container {
  padding: 10px 14px;
  border-top: 2px solid var(--gold);
  background: var(--bg-secondary);
}
.penales-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.penales-row {
  display: flex;
  gap: 4px;
  margin-bottom: 3px;
}
.penales-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--green);
}
.penales-dot.miss {
  border-color: var(--red);
  color: var(--red);
}
.penales-dot.pending {
  border-color: var(--text-muted);
  color: var(--text-muted);
}

/* Resumen final */
.resumen-final {
  max-width: 550px;
  margin: 20px auto;
  background: var(--black);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.resumen-score {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 700;
  color: var(--bg-primary);
  line-height: 1;
  text-shadow: 3px 3px 0px var(--gold);
}
.resumen-stats {
  flex: 1;
}
.resumen-victorias {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.resumen-stat-row {
  display: flex;
  gap: 20px;
}
.resumen-stat {
  text-align: center;
}
.resumen-stat-val {
  display: block;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.resumen-stat-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.resumen-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 0 16px 32px;
}


/* ══════════════════════════════════════
   SIMULACIÓN LIVE (animada, modo offline)
   ══════════════════════════════════════ */
.match-live {
  border-radius: 16px;
  background: var(--bg-surface);
  border: 1px solid rgba(117,170,219,0.2);
  box-shadow: 0 6px 24px rgba(0,56,168,0.1);
  padding: 20px 24px;
  max-width: 540px;
}
.match-live-meta {
  text-align: center;
  margin-bottom: 14px;
}
.ml-fase {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.match-live-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ml-team {
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  flex: 1;
  color: var(--text-bright);
}
.ml-team:first-child { text-align: right; }
.ml-team:last-child  { text-align: left; }
.ml-scores {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  background: var(--azul);
  color: #fff;
  padding: 6px 14px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,56,168,0.4);
}
.ml-score-n {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  min-width: 28px;
  text-align: center;
}
.ml-dash {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.6;
}
.ml-minuto {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--celeste);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  min-height: 18px;
}
.match-live-feed {
  border-top: 1px solid var(--bg-secondary);
  padding-top: 10px;
  min-height: 32px;
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ml-event {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  padding: 4px 0;
  animation: mlEventSlide 0.35s ease;
}
@keyframes mlEventSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.ml-event.gol .ml-min { color: var(--azul); }
.ml-event.rival .ml-min { color: var(--text-dim); }
.ml-min {
  font-size: 0.68rem;
  font-weight: 700;
  width: 32px;
  flex-shrink: 0;
}
.ml-icon { font-size: 0.85rem; flex-shrink: 0; }
.ml-gname { font-weight: 700; flex: 1; color: var(--text-bright); }
.ml-gteam { font-size: 0.68rem; color: var(--text-dim); flex-shrink: 0; }
.ml-live-fin {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--bg-secondary);
}
.ml-live-acciones {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ══════════════════════════════════════
   PENALES ANIMADOS
   ══════════════════════════════════════ */
.ml-pen-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px solid var(--azul);
}
.ml-pen-title {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--azul);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ml-pen-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ml-pen-team-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-bright);
  min-width: 52px;
  text-align: center;
}
.ml-pen-dots { display: flex; gap: 2px; min-width: 50px; }
.ml-pen-dots:first-of-type { justify-content: flex-end; }
.ml-pen-dot {
  font-size: 0.78rem;
  font-weight: 700;
  animation: mlEventSlide 0.2s ease;
}
.ml-pen-dot.ok   { color: var(--green); }
.ml-pen-dot.miss { color: var(--red); }
.ml-pen-score {
  font-size: 1.3rem;
  font-weight: 800;
  min-width: 18px;
  text-align: center;
  color: var(--text-bright);
}
.ml-pen-vs {
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0 2px;
}
.ml-muerte-subita {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 7px 0 4px;
  animation: mlEventSlide 0.3s ease;
}


/* ─────────────────────────────────────────────
   CAMPAÑA — Resumen card (después de eliminación)
   ───────────────────────────────────────────── */
.campana-resumen-card {
  border-radius: 16px;
  border: 1px solid rgba(117,170,219,0.2);
  box-shadow: 0 6px 24px rgba(0,56,168,0.1);
  background: var(--bg-surface);
  padding: 16px 20px;
  margin: 16px auto 0;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.crc-record {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
  line-height: 1;
}
.crc-dash { color: var(--text-muted); margin: 0 4px; }
.crc-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.crc-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.crc-val { font-size: 1.3rem; font-weight: 800; color: var(--black); font-family: var(--font-title); }
.crc-lbl { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ─────────────────────────────────────────────
   VER MI CARD — card view (reemplaza la lista)
   ───────────────────────────────────────────── */
.mi-card {
  border-radius: 16px;
  border: 1px solid rgba(117,170,219,0.2);
  box-shadow: 0 6px 24px rgba(0,56,168,0.1);
  background: var(--bg-surface);
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  overflow: hidden;
}
.mc-card-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 26px 20px;
  background: linear-gradient(180deg, rgba(0,56,168,0.06), rgba(117,170,219,0.1));
  border-right: 1px solid rgba(117,170,219,0.2);
}
.mc-card-body {
  display: flex;
  flex-direction: column;
  padding: 18px 20px 14px;
  min-width: 0;
}
.mc-status {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 2px solid currentColor;
  border-radius: var(--radius-sm);
}
.mc-status.campeon  { color: var(--gold); border-color: var(--gold); background: rgba(196,154,42,0.1); }
.mc-status.eliminado { color: var(--text-dim); }
.mc-record-grid {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.mc-rec { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.mc-rec-num {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}
.mc-rec-num.win  { color: var(--green); }
.mc-rec-num.loss { color: var(--red); }
.mc-rec-lbl {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* compat: record viejo W—L */
.mc-record {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mc-record-dash { color: var(--text-muted); font-size: 2rem; }
.mc-record-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mc-stats-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(117,170,219,0.25);
  border-bottom: 1px solid rgba(117,170,219,0.25);
  padding: 12px 0;
  width: 100%;
}
.mc-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mc-stat-val { font-size: 1.4rem; font-weight: 800; color: var(--black); font-family: var(--font-title); }
.mc-stat-lbl { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.mc-jugadores {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--bg-secondary);
}
.mc-jug-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-bottom: 1px solid var(--bg-secondary);
  font-size: 0.86rem;
}
.mc-jug-row:last-child { border-bottom: none; }
.mc-jug-row.figura { background: rgba(88,166,255,0.07); }
.mc-jug-num  { font-size: 0.68rem; color: var(--text-muted); min-width: 18px; text-align: right; }
.mc-jug-pos  { font-size: 0.64rem; font-weight: 800; text-transform: uppercase; color: var(--azul); min-width: 32px; }
.mc-jug-name { flex: 1; font-weight: 600; color: var(--black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mc-figura-star { color: var(--gold); font-size: 0.8rem; margin-left: 2px; }
.mc-jug-club { font-size: 0.7rem; color: var(--text-muted); white-space: nowrap; }
.mc-jug-rating { font-weight: 800; font-size: 0.88rem; color: var(--azul); min-width: 26px; text-align: right; }
.mc-section-title {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 10px 0 4px;
}
.mc-goleadores {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--bg-secondary);
  margin-bottom: 4px;
}
.mc-gol-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-bottom: 1px solid var(--bg-secondary);
  font-size: 0.84rem;
}
.mc-gol-row:last-child { border-bottom: none; }
.mc-gol-pos  { font-size: 0.65rem; color: var(--text-muted); min-width: 14px; text-align: right; }
.mc-gol-name { flex: 1; font-weight: 600; color: var(--black); }
.mc-gol-count { font-weight: 700; color: var(--azul); font-size: 0.8rem; }
.mc-footer {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.mc-actions {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

/* ── Mobile: controles de modo y velocidad sin desborde ── */
@media (max-width: 600px) {
  .campana-controls {
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 10px;
  }
  .csp-wrap {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .csp-btn { padding: 5px 10px; font-size: 0.66rem; }
  .campana-btn { padding: 6px 10px; font-size: 0.7rem; }
}
