/* ============================================================
   Placarone — página de jogo
   ============================================================ */

.jogo-wrap { padding-bottom: 40px; }

/* ── Hero do jogo ──────────────────────────────────────────── */
.jogo-hero {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 16px;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
}
.jogo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,250,154,0.06), transparent 60%);
  pointer-events: none;
}
.jogo-hero-inner { position: relative; z-index: 1; }

.hero-liga {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-mute);
}
.hero-liga img { width: 16px; height: 16px; object-fit: contain; }
.hero-liga .rodada { color: var(--text-soft); }

.hero-confronto {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.hero-time {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-time img { width: 64px; height: 64px; object-fit: contain; }
.hero-time .nome {
  font-size: 16px; font-weight: 700; text-align: center;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.hero-placar {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; min-width: 140px;
}
.hero-placar .status {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-mute);
}
.hero-placar .status.live {
  color: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero-placar .placar-grande {
  font-family: 'JetBrains Mono', monospace;
  font-size: 42px; font-weight: 700; color: var(--neon);
  line-height: 1;
}
.hero-placar .placar-grande.vs {
  font-size: 22px; color: var(--text-soft); letter-spacing: 2px;
}
.hero-placar .horario {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--text-mute);
}

.hero-meta {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  border-top: 1px solid var(--border-soft);
  padding-top: 12px;
  font-size: 12px; color: var(--text-mute);
}
.hero-meta .item { display: flex; align-items: center; gap: 6px; }
.hero-meta .item .label { color: var(--text-soft); }
.hero-meta .item .value { color: var(--text); font-weight: 600; }

@media (max-width: 600px) {
  .hero-time img { width: 48px; height: 48px; }
  .hero-time .nome { font-size: 13px; }
  .hero-placar .placar-grande { font-size: 32px; }
  .hero-placar { min-width: 100px; }
  .hero-meta { flex-direction: column; gap: 6px; align-items: flex-start; }
}

/* ── Tabs ──────────────────────────────────────────────────── */
.tabs {
  display: flex; gap: 2px;
  margin: 16px 0 12px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs .tab {
  font-family: inherit;
  flex-shrink: 0;
  padding: 12px 16px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-mute);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.tabs .tab:hover { color: var(--text); }
.tabs .tab.active {
  color: var(--neon);
  border-bottom-color: var(--neon);
}

/* ── Painel ────────────────────────────────────────────────── */
.panel { display: none; }
.panel.active { display: block; }
.panel .loading { padding: 40px 16px; text-align: center; color: var(--text-mute); }

/* ── Eventos timeline ──────────────────────────────────────── */
.eventos-timeline {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
}
/* sub-abas de Eventos (Lance a lance / Scouts) */
.ev-subtabs { display: flex; gap: 8px; margin-bottom: 12px; }
.ev-subtab { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--bg-elev-2); background: var(--bg-elev); color: var(--text-mute); font-weight: 700; font-size: 13px; font-family: inherit; cursor: pointer; }
.ev-subtab.active { border-color: var(--neon); color: var(--neon); background: rgba(0,250,154,0.08); }

.evento-row {
  display: grid; grid-template-columns: 40px 22px 1fr; gap: 9px;
  padding: 9px 0; border-bottom: 1px solid var(--border-soft); align-items: flex-start;
}
.evento-row .ev-teamlogo { width: 22px; height: 22px; object-fit: contain; margin-top: 1px; }
.evento-row:last-child { border-bottom: none; }
.evento-row .minuto {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
  color: var(--text-mute); text-align: center; padding-top: 1px;
}
.ev-lines { display: flex; flex-direction: column; gap: 4px; }
.ev-line { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.ev-foto { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; background: var(--bg-elev-2); flex: 0 0 auto; }
.ev-ic { width: 18px; height: 18px; flex: 0 0 auto; }
.ev-ic.home, .ev-ic.assist.home { color: var(--neon); }
.ev-ic.away, .ev-ic.assist.away { color: var(--blue); }
.ev-ic.own { color: var(--red); }
.ev-ic.in { color: var(--neon); }
.ev-ic.out { color: var(--red); }
.ev-ic.card-am { color: var(--yellow); }
.ev-ic.card-vm { color: var(--red); }
.ev-ic.dot { color: var(--text-mute); }
.ev-ic.miss { color: var(--red); }
.ev-ic.var { color: var(--text-soft); }
.ev-name { font-weight: 600; }
.ev-name.branco { color: #fff; }
.ev-tag { font-size: 11px; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.5px; }

/* Scouts (estatísticas por jogador) */
.scouts-time { margin-bottom: 14px; border: 1px solid var(--bg-elev-2); border-radius: 10px; overflow: hidden; }
/* cabeçalho clicável (recolhe/expande), com cor do time */
.scouts-head { width: 100%; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; padding: 11px 14px; background: var(--bg-elev); border: none; border-left: 4px solid var(--bg-elev-3); cursor: pointer; font-family: inherit; color: var(--text); }
.scouts-time.home .scouts-head { border-left-color: var(--neon); }
.scouts-time.away .scouts-head { border-left-color: var(--blue); }
.scouts-head img { width: 22px; height: 22px; object-fit: contain; flex: 0 0 auto; }
.scouts-head .sc-team { flex: 1; text-align: left; }
.scouts-head .sc-count { font-size: 11px; color: var(--text-mute); background: var(--bg-elev-2); border-radius: 999px; padding: 2px 9px; font-family: 'JetBrains Mono', monospace; }
.scouts-head .sc-arrow { width: 18px; height: 18px; color: var(--text-mute); transition: transform .18s; }
.scouts-time.collapsed .scouts-head .sc-arrow { transform: rotate(-90deg); }
.scouts-time.collapsed .scouts-body { display: none; }
.tbl-scouts { width: 100%; border-collapse: collapse; font-size: 13px; white-space: nowrap; }
.tbl-scouts th, .tbl-scouts td { padding: 7px 8px; text-align: center; }
.tbl-scouts thead th { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-mute); font-weight: 700; border-bottom: 1px solid var(--bg-elev-2); position: sticky; top: 0; background: var(--bg-elev); }
.tbl-scouts tbody tr { cursor: pointer; }
.tbl-scouts tbody tr:nth-child(even) { background: rgba(255,255,255,0.025); } /* zebra sutil */
.tbl-scouts tbody tr:hover { background: var(--bg-elev-2); }
.tbl-scouts .sc-nome { text-align: left; min-width: 200px; white-space: nowrap; }
.tbl-scouts .sc-foto { display: inline-block; width: 24px; height: 24px; border-radius: 50%; object-fit: cover; background: var(--bg-elev-2); vertical-align: middle; margin-right: 8px; }
.tbl-scouts .sc-pname { color: #fff; font-weight: 600; vertical-align: middle; }
.tbl-scouts .sc-nome i { font-style: normal; color: var(--text-soft); font-size: 10px; margin-left: 6px; text-transform: uppercase; font-weight: 700; }
.tbl-scouts .sc-rt { font-weight: 800; color: var(--neon); font-family: 'JetBrains Mono', monospace; }

/* botão (?) ao lado de Scouts + legenda das siglas */
.ev-subtabs { align-items: center; }
.ev-help { width: 28px; height: 28px; flex: 0 0 auto; border-radius: 50%; border: 1px solid var(--bg-elev-2); background: var(--bg-elev); color: var(--text-mute); font-weight: 800; font-family: inherit; cursor: pointer; }
.ev-help:hover { color: var(--neon); border-color: var(--neon); }
.sc-leg-grid[hidden] { display: none; }
.sc-leg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 16px; margin-bottom: 14px; padding: 12px 14px; background: var(--bg-elev); border: 1px solid var(--bg-elev-2); border-radius: 10px; font-size: 12.5px; color: var(--text-mute); }
.sc-leg-grid b { color: var(--neon); font-family: 'JetBrains Mono', monospace; margin-right: 6px; display: inline-block; min-width: 22px; }
@media (min-width: 560px) { .sc-leg-grid { grid-template-columns: repeat(3, 1fr); } }

/* logo do time em cada linha dos scouts */
.tbl-scouts .sc-teamlogo { display: inline-block; width: 16px; height: 16px; object-fit: contain; vertical-align: middle; margin-right: 7px; border-radius: 3px; }

/* bloco de reservas (não entraram) no fim de cada time */
.sc-reservas { padding: 12px 14px; border-top: 1px solid var(--bg-elev-2); }
.sc-reservas-tit { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-mute); font-weight: 700; margin-bottom: 10px; }
.sc-reservas-list { display: flex; flex-wrap: wrap; gap: 8px; }
.sc-res-chip { display: inline-flex; align-items: center; gap: 7px; background: var(--bg-elev-2); border-radius: 999px; padding: 4px 12px 4px 4px; font-size: 12.5px; font-weight: 600; cursor: pointer; }
.sc-res-chip:hover { background: var(--bg-elev-3); }
.sc-res-chip img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; background: var(--bg-elev-3); }
.sc-res-chip i { font-style: normal; color: var(--text-soft); font-size: 10px; font-weight: 700; }

/* clique em jogador (cursor + hover) na timeline de eventos */
.ev-line[data-player-id] { cursor: pointer; border-radius: 6px; }
.ev-line[data-player-id]:hover { background: var(--bg-elev-2); }

/* ── Stats ─────────────────────────────────────────────────── */
.stats-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
}
.stat-row {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}
.stat-row:last-child { border-bottom: none; }
.stat-row .label-stat {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-mute);
  margin-bottom: -4px;
}
.stat-row .valor {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px; font-weight: 700;
  text-align: center;
}
.stat-row .valor.home { color: var(--neon); text-align: right; }
.stat-row .valor.away { color: var(--blue); text-align: left; }
.stat-row .barra {
  height: 6px;
  background: var(--bg-elev-2);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.stat-row .barra .b-home {
  position: absolute;
  right: 50%; top: 0; bottom: 0;
  background: var(--neon);
}
.stat-row .barra .b-away {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  background: var(--blue);
}

/* ── Lineups ───────────────────────────────────────────────── */
.lineups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lineup-time {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
}
.lineup-time h3 {
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.lineup-time h3 img { width: 22px; height: 22px; }
.lineup-time .formacao {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--text-mute);
  margin-bottom: 12px;
}
.lineup-time ul { list-style: none; }
.lineup-time li {
  padding: 6px 0;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 8px;
  font-size: 13px;
  border-bottom: 1px solid var(--border-soft);
  align-items: center;
}
.lineup-time li:last-child { border-bottom: none; }
.lineup-time li .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--text-mute);
  text-align: center;
}
.lineup-time li .pos {
  font-size: 10px; color: var(--text-soft);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.lineup-time .reservas-title {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-mute);
  margin: 14px 0 6px;
}

@media (max-width: 700px) {
  .lineups-grid { grid-template-columns: 1fr; }
}

/* ── H2H ───────────────────────────────────────────────────── */
.h2h-resumo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.h2h-stat {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  text-align: center;
}
.h2h-stat .grande {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px; font-weight: 700;
  margin-bottom: 4px;
}
.h2h-stat.home .grande { color: var(--neon); }
.h2h-stat.empate .grande { color: var(--yellow); }
.h2h-stat.away .grande { color: var(--blue); }
.h2h-stat .label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-mute);
}

.h2h-list {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.h2h-row {
  display: grid;
  grid-template-columns: 70px 1fr 60px 1fr 32px;
  gap: 10px;
  padding: 10px 14px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
  transition: background .12s;
}
.h2h-row:last-child { border-bottom: none; }
.h2h-row:hover { background: rgba(0,250,154,0.04); }
.h2h-row .data {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--text-soft);
}
.h2h-row .h2h-time {
  display: flex; align-items: center; gap: 8px;
  min-width: 0;
}
.h2h-row .h2h-time.home { justify-content: flex-end; }
.h2h-row .h2h-time.away { justify-content: flex-start; }
.h2h-row .h2h-time img {
  width: 22px; height: 22px; object-fit: contain;
  flex-shrink: 0;
}
.h2h-row .h2h-time span {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0; font-weight: 600;
}
.h2h-row .placar-h2h {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; text-align: center;
  background: rgba(0,250,154,0.05);
  padding: 4px 8px;
  border-radius: var(--r-xs);
}
.h2h-row .res {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  text-align: center;
  padding: 2px 4px;
  border-radius: 4px;
}
.h2h-row .res.W { color: var(--neon); background: rgba(0,250,154,0.12); }
.h2h-row .res.D { color: var(--yellow); background: rgba(255,200,87,0.12); }
.h2h-row .res.L { color: var(--red); background: rgba(255,77,109,0.12); }

@media (max-width: 600px) {
  .h2h-row { grid-template-columns: 60px 1fr 50px 1fr 24px; gap: 6px; padding: 10px; font-size: 12px; }
  .h2h-row .h2h-time img { width: 18px; height: 18px; }
  .h2h-row .h2h-time span { font-size: 11.5px; }
}

/* ── Odds ──────────────────────────────────────────────────── */
.odds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.odd-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
}
.odd-card h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-mute);
  margin-bottom: 10px;
}
.odd-row {
  display: grid;
  gap: 8px;
}
.odd-row.cols-2 { grid-template-columns: 1fr 1fr; }
.odd-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.odd-item {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  padding: 10px;
  text-align: center;
  transition: background .12s, border-color .12s;
}
.odd-item:hover {
  background: var(--bg-elev-3);
  border-color: var(--neon-soft);
}
.odd-item .titulo {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; color: var(--text-mute);
  margin-bottom: 4px;
}
.odd-item .valor {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px; font-weight: 700;
  color: var(--neon);
}

/* ── /time hero ────────────────────────────────────────────── */
.time-hero-flex {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.time-hero-escudo {
  width: 80px; height: 80px;
  object-fit: contain;
}
.time-hero-info { min-width: 0; }
.time-hero-nome {
  font-size: 26px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
  line-height: 1.1;
}
.time-hero-flex .h-btn.fav {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.time-hero-meta { margin-top: 16px; }

@media (max-width: 600px) {
  .time-hero-flex {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .time-hero-escudo { width: 56px; height: 56px; }
  .time-hero-nome { font-size: 20px; }
  .time-hero-flex .h-btn.fav { width: 32px; height: 32px; }
  .time-hero-flex .h-btn.fav svg { width: 16px; height: 16px; }
}

/* /time resumo: 2-cols vira 1 col em mobile */
.time-resumo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .time-resumo-grid { grid-template-columns: 1fr; }
}

/* Fixture row compact dentro do /time (resumo) */
.fixture-row-compact {
  display: grid;
  grid-template-columns: 50px 1fr 56px;
  gap: 10px;
  padding: 10px 14px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  text-decoration: none;
  color: inherit;
  transition: background .12s;
}
.fixture-row-compact:hover { background: rgba(0,250,154,0.04); }
.fixture-row-compact:last-child { border-bottom: none; }
.fixture-row-compact .jogo-hora { font-size: 12px; }
.fixture-row-compact .times-stack { gap: 4px; }
.fixture-row-compact .time-line { gap: 8px; }
.fixture-row-compact .time-line img { width: 18px; height: 18px; }
.fixture-row-compact .time-line .nome { font-size: 12.5px; }
.fixture-row-compact .placar-stack { min-height: 40px; font-size: 14px; }
.fixture-row-compact .placar-stack.vs { font-size: 10px; padding: 4px 6px; }

/* ── Tabela de classificação ───────────────────────────────── */
.tbl-classif {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tbl-classif thead {
  background: rgba(0,0,0,0.2);
}
.tbl-classif th {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-mute);
  padding: 10px 8px;
  text-align: left;
}
.tbl-classif th:not(:nth-child(2)) { text-align: center; }
.tbl-classif td {
  padding: 8px;
  border-bottom: 1px solid var(--border-soft);
}
.tbl-classif tbody tr:hover { background: rgba(0,250,154,0.04); }
.tbl-classif tbody tr:last-child td { border-bottom: none; }

/* Tabela completa (SG/GP/GC + forma) — estilo Sofascore */
.tbl-classif.full { font-size: 12.5px; }
.tbl-wrap .tbl-classif.full { min-width: 560px; }
.tbl-classif.full th, .tbl-classif.full td { text-align: center; padding: 8px 6px; white-space: nowrap; }
.tbl-classif.full .c-rank { width: 26px; font-weight: 700; color: var(--text-mute); }
.tbl-classif.full .c-time { text-align: left; min-width: 134px; }
.tbl-classif.full .c-time a { display: flex; align-items: center; gap: 8px; color: inherit; text-decoration: none; }
.tbl-classif.full .c-time img { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.tbl-classif.full .c-pts { font-weight: 800; color: var(--neon); }
.tbl-classif.full .c-v { color: var(--neon); }
.tbl-classif.full .c-e { color: var(--yellow); }
.tbl-classif.full .c-d { color: var(--red); }
.tbl-classif.full tr.destaque { background: rgba(0,250,154,0.06); }
.tbl-classif.full tr.zona-l { box-shadow: inset 3px 0 0 var(--neon); }
.tbl-classif.full tr.zona-e { box-shadow: inset 3px 0 0 var(--blue); }
.tbl-classif.full tr.zona-r { box-shadow: inset 3px 0 0 var(--red); }
.mini-forma-wrap { display: inline-flex; gap: 2px; }
.mini-forma { width: 6px; height: 6px; border-radius: 50%; display: inline-block; background: var(--text-soft); }
.mini-forma.W { background: var(--neon); }
.mini-forma.D { background: var(--yellow); }
.mini-forma.L { background: var(--red); }

/* ── Campinho de formações (cores da marca) ────────────────── */
.campo {
  position: relative;
  width: 100%; aspect-ratio: 68/100;
  max-width: 460px; margin: 4px auto 20px;
  border-radius: var(--r-md); overflow: hidden;
  background: linear-gradient(180deg, #16352b, #0c1c17);
}
.campo-grama { position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(255,255,255,0.03) 0 10%, transparent 10% 20%); }
/* marcações do gramado (linhas brancas suaves) */
.campo-linhas { position: absolute; inset: 10px; border: 2px solid rgba(255,255,255,0.16); border-radius: 3px; }
.campo-linhas::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: rgba(255,255,255,0.16); }
.campo-linhas::after { content: ''; position: absolute; left: 50%; top: 50%; width: 92px; height: 92px; transform: translate(-50%,-50%); border: 2px solid rgba(255,255,255,0.16); border-radius: 50%; }
/* grandes áreas e pequenas áreas */
.campo-area, .campo-gol { position: absolute; left: 50%; transform: translateX(-50%); border: 2px solid rgba(255,255,255,0.16); z-index: 1; }
.campo-area { width: 55%; height: 13%; }
.campo-gol  { width: 26%; height: 6%; }
.campo-area.top, .campo-gol.top { top: 10px; border-top: none; }
.campo-area.bottom, .campo-gol.bottom { bottom: 10px; border-bottom: none; }
.campo-formacao { position: absolute; display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; z-index: 4; }
.campo-formacao img { width: 18px; height: 18px; object-fit: contain; border-radius: 3px; }
.campo-formacao.home { top: 12px; left: 14px; color: var(--neon); }
.campo-formacao.away { bottom: 12px; left: 14px; color: var(--blue); }
.campo-jogador { position: absolute; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 3px; width: 56px; z-index: 2; cursor: pointer; }
.cj-marca { position: relative; width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background: var(--bg-elev-2); border: 2.5px solid var(--neon); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(0,0,0,0.5); }
.cj-foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.cj-num { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 14px; color: var(--neon); }
.cj-num-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 0; } /* aparece se a foto falhar */
.cj-nome { font-size: 9.5px; font-weight: 700; color: #fff; line-height: 1.1; text-shadow: 0 1px 3px rgba(0,0,0,0.95); max-width: 66px; text-align: center; }
.cj-nome i { font-style: normal; color: var(--neon); font-weight: 800; }
/* visitante = azul (combina com o design system) */
.campo-jogador.away .cj-marca { border-color: var(--blue); }
.campo-jogador.away .cj-num,
.campo-jogador.away .cj-nome i { color: var(--blue); }

.reservas-wrap { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.reservas-bloco .reservas-title { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; margin: 0 0 8px; padding-left: 8px; border-left: 3px solid var(--bg-elev-3); }
.reservas-bloco.home .reservas-title { border-left-color: var(--neon); }
.reservas-bloco.away .reservas-title { border-left-color: var(--blue); }
.reservas-bloco .reservas-title img { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }
.reservas-bloco ul { list-style: none; }
.reservas-bloco li { display: flex; align-items: center; gap: 10px; padding: 6px 8px; font-size: 13px; border-radius: 6px; cursor: pointer; }
.reservas-bloco li:nth-child(even) { background: rgba(255,255,255,0.025); } /* zebra sutil */
.reservas-bloco li:hover { background: var(--bg-elev-2); }
.reservas-bloco li .rb-foto { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; background: var(--bg-elev-2); flex: 0 0 auto; }
.reservas-bloco li .rb-num { font-family: 'JetBrains Mono', monospace; color: var(--text-mute); min-width: 20px; text-align: center; font-size: 12px; }
.reservas-bloco li .rb-nome { flex: 1; font-weight: 600; }
.reservas-bloco li .rb-pos { font-size: 10px; font-weight: 700; color: var(--text-soft); }
.reservas-bloco.home li .rb-pos { color: var(--neon); }
.reservas-bloco.away li .rb-pos { color: var(--blue); }
@media (max-width: 560px) { .reservas-wrap { grid-template-columns: 1fr; } }
