/**
 * mondial.css — World Cup 2026 page styles.
 * Dark theme: #0a0a0a bg, Haiti blue #00209F, red #D52B1E, gold #F5C518.
 * Fonts: Bebas Neue headlines, Libre Baskerville body, Space Mono labels.
 */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Space+Mono:wght@400;700&display=swap');

/* ── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  --m-bg: #0a0a0a;
  --m-surface: #111827;
  --m-surface2: #1a2535;
  --m-border: #1f2937;
  --m-blue: #00209F;
  --m-blue-light: #0030cc;
  --m-red: #D52B1E;
  --m-gold: #F5C518;
  --m-white: #F8F5EE;
  --m-muted: #9ca3af;
  --m-green: #00c864;
  --m-font-display: 'Bebas Neue', system-ui, sans-serif;
  --m-font-body: 'Libre Baskerville', Georgia, serif;
  --m-font-mono: 'Space Mono', monospace;
}

/* ── Animations ─────────────────────────────────────────────────────────────── */
@keyframes m-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes m-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes m-live-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(213, 43, 30, 0); }
  50% { box-shadow: 0 0 12px 3px rgba(213, 43, 30, 0.4); }
}
@keyframes m-gold-pulse {
  0%, 100% { text-shadow: 0 0 0 rgba(245, 197, 24, 0); }
  50% { text-shadow: 0 0 16px rgba(245, 197, 24, 0.6); }
}

.m-animate { animation: m-fadeUp 0.6s ease-out forwards; opacity: 0; }
.m-delay-1 { animation-delay: 0.1s; }
.m-delay-2 { animation-delay: 0.2s; }
.m-delay-3 { animation-delay: 0.3s; }
.m-delay-4 { animation-delay: 0.4s; }

/* ── Hub Page Layout ────────────────────────────────────────────────────────── */
.m-page { background: var(--m-bg); color: var(--m-white); min-height: 100vh; }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.m-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, var(--m-blue) 40%, #001040 80%, #0a0a0a 100%);
  border-bottom: 3px solid var(--m-gold);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.m-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 32, 159, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.m-hero-content { position: relative; z-index: 1; }
.m-hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--m-gold); color: #000;
  font-family: var(--m-font-mono); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 2rem;
  margin-bottom: 0.75rem;
}
.m-hero h1 {
  font-family: var(--m-font-display);
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 400;
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--m-white);
}
.m-hero h1 span { color: var(--m-gold); display: block; }
.m-hero-sub {
  font-family: var(--m-font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--m-muted);
  margin-bottom: 1.5rem;
}
.m-haiti-emphasis {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: var(--r-md, 0.5rem);
  padding: 0.5rem 1rem;
  font-family: var(--m-font-mono);
  font-size: 0.8rem;
  color: var(--m-gold);
  margin-bottom: 1.25rem;
}
.m-countdown {
  display: flex; justify-content: center; gap: 0.75rem;
  flex-wrap: wrap; margin-bottom: 1.25rem;
}
.m-count-item {
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 0.75rem;
  padding: 0.6rem 1rem;
  text-align: center;
  min-width: 64px;
}
.m-count-num {
  font-family: var(--m-font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--m-gold);
  line-height: 1;
}
.m-count-label {
  font-family: var(--m-font-mono);
  font-size: 0.55rem;
  color: var(--m-muted);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.m-lang-bar {
  display: flex; justify-content: center; gap: 0.4rem; margin-top: 1rem;
}
.m-lang-btn {
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  font-family: var(--m-font-mono);
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--m-muted);
  border: 1px solid var(--m-border);
  transition: all 0.2s;
}
.m-lang-btn:hover,
.m-lang-btn.active { background: var(--m-gold); color: #000; border-color: var(--m-gold); }

/* ── Haiti Hub Strip ─────────────────────────────────────────────────────────── */
.m-section-strip {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--m-surface);
  border-bottom: 1px solid var(--m-border);
  overflow-x: auto; scrollbar-width: none;
}
.m-section-strip::-webkit-scrollbar { display: none; }
.m-stab {
  flex-shrink: 0;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-family: var(--m-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--m-muted);
  border: 1px solid var(--m-border);
  transition: all 0.2s;
}
.m-stab:hover { color: var(--m-white); border-color: var(--m-muted); }
.m-stab.active {
  background: var(--m-gold); color: #000; border-color: var(--m-gold);
}

/* ── Haiti Match Cards ──────────────────────────────────────────────────────── */
.m-haiti-section { padding: 1.25rem 1rem; }
.m-haiti-section-title {
  font-family: var(--m-font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--m-muted);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.m-haiti-match-card {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.15s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.m-haiti-match-card:hover { border-color: rgba(245, 197, 24, 0.4); }
.m-haiti-match-card.finished { border-left: 4px solid var(--m-gold); }
.m-haiti-match-card.live {
  border-left: 4px solid var(--m-red);
  animation: m-live-glow 2s ease-in-out infinite;
}
.m-haiti-match-card.pending { border-left: 4px solid var(--m-blue); }
.m-match-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--m-border);
}
.m-match-phase {
  font-family: var(--m-font-mono);
  font-size: 0.62rem; font-weight: 700;
  color: var(--m-muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.m-match-status-badge {
  font-family: var(--m-font-mono);
  font-size: 0.62rem; font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.m-status-finished { background: rgba(245, 197, 24, 0.1); color: var(--m-gold); }
.m-status-live { background: rgba(213, 43, 30, 0.15); color: var(--m-red); animation: m-pulse 1.4s infinite; }
.m-status-pending { background: rgba(0, 32, 159, 0.2); color: var(--m-blue-light); }
.m-match-body { padding: 0.85rem 1rem; }
.m-match-score-row {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.m-team {
  flex: 1;
  display: flex; align-items: center; gap: 0.5rem;
}
.m-team.right { flex-direction: row-reverse; }
.m-team-flag { font-size: 1.4rem; line-height: 1; }
.m-team-name {
  font-family: var(--m-font-mono);
  font-size: 0.78rem; font-weight: 700;
  color: var(--m-white);
}
.m-score-display {
  flex-shrink: 0;
  font-family: var(--m-font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 400;
  color: var(--m-gold);
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  min-width: 80px;
}
.m-score-display.pending-score { color: var(--m-muted); font-size: 1.2rem; }
.m-match-datetime {
  font-family: var(--m-font-mono);
  font-size: 0.68rem;
  color: var(--m-muted);
  text-align: center;
  margin-top: 0.4rem;
}
.m-match-venue {
  font-family: var(--m-font-mono);
  font-size: 0.62rem;
  color: var(--m-muted);
  text-align: center;
  margin-top: 0.2rem;
}
.m-match-venue span { color: var(--m-blue-light); }

/* ── Goals Preview (for finished matches) ───────────────────────────────────── */
.m-goals-preview {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: rgba(245, 197, 24, 0.04);
  border-top: 1px solid rgba(245, 197, 24, 0.08);
}
.m-goal-chip {
  font-family: var(--m-font-mono);
  font-size: 0.65rem;
  color: var(--m-gold);
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 2rem;
  padding: 0.15rem 0.5rem;
}
.m-goal-chip span { color: var(--m-muted); margin-left: 0.25rem; }

/* ── Group C Standings ───────────────────────────────────────────────────────── */
.m-group-c-section { padding: 1.25rem 1rem; border-top: 1px solid var(--m-border); }
.m-group-card {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 1rem;
  overflow: hidden;
}
.m-group-header {
  background: linear-gradient(90deg, var(--m-blue), #0035a0);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--m-font-mono);
  font-size: 0.8rem; font-weight: 700;
}
.m-group-header span:first-child { font-size: 1rem; }
.m-standings-table { width: 100%; border-collapse: collapse; }
.m-standings-table th {
  padding: 0.5rem 0.6rem;
  font-family: var(--m-font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--m-muted);
  text-align: left;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--m-border);
}
.m-standings-table th:not(:first-child):not(:nth-child(2)) { text-align: center; }
.m-standings-table td {
  padding: 0.55rem 0.6rem;
  font-family: var(--m-font-mono);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  color: var(--m-muted);
}
.m-standings-table td:not(:first-child):not(:nth-child(2)) { text-align: center; }
.m-standings-table tr:last-child td { border-bottom: none; }
.m-tm-cell {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 700; color: var(--m-white);
}
.m-tm-cell span:first-child { font-size: 1rem; }
.m-pts { color: var(--m-gold) !important; font-weight: 700; }
.m-pos { color: var(--m-muted); min-width: 1.2rem; }

/* ── All Groups Quick View ───────────────────────────────────────────────────── */
.m-all-groups { padding: 1.25rem 1rem; border-top: 1px solid var(--m-border); }
.m-group-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.m-group-chip {
  padding: 0.3rem 0.8rem;
  border-radius: 0.4rem;
  font-family: var(--m-font-mono);
  font-size: 0.7rem; font-weight: 700;
  text-decoration: none;
  color: var(--m-muted);
  border: 1px solid var(--m-border);
  transition: all 0.15s;
}
.m-group-chip:hover { color: var(--m-white); border-color: var(--m-muted); }
.m-group-chip.haiti-group { border-color: var(--m-gold); color: var(--m-gold); }

/* ── CTA Cards ───────────────────────────────────────────────────────────────── */
.m-cta-section { padding: 1rem 1rem 2rem; }
.m-cta-card {
  display: flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, rgba(0, 32, 159, 0.2), rgba(0, 48, 204, 0.1));
  border: 1px solid rgba(0, 32, 159, 0.3);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.75rem;
  transition: border-color 0.15s;
}
.m-cta-card:hover { border-color: rgba(0, 32, 159, 0.6); }
.m-cta-icon { font-size: 1.8rem; flex-shrink: 0; }
.m-cta-body { flex: 1; }
.m-cta-title {
  font-family: var(--m-font-display);
  font-size: 1rem; font-weight: 400;
  color: var(--m-white); margin: 0 0 0.2rem;
}
.m-cta-sub {
  font-family: var(--m-font-mono);
  font-size: 0.68rem; color: var(--m-muted);
}
.m-cta-arrow { font-size: 1rem; color: var(--m-gold); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* MATCH ARTICLE PAGE                                                         */
/* ═══════════════════════════════════════════════════════════════════════════ */

.m-article-page { background: var(--m-bg); color: var(--m-white); min-height: 100vh; }

/* ── Article Hero ────────────────────────────────────────────────────────────── */
.m-article-hero {
  background: linear-gradient(180deg, #001040 0%, var(--m-bg) 100%);
  border-bottom: 3px solid var(--m-gold);
  padding: 1.5rem 1rem 0;
  text-align: center;
  position: relative;
}
.m-article-phase {
  font-family: var(--m-font-mono);
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--m-gold); margin-bottom: 0.5rem;
}
.m-article-date {
  font-family: var(--m-font-mono);
  font-size: 0.68rem; color: var(--m-muted); margin-bottom: 0.75rem;
}
.m-article-teams {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 0.5rem;
}
.m-at {
  font-family: var(--m-font-display);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 400;
  color: var(--m-muted);
}
.m-article-teams .m-team-name {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
}
.m-article-score {
  font-family: var(--m-font-display);
  font-size: clamp(4rem, 15vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.05em;
  margin: 0.5rem 0;
  animation: m-gold-pulse 3s ease-in-out infinite;
}
.m-article-score span { color: var(--m-white); margin: 0 0.15em; }
.m-score-away { color: var(--m-gold); }
.m-score-home { color: var(--m-gold); }
.m-article-venue {
  font-family: var(--m-font-mono);
  font-size: 0.68rem; color: var(--m-muted);
  padding-bottom: 1rem;
}

/* ── Back Navigation ────────────────────────────────────────────────────────── */
.m-back-nav {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--m-border);
}
.m-back-link {
  font-family: var(--m-font-mono);
  font-size: 0.72rem; color: var(--m-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.m-back-link:hover { color: var(--m-gold); }
.m-hub-badge {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 2rem;
  padding: 0.2rem 0.6rem;
  font-family: var(--m-font-mono);
  font-size: 0.65rem; font-weight: 700;
  color: var(--m-gold);
  text-decoration: none;
}

/* ── Goals Timeline ──────────────────────────────────────────────────────────── */
.m-section { padding: 1.25rem 1rem; border-top: 1px solid var(--m-border); }
.m-section-title {
  font-family: var(--m-font-mono);
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--m-gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.m-goals-timeline { padding: 0 1rem; }
.m-goal-entry {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.m-goal-entry:last-child { border-bottom: none; }
.m-goal-minute {
  flex-shrink: 0;
  min-width: 44px;
  font-family: var(--m-font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--m-gold);
  line-height: 1;
  text-align: center;
  padding-top: 0.1rem;
}
.m-goal-minute::after {
  content: "'";
  font-size: 0.8rem;
  color: var(--m-gold);
}
.m-goal-bar {
  width: 2px;
  background: linear-gradient(180deg, var(--m-gold) 0%, transparent 100%);
  min-height: 30px;
  align-self: stretch;
  border-radius: 1px;
}
.m-goal-info { flex: 1; }
.m-goal-scorer {
  font-family: var(--m-font-body);
  font-size: 0.9rem; font-weight: 700;
  color: var(--m-white); margin-bottom: 0.15rem;
}
.m-goal-assist {
  font-family: var(--m-font-mono);
  font-size: 0.65rem; color: var(--m-muted);
}
.m-goal-team-flag { font-size: 1rem; margin-left: 0.5rem; }

/* ── Stats Bar Charts ────────────────────────────────────────────────────────── */
.m-stats-grid { display: grid; gap: 0.75rem; }
.m-stat-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.5rem; }
.m-stat-label {
  font-family: var(--m-font-mono);
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--m-muted);
}
.m-stat-label.right { text-align: right; }
.m-stat-bars { display: flex; align-items: center; gap: 0.3rem; flex: 1; }
.m-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.m-bar-fill { height: 100%; border-radius: 3px; transition: width 0.6s ease-out; }
.m-bar-home { background: var(--m-gold); }
.m-bar-away { background: var(--m-blue); }
.m-stat-val {
  font-family: var(--m-font-mono);
  font-size: 0.75rem; font-weight: 700;
  color: var(--m-white); min-width: 24px; text-align: center;
}
.m-stat-val.away { text-align: right; color: var(--m-blue-light); }
.m-stat-name {
  font-family: var(--m-font-mono);
  font-size: 0.72rem; color: var(--m-muted);
  text-align: center; padding: 0.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  grid-column: 1 / -1;
}

/* ── Pull Quote ─────────────────────────────────────────────────────────────── */
.m-quote {
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.05), rgba(0, 32, 159, 0.05));
  border-left: 3px solid var(--m-gold);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.25rem;
  margin: 0 1rem;
}
.m-quote-text {
  font-family: var(--m-font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--m-white);
  line-height: 1.6;
  margin: 0;
}

/* ── Next Match CTA ─────────────────────────────────────────────────────────── */
.m-next-match-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--m-surface);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  margin: 1rem;
  transition: border-color 0.15s;
}
.m-next-match-card:hover { border-color: rgba(245, 197, 24, 0.5); }
.m-nm-icon { font-size: 1.5rem; flex-shrink: 0; }
.m-nm-body { flex: 1; }
.m-nm-label {
  font-family: var(--m-font-mono);
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--m-gold); margin-bottom: 0.25rem;
}
.m-nm-teams {
  font-family: var(--m-font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--m-white);
}
.m-nm-datetime {
  font-family: var(--m-font-mono);
  font-size: 0.68rem; color: var(--m-muted);
}
.m-nm-arrow { font-size: 1rem; color: var(--m-gold); font-weight: 700; }

/* ── Share Buttons ──────────────────────────────────────────────────────────── */
.m-share-section { padding: 1rem; border-top: 1px solid var(--m-border); }
.m-share-title {
  font-family: var(--m-font-mono);
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--m-muted); margin-bottom: 0.75rem;
}
.m-share-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.m-share-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  font-family: var(--m-font-mono);
  font-size: 0.72rem; font-weight: 700;
  text-decoration: none;
  transition: all 0.15s;
}
.m-share-wa { background: rgba(37, 211, 102, 0.1); border: 1px solid rgba(37, 211, 102, 0.3); color: #25d366; }
.m-share-fb { background: rgba(24, 119, 242, 0.1); border: 1px solid rgba(24, 119, 242, 0.3); color: #1877f2; }
.m-share-copy { background: rgba(255,255,255,0.04); border: 1px solid var(--m-border); color: var(--m-muted); }

/* ── No Match Yet State ──────────────────────────────────────────────────────── */
.m-empty {
  text-align: center; padding: 2.5rem 1rem;
  color: var(--m-muted);
}
.m-empty-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.m-empty h3 {
  font-family: var(--m-font-display);
  font-size: 1.2rem; font-weight: 400;
  color: var(--m-white); margin: 0 0 0.4rem;
}
.m-empty p {
  font-family: var(--m-font-mono);
  font-size: 0.78rem; margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .m-hero { padding: 2rem 1rem 1.5rem; }
  .m-countdown { gap: 0.5rem; }
  .m-count-item { min-width: 56px; padding: 0.5rem 0.75rem; }
  .m-count-num { font-size: 1.5rem; }
  .m-match-body { padding: 0.7rem 0.8rem; }
  .m-score-display { min-width: 60px; }
  .m-article-score { font-size: clamp(3rem, 18vw, 6rem); }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* HUB PAGE — 4 TAB PANELS                                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ── Tab Panels ────────────────────────────────────────────────────────────── */
.m-panel { display: none; }
.m-panel.active { display: block; }

/* ── Next Match Banner ─────────────────────────────────────────────────────── */
.m-next-match-banner {
  background: linear-gradient(135deg, rgba(245,197,24,0.08), rgba(0,32,159,0.15));
  border-bottom: 1px solid rgba(245,197,24,0.2);
  padding: 0.75rem 1rem;
  text-align: center;
}
.m-next-inner { max-width: 600px; margin: 0 auto; }
.m-next-label {
  font-family: var(--m-font-mono);
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--m-gold); margin-bottom: 0.3rem;
}
.m-next-teams {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 0.3rem;
}
.m-next-flag { font-size: 1.5rem; }
.m-next-vs {
  font-family: var(--m-font-display);
  font-size: 1.2rem;
  color: var(--m-white);
}
.m-next-datetime {
  font-family: var(--m-font-mono);
  font-size: 0.65rem; color: var(--m-muted); margin-bottom: 0.5rem;
}
.m-next-countdown {
  display: flex; justify-content: center; gap: 0.4rem;
  font-family: var(--m-font-mono);
  font-size: 0.75rem; color: var(--m-gold); font-weight: 700;
}
.nm-unit { background: rgba(245,197,24,0.08); border: 1px solid rgba(245,197,24,0.2); border-radius: 4px; padding: 0.15rem 0.5rem; }

/* ── Matches Panel ─────────────────────────────────────────────────────────── */
#panel-matches { padding: 1.25rem 1rem; }
.m-date-group { margin-bottom: 1.5rem; }
.m-date-label {
  font-family: var(--m-font-mono);
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--m-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.5rem; margin-bottom: 0.6rem;
}
.m-match-card {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: border-color 0.15s;
}
.m-match-card:hover { border-color: rgba(255,255,255,0.15); }
.m-match-card.haiti-card {
  border-left: 3px solid var(--m-gold);
  background: linear-gradient(90deg, rgba(245,197,24,0.04), var(--m-surface));
}
.m-match-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem;
}
.m-mc-date { min-width: 100px; }
.mc-time {
  display: block;
  font-family: var(--m-font-mono);
  font-size: 0.7rem; font-weight: 700; color: var(--m-white);
}
.mc-venue {
  display: block;
  font-family: var(--m-font-mono);
  font-size: 0.55rem; color: var(--m-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100px;
}
.m-mc-teams {
  flex: 1; display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--m-font-mono); font-size: 0.78rem; font-weight: 700;
}
.mc-flag { font-size: 1.1rem; }
.mc-team-name { color: var(--m-white); white-space: nowrap; }
.mc-score {
  font-family: var(--m-font-display);
  font-size: 1.1rem; color: var(--m-gold);
  padding: 0 0.4rem; flex-shrink: 0;
}
.mc-vs { color: var(--m-muted); font-size: 0.65rem; padding: 0 0.4rem; flex-shrink: 0; }
.m-mc-actions { flex-shrink: 0; }
.mc-btn {
  display: inline-block; padding: 0.35rem 0.75rem;
  border-radius: 0.4rem;
  font-family: var(--m-font-mono); font-size: 0.65rem; font-weight: 700;
  text-decoration: none; transition: all 0.15s;
}
.mc-btn-article {
  background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.3); color: var(--m-gold);
}
.mc-btn-article:hover { background: rgba(245,197,24,0.2); }
.mc-btn-detail {
  background: rgba(255,255,255,0.05); border: 1px solid var(--m-border); color: var(--m-muted);
}
.mc-btn-detail:hover { color: var(--m-white); border-color: var(--m-muted); }
.m-haiti-tag {
  background: rgba(245,197,24,0.08);
  border-top: 1px solid rgba(245,197,24,0.1);
  padding: 0.35rem 0.85rem;
  font-family: var(--m-font-mono); font-size: 0.62rem; font-weight: 700;
  color: var(--m-gold); text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Groups Panel ──────────────────────────────────────────────────────────── */
#panel-groups { padding: 1.25rem 1rem; }
.m-group-section { margin-bottom: 1.25rem; }
.m-group-section-title {
  font-family: var(--m-font-mono);
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--m-muted);
  margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.haiti-group-section .m-group-section-title { color: var(--m-gold); }
.m-group-card {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 0.75rem;
  overflow: hidden;
}
.qualified-row { border-left: 3px solid var(--m-green); }
.haiti-row { background: rgba(245,197,24,0.04); }
.haiti-team-name { color: var(--m-gold) !important; font-weight: 700; }

/* ── Knockout Panel ─────────────────────────────────────────────────────────── */
#panel-knockout { padding: 1.25rem 1rem; }
.m-knockout-intro {
  font-family: var(--m-font-mono);
  font-size: 0.7rem; color: var(--m-muted);
  margin-bottom: 1.25rem; text-align: center;
}
.m-knockout-stage { margin-bottom: 1.5rem; }
.m-ks-label {
  font-family: var(--m-font-mono);
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--m-muted);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.m-ks-label-final {
  font-family: var(--m-font-mono);
  font-size: 0.7rem; font-weight: 700;
  color: var(--m-gold);
  margin-bottom: 0.5rem;
  text-align: center;
}
.m-ks-match {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 0.5rem;
  padding: 0.6rem 0.85rem;
  margin-bottom: 0.4rem;
}
.m-ks-date {
  font-family: var(--m-font-mono);
  font-size: 0.55rem; color: var(--m-muted);
  margin-bottom: 0.3rem;
}
.m-ks-teams {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--m-font-mono); font-size: 0.78rem; font-weight: 700;
  color: var(--m-white);
}
.m-ks-v { color: var(--m-muted); font-size: 0.65rem; }
.m-ks-bracket {
  font-family: var(--m-font-mono);
  font-size: 0.55rem; color: var(--m-muted); margin-top: 0.2rem;
}
.m-final-match {
  background: linear-gradient(135deg, rgba(245,197,24,0.06), rgba(0,32,159,0.06));
  border-color: rgba(245,197,24,0.2);
}
.m-final-match .m-ks-teams { justify-content: center; font-size: 0.9rem; }

/* ── Articles Panel ─────────────────────────────────────────────────────────── */
#panel-articles { padding: 1.25rem 1rem; }
.m-articles-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.m-article-card {
  display: flex; align-items: flex-start; gap: 0.85rem;
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 0.75rem;
  padding: 1rem;
  text-decoration: none; color: inherit;
  transition: border-color 0.15s;
  position: relative;
}
.m-article-card:hover { border-color: rgba(255,255,255,0.15); }
.m-article-card.haiti-article-card {
  border-left: 3px solid var(--m-gold);
}
.m-article-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.m-article-body { flex: 1; }
.m-article-title {
  font-family: var(--m-font-display);
  font-size: 1rem; font-weight: 400;
  color: var(--m-white); margin: 0 0 0.3rem;
}
.m-article-excerpt {
  font-family: var(--m-font-mono);
  font-size: 0.68rem; color: var(--m-muted); margin: 0 0 0.5rem;
  line-height: 1.5;
}
.m-article-cta {
  font-family: var(--m-font-mono);
  font-size: 0.68rem; font-weight: 700;
  color: var(--m-gold);
}
.m-articles-note {
  font-family: var(--m-font-mono);
  font-size: 0.7rem; color: var(--m-muted);
  text-align: center; padding: 1rem;
  background: rgba(255,255,255,0.02);
  border-radius: 0.5rem;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.m-footer {
  background: var(--m-surface);
  border-top: 1px solid var(--m-border);
  padding: 1.25rem 1rem;
  margin-top: 1rem;
}
.m-footer-inner { max-width: 900px; margin: 0 auto; }
.m-footer-brand {
  font-family: var(--m-font-mono);
  font-size: 0.72rem; color: var(--m-muted); margin-bottom: 0.75rem;
}
.m-footer-brand strong { color: var(--m-white); }
.m-footer-links { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.m-footer-links a {
  font-family: var(--m-font-mono); font-size: 0.7rem; color: var(--m-muted);
  text-decoration: none; transition: color 0.15s;
}
.m-footer-links a:hover { color: var(--m-gold); }
.m-footer-copy {
  font-family: var(--m-font-mono); font-size: 0.65rem; color: rgba(255,255,255,0.2);
}

/* ── Prediction Button on Match Cards ────────────────────────────────────── */
.mc-btn-pred {
  background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(245,197,24,0.08));
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--m-gold);
  cursor: pointer;
  font-family: var(--m-font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 0.4rem;
  transition: all 0.15s;
}
.mc-btn-pred:hover {
  background: rgba(245,197,24,0.25);
  border-color: rgba(245,197,24,0.6);
}
.mc-btn-live {
  color: #ef4444;
  font-family: var(--m-font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  animation: pulse-live 1.5s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* PREDICTIONS PANEL                                                       */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ── Predictions Panel ────────────────────────────────────────────────────── */
#panel-predictions { padding: 1.25rem 1rem; }
.mpred-header { text-align: center; margin-bottom: 1rem; }
.mpred-title {
  font-family: var(--m-font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--m-white);
  margin-bottom: 0.25rem;
}
.mpred-subtitle {
  font-family: var(--m-font-mono);
  font-size: 0.75rem;
  color: var(--m-muted);
}

/* Prediction sub-tabs */
.mpred-sub-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
.m-pred-stab {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-family: var(--m-font-mono);
  font-size: 0.72rem; font-weight: 700;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--m-border);
  color: var(--m-muted);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.m-pred-stab:hover { color: var(--m-white); border-color: var(--m-muted); }
.m-pred-stab.active { background: rgba(245,197,24,0.1); border-color: rgba(245,197,24,0.4); color: var(--m-gold); }

.mpred-sub-panel { display: none; }
.mpred-sub-panel.active { display: block; }

/* My Picks status icons */
.mpick-status {
  font-family: var(--m-font-mono); font-size: 0.72rem; font-weight: 700;
  min-width: 80px; text-align: right; flex-shrink: 0;
}
.mpick-correct { border-left: 3px solid #00c864; }
.mpick-wrong { border-left: 3px solid var(--m-red); }
.mpick-pending { border-left: 3px solid var(--m-blue-light); }
.mpick-pick { color: var(--m-muted); }

.mpred-section-label {
  font-family: var(--m-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--m-muted);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mpred-empty {
  font-family: var(--m-font-mono);
  font-size: 0.78rem;
  color: var(--m-muted);
  text-align: center;
  padding: 1.5rem;
}
.mpred-loading { font-family: var(--m-font-mono); font-size: 0.75rem; color: var(--m-muted); text-align: center; padding: 1rem; }
.mpred-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 1.5rem 0; }

/* ── Match prediction cards ────────────────────────────────────────────────── */
.mpred-matches-grid { display: grid; gap: 0.5rem; }
.pm-card {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.15s;
}
.pm-card:hover { border-color: rgba(255,255,255,0.12); }
.pm-card-done { opacity: 0.7; }
.pm-card-date {
  font-family: var(--m-font-mono);
  font-size: 0.58rem;
  color: var(--m-muted);
  min-width: 90px;
}
.pm-card-teams {
  flex: 1;
  font-family: var(--m-font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--m-white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pm-team { color: var(--m-white); }
.pm-vs { color: var(--m-muted); font-size: 0.65rem; }
.pm-score { color: var(--m-gold); font-family: var(--m-font-display); font-size: 1rem; }
.pm-pred-btn {
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.35);
  color: var(--m-gold);
  font-size: 0.85rem;
  border-radius: 0.4rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.pm-pred-btn:hover { background: rgba(245,197,24,0.2); border-color: rgba(245,197,24,0.6); }

/* ── Leaderboard ───────────────────────────────────────────────────────────── */
.mpred-leaderboard-header {
  font-family: var(--m-font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--m-gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mpred-lb-table { display: flex; flex-direction: column; gap: 0.25rem; }
.mpred-lb-row {
  display: grid;
  grid-template-columns: 2rem 1fr 3rem 3rem 3rem;
  align-items: center;
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-family: var(--m-font-mono);
  font-size: 0.72rem;
  color: var(--m-white);
  gap: 0.5rem;
}
.mpred-lb-head {
  font-size: 0.58rem;
  color: var(--m-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  background: transparent;
  padding: 0 0.75rem 0.25rem;
}
.mpred-rank { font-weight: 700; color: var(--m-gold); }
.mpred-pts { color: var(--m-gold); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* PREDICTION MODAL                                                         */
/* ═══════════════════════════════════════════════════════════════════════════ */

.pred-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.pred-modal-inner {
  background: linear-gradient(180deg, #0d1117, #161b22);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 1.25rem;
  padding: 1.75rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 60px rgba(245,197,24,0.08);
}
.pred-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  background: none;
  border: none;
  color: var(--m-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.pred-modal-close:hover { color: var(--m-white); }
.pred-modal-title {
  font-family: var(--m-font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--m-white);
  text-align: center;
  margin-bottom: 1rem;
}
.pred-modal-teams {
  font-family: var(--m-font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--m-gold);
  text-align: center;
  margin-bottom: 0.5rem;
}
.pred-modal-question {
  font-family: var(--m-font-mono);
  font-size: 0.7rem;
  color: var(--m-muted);
  text-align: center;
  margin-bottom: 1rem;
}
.pred-opts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pred-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 0.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--m-border);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.15s;
}
.pred-opt:hover {
  border-color: rgba(245,197,24,0.5);
  background: rgba(245,197,24,0.06);
}
.pred-opt.selected {
  border-color: var(--m-gold);
  background: rgba(245,197,24,0.12);
  box-shadow: 0 0 16px rgba(245,197,24,0.15);
}
.pred-opt-label {
  font-family: var(--m-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--m-white);
  text-align: center;
  line-height: 1.3;
}
.pred-opt-sub {
  font-family: var(--m-font-display);
  font-size: 1.5rem;
  color: var(--m-gold);
  font-weight: 400;
}
.pred-confirm {
  background: rgba(245,197,24,0.06);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 0.5rem;
  padding: 0.85rem;
  margin-bottom: 0.75rem;
  text-align: center;
}
.pred-confirm-text {
  font-family: var(--m-font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--m-gold);
  margin-bottom: 0.75rem;
}
.pred-submit-btn {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--m-gold), #e69500);
  border: none;
  border-radius: 0.6rem;
  font-family: var(--m-font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #0a0a0f;
  cursor: pointer;
  transition: all 0.15s;
}
.pred-submit-btn:hover { background: linear-gradient(135deg, #f5c535, var(--m-gold)); transform: translateY(-1px); }
.pred-submit-btn:active { transform: translateY(0); }
.pred-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.pred-msg {
  font-family: var(--m-font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem;
  border-radius: 0.4rem;
}

/* ── Share Result Card (shown after prediction submission) ───────────────────── */
.share-result-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0;
}
.src-badge {
  font-family: var(--m-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--m-gold);
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.src-teams {
  font-family: var(--m-font-display);
  font-size: 1.3rem;
  color: var(--m-white);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}
.src-vs { color: var(--m-muted); font-size: 0.9rem; margin: 0 0.5rem; }
.src-pick {
  font-family: var(--m-font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--m-gold);
  margin-bottom: 0.25rem;
}
.src-pts {
  font-family: var(--m-font-mono);
  font-size: 0.72rem;
  color: #4ade80;
  margin-bottom: 1.25rem;
}
.src-share-label {
  font-family: var(--m-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--m-muted);
  margin-bottom: 0.75rem;
}
.src-buttons { display: flex; gap: 0.75rem; margin-bottom: 1rem; width: 100%; }
.src-btn-whatsapp,
.src-btn-twitter {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-family: var(--m-font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
}
.src-btn-whatsapp { background: #25D366; color: #fff; }
.src-btn-whatsapp:hover { opacity: 0.85; }
.src-btn-twitter { background: #000; color: #fff; }
.src-btn-twitter:hover { opacity: 0.8; }
.src-btn-close {
  width: 100%;
  padding: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--m-border);
  border-radius: 8px;
  color: var(--m-muted);
  font-family: var(--m-font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.src-btn-close:hover { color: var(--m-white); border-color: rgba(255,255,255,0.15); }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .m-match-row { gap: 0.4rem; }
  .m-mc-teams { font-size: 0.7rem; }
  .mc-team-name { max-width: 60px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .m-mc-date { min-width: 75px; }
  .m-next-teams { gap: 0.5rem; }
  .m-next-vs { font-size: 1rem; }
  .pred-opts { gap: 0.35rem; }
  .pred-opt-label { font-size: 0.62rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* LINEUPS PANEL                                                             */
/* ═══════════════════════════════════════════════════════════════════════════ */

.m-lineups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .m-lineups-grid { grid-template-columns: 1fr; }
}

.m-lineup-card {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 0.75rem;
  padding: 1rem;
}
.m-lineup-side-label {
  font-family: var(--m-font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--m-gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.m-lineup-formation {
  font-family: var(--m-font-mono);
  font-size: 0.7rem;
  color: var(--m-muted);
  margin-bottom: 0.35rem;
}
.m-lineup-coach {
  font-family: var(--m-font-mono);
  font-size: 0.68rem;
  color: var(--m-muted);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.m-lineup-players {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}
.m-player-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.4rem;
  padding: 0.35rem 0.5rem;
}
.m-player-num {
  font-family: var(--m-font-display);
  font-size: 0.9rem;
  color: var(--m-gold);
  min-width: 20px;
  line-height: 1;
}
.m-player-name {
  font-family: var(--m-font-mono);
  font-size: 0.68rem;
  color: var(--m-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-sub-chip { opacity: 0.65; }
.m-lineup-subs-label {
  font-family: var(--m-font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--m-muted);
  margin: 0.75rem 0 0.4rem;
}
.m-lineup-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.m-lineup-subs .m-player-chip { flex: 0 0 auto; }

/* ═══════════════════════════════════════════════════════════════════════════ */
/* LIVE ODDS PANEL                                                           */
/* ═══════════════════════════════════════════════════════════════════════════ */

.m-odds-grid {
  max-width: 560px;
  margin: 0 auto;
}
.m-odds-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  align-items: center;
  gap: 0.5rem;
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
}
.m-odds-team {
  font-family: var(--m-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--m-white);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.m-odds-row .m-odds-team:first-child { justify-content: flex-end; }
.m-odds-pick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  font-family: var(--m-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--m-white);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--m-border);
  cursor: pointer;
  transition: all 0.15s;
  min-width: 56px;
  text-align: center;
}
.m-odds-pick:hover { border-color: rgba(245,197,24,0.5); }
.m-odds-pick.selected {
  background: rgba(245,197,24,0.15);
  border-color: var(--m-gold);
  color: var(--m-gold);
}
.m-odds-val {
  font-family: var(--m-font-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
}
.m-ou-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.m-ou-label {
  font-family: var(--m-font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--m-muted);
  min-width: 28px;
  text-align: center;
}
.m-ou-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  font-family: var(--m-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--m-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--m-border);
  cursor: pointer;
  transition: all 0.15s;
}
.m-ou-btn:hover { border-color: rgba(245,197,24,0.4); }
.m-ou-btn.selected {
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.4);
  color: var(--m-gold);
}
.m-odds-source {
  font-family: var(--m-font-mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 0.5rem;
}