/* ---------- REVEAL (partido a partido) ---------- */
.reveal-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 20px 16px;
}
.reveal-card {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 0 20px;
}
.reveal-match {
  border-radius: var(--radius);
  background: var(--bg-surface);
  border: 2px solid var(--black);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: revealPop 0.3s ease;
}
@keyframes revealPop {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}
.reveal-match-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: var(--bg-secondary);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.reveal-match-body {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
}
.reveal-team {
  flex: 1;
  text-align: center;
}
.reveal-team-nombre {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
}
.reveal-team-year {
  font-size: 0.65rem;
  color: var(--text-dim);
}
.reveal-team.ganador .reveal-team-nombre { color: var(--green); }
.reveal-team.perdedor { opacity: 0.4; }
.reveal-score {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  min-width: 60px;
}
.reveal-score .reveal-gol { padding: 0 3px; }
.reveal-score .reveal-separador { color: var(--text-muted); font-size: 1.6rem; }
.reveal-match-penales {
  text-align: center;
  padding: 0 16px 12px;
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
}
.reveal-goleadores {
  border-top: 2px solid var(--black);
  padding: 10px 14px;
}
.reveal-goleadores-title {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-weight: 700;
}
.reveal-gol-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  font-size: 0.78rem;
}
.reveal-gol-dot {
  width: 5px; height: 5px;
}
.reveal-gol-nombre { color: var(--black); font-weight: 600; flex: 1; }
.reveal-gol-minuto { color: var(--text-dim); font-size: 0.7rem; }
.reveal-historial {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px 32px;
}
.reveal-historial-title {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-weight: 700;
}
.reveal-hist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  background: var(--bg-surface);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 3px;
  font-size: 0.75rem;
  opacity: 0.5;
}
.reveal-hist-local { flex: 1; color: var(--text); font-weight: 600; text-align: right; }
.reveal-hist-marcador { font-family: var(--font-title); font-weight: 700; color: var(--black); min-width: 36px; text-align: center; }
.reveal-hist-visit { flex: 1; color: var(--text); font-weight: 600; }


/* Badges inline */
.equipo-cell-inner {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bracket-team-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
.bracket-team { padding: 3px 6px; }
.reveal-team-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

/* Toast */
.toast {
  border-radius: var(--radius-full);
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  color: var(--bg-primary);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

