/* ============================================================
   WORLD CUP 2026 — wc- scoped styles
   All classes prefixed wc- to avoid touching other pages.
   Reuses design tokens from styles.css (:root).
   ============================================================ */

/* ── Body wrapper (max-width centring) ────────────────────── */

.wc-body {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Hero ─────────────────────────────────────────────────── */

.wc-hero {
  padding: 28px 18px 30px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.wc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.wc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.wc-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 4px 11px;
  margin-bottom: 14px;
}

.wc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 13vw, 80px);
  font-weight: 900;
  color: var(--text);
  line-height: 0.92;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wc-hero-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 320px;
  margin-bottom: 20px;
}

.wc-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 5px 12px;
}

.wc-pill .ti { font-size: 12px; color: var(--text-faint); }

.wc-pill.wc-pill-accent {
  color: var(--gold);
  border-color: rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.07);
}

.wc-pill.wc-pill-accent .ti { color: var(--gold); }

/* ── Page sub-header (fixtures + groups pages) ────────────── */

.wc-page-hd {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 22px 18px 20px;
  position: relative;
  overflow: hidden;
}

.wc-page-hd::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.wc-page-hd-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.wc-page-hd-kicker {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.wc-page-hd-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
}

/* ── Tournament timeline ──────────────────────────────────── */

.wc-timeline {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.wc-timeline::-webkit-scrollbar { display: none; }

.wc-timeline-inner {
  display: flex;
  align-items: center;
  padding: 0 14px;
  min-width: max-content;
}

.wc-tl-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.wc-tl-stage {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-faint);
  padding: 12px 14px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.wc-tl-arrow {
  color: var(--border-2);
  font-size: 13px;
  flex-shrink: 0;
}

/* ── Sub-nav (shared across all WC pages) ─────────────────── */

.wc-subnav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.wc-subnav::-webkit-scrollbar { display: none; }

.wc-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.wc-subnav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  padding: 12px 18px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s;
  flex-shrink: 0;
}

.wc-subnav-link:hover { color: var(--text); }

.wc-subnav-link.act {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

/* ── Controls: search + filter tabs ──────────────────────── */

.wc-controls {
  padding: 12px 0 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.wc-search-bar {
  padding: 0 18px 10px;
}

.wc-search-wrap { position: relative; }

.wc-search-wrap .ti-search {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--text-faint);
  pointer-events: none;
}

.wc-search-input {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px 10px 40px;
  box-sizing: border-box;
}

.wc-search-input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
}

.wc-search-input::placeholder { color: #545478; }

.wc-tabs {
  display: flex;
  padding: 0 18px 12px;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.wc-tabs::-webkit-scrollbar { display: none; }

/* ── MOTD card ────────────────────────────────────────────── */

.wc-motd {
  margin: 14px 18px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(232, 64, 126, 0.07) 100%);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--r-lg);
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
}

.wc-motd::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}

.wc-motd-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.wc-motd-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.wc-motd-team {
  font-family: var(--font-display);
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  flex: 1;
  line-height: 1.1;
}

.wc-motd-match .wc-motd-team:last-child { text-align: right; }

.wc-motd-centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  min-width: 60px;
}

.wc-motd-vs {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--text-faint);
}

.wc-motd-score {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
}

.wc-motd-meta {
  font-size: 10px;
  color: var(--text-soft);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.wc-motd-verdict {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.wc-motd-verdict::before { content: '"'; color: var(--purple); font-style: normal; font-weight: 700; }
.wc-motd-verdict::after  { content: '"'; color: var(--purple); font-style: normal; font-weight: 700; }

.wc-motd-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.wc-motd-venue {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-faint);
}

.wc-motd-venue .ti { font-size: 12px; }

.wc-motd-stage {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Hub nav cards ────────────────────────────────────────── */

.wc-nav-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 18px 4px;
}

.wc-nav-card {
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 15px 14px 13px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: background 0.12s, border-color 0.12s;
}

.wc-nav-card:hover {
  background: var(--card-hover);
  border-color: var(--purple);
}

.wc-nav-card-icon {
  font-size: 20px;
  color: var(--purple);
  line-height: 1;
}

.wc-nav-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1;
}

.wc-nav-card-desc {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.4;
}

/* ── Section wrapper ──────────────────────────────────────── */

.wc-section { padding-bottom: 4px; }

.wc-section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 8px;
}

.wc-section-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-soft);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.wc-section-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wc-section-link:hover { text-decoration: underline; }

/* ── Feed header ──────────────────────────────────────────── */

.wc-feed-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 8px;
}

.wc-feed-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-soft);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.wc-feed-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-faint);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 10px;
}

/* ── Fixture list (single column) ────────────────────────── */

.wc-fixture-list {
  display: flex;
  flex-direction: column;
  padding-bottom: 80px;
}

/* ── Fixture card ─────────────────────────────────────────── */

.wc-fixture-card {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 13px 18px 12px;
  transition: background 0.12s;
}

.wc-fixture-card:hover { background: var(--surface-2); }

.wc-card-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.wc-match-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 0.3px;
}

.wc-stage-pill {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-soft);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 9px;
  letter-spacing: 0.2px;
}

.wc-status {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 2px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.wc-s-upcoming {
  color: var(--rumour-color);
  background: var(--rumour-bg);
  border: 1px solid var(--rumour-border);
}

.wc-s-result {
  color: var(--done-color);
  background: var(--done-bg);
  border: 1px solid var(--done-border);
}

.wc-s-live {
  color: var(--pink);
  background: rgba(232, 64, 126, 0.12);
  border: 1px solid rgba(232, 64, 126, 0.35);
}

.wc-s-cold {
  color: var(--cold-color);
  background: var(--cold-bg);
  border: 1px solid var(--cold-border);
}

.wc-live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: wc-pulse 1.2s ease-in-out infinite;
}

@keyframes wc-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ── Card body: team vs team ──────────────────────────────── */

.wc-card-body {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}

.wc-team { flex: 1; min-width: 0; }
.wc-away { text-align: right; }

.wc-team-name {
  font-family: var(--font-display);
  font-size: clamp(16px, 4.5vw, 22px);
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.1;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-card-centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  min-width: 64px;
}

.wc-vs {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--text-faint);
}

.wc-score {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wc-score-sep { color: var(--text-faint); font-size: 18px; }
.wc-score-live { font-size: 14px; color: var(--pink); letter-spacing: 0; }

.wc-kickoff {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.wc-date { font-size: 10px; font-weight: 700; color: var(--text-soft); white-space: nowrap; }
.wc-time { font-size: 10px; font-weight: 600; color: var(--text-faint); white-space: nowrap; }
.wc-time abbr { text-decoration: none; }

/* ── Card footer: venue ───────────────────────────────────── */

.wc-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.wc-venue {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-faint);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-venue .ti { font-size: 12px; flex-shrink: 0; }
.wc-city { font-size: 11px; color: var(--text-faint); font-weight: 600; flex-shrink: 0; }

/* ── Group card ───────────────────────────────────────────── */

.wc-group-card {
  border-bottom: 2px solid var(--border);
  padding: 0 0 6px;
}

.wc-group-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 18px 12px;
}

.wc-group-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 34px);
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1;
}

.wc-group-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 9px;
}

/* ── Standings table ──────────────────────────────────────── */

.wc-standings-wrap {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
  padding: 0 18px 16px;
}

.wc-standings-wrap::-webkit-scrollbar { height: 3px; }
.wc-standings-wrap::-webkit-scrollbar-track { background: transparent; }
.wc-standings-wrap::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }

.wc-standings {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.wc-standings thead tr {
  border-bottom: 1px solid var(--border);
}

.wc-standings th {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 5px 8px;
  text-align: center;
  white-space: nowrap;
}

.wc-standings th.wc-st-team {
  text-align: left;
  padding-left: 0;
  min-width: 130px;
}

.wc-standings td {
  padding: 9px 8px;
  text-align: center;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.wc-standings tbody tr:last-child td { border-bottom: none; }

.wc-standings td.wc-st-team {
  text-align: left;
  padding-left: 0;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.wc-standings td.wc-st-pts {
  font-weight: 800;
  color: var(--text);
  font-size: 14px;
}

.wc-st-pos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  margin-right: 8px;
  background: var(--card);
  color: var(--text-faint);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* Top 2 highlight (qualification spots) */
.wc-standings tbody tr:nth-child(1) .wc-st-pos,
.wc-standings tbody tr:nth-child(2) .wc-st-pos {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--purple);
}

/* Group fixtures subsection */
.wc-group-fixtures-hd {
  padding: 8px 18px 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* ── No results ───────────────────────────────────────────── */

.wc-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px 100px;
  gap: 10px;
}

.wc-no-results-icon { font-size: 36px; color: var(--text-faint); }

.wc-no-results-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
}

.wc-no-results-desc { font-size: 13px; color: var(--text-soft); max-width: 280px; }

/* ── Desktop ──────────────────────────────────────────────── */

@media (min-width: 600px) {
  .wc-nav-cards { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .wc-hero        { padding: 40px 40px 44px; }
  .wc-page-hd     { padding: 28px 40px 24px; }
  .wc-hero-title  { font-size: clamp(72px, 8vw, 100px); letter-spacing: -3px; }
  .wc-search-bar  { padding: 0 40px 10px; }
  .wc-tabs        { padding: 0 40px 12px; }
  .wc-motd        { margin: 16px 40px; }
  .wc-feed-hd     { padding: 14px 40px 8px; }
  .wc-section-hd  { padding: 16px 40px 8px; }
  .wc-nav-cards   { padding: 16px 40px 4px; }
  .wc-group-hd    { padding: 18px 40px 12px; }
  .wc-standings-wrap { padding: 0 40px 16px; }
  .wc-group-fixtures-hd { padding: 8px 40px 4px; }
  .wc-fixture-card { padding: 14px 22px 13px; }
}

@media (min-width: 480px) {
  .wc-match-score-block   { min-width: 150px; padding: 16px 22px; }
  .wc-match-scoreboard    { gap: 14px; }
  .wc-prediction-block    { padding: 18px 16px 16px; }
}

@media (min-width: 768px) {
  .wc-match-score-block   { min-width: 200px; padding: 20px 32px; }
  .wc-match-scoreboard    { gap: 20px; }
  .wc-match-team-name     { font-size: 22px; }
  .wc-prediction-block    { padding: 22px 24px 20px; }
  .wc-prediction-score-row { gap: 28px; }
}

@media (min-width: 1200px) {
  .wc-hero    { padding: 52px 60px 56px; }
  .wc-page-hd { padding: 32px 60px 28px; }
}

/* ── Fixture Calendar ─────────────────────────────────────── */

.wc-day-group {
  margin-bottom: 6px;
}

.wc-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 12px 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(30, 20, 60, 0.55) 100%);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-left: 3px solid var(--purple);
  border-radius: 10px;
  margin: 10px 0 2px;
}

.wc-day-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.wc-today-badge {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 99px;
}

.wc-day-count {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
}

.wc-day-today .wc-day-head {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35) 0%, rgba(30, 20, 60, 0.7) 100%);
  border-color: var(--purple);
  border-left-color: var(--purple);
}

.wc-day-today .wc-day-title {
  color: #fff;
}

.wc-day-today .wc-today-badge {
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

/* Calendar card */
.wc-calendar-card {
  display: block;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.wc-calendar-card:last-child {
  border-bottom: none;
}

.wc-calendar-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.wc-calendar-time {
  font-size: 12px;
  color: var(--text-faint);
}

.wc-calendar-teams {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wc-calendar-home,
.wc-calendar-away {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.wc-calendar-away {
  text-align: right;
}

.wc-calendar-score-wrap {
  text-align: center;
  min-width: 50px;
}

.wc-calendar-venue {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wc-calendar-more {
  padding: 16px 18px;
  text-align: center;
}

.wc-calendar-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  transition: background 0.15s;
}

.wc-calendar-more-btn:hover {
  background: var(--surface-3);
}

/* ── Clickable card links ──────────────────────────────────── */

.wc-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
}

.wc-card-link:hover,
.wc-card-link:focus-visible {
  background: var(--surface-3);
  outline: none;
}

/* ── Match detail page ─────────────────────────────────────── */

.wc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  padding: 6px 0;
}

.wc-back-link:hover { color: var(--text); }

/* Hero */
.wc-match-hero {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 16px 20px;
  margin-bottom: 14px;
  text-align: center;
}

.wc-match-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Scoreboard: 3-column grid — team | score block | team */
.wc-match-scoreboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.wc-match-team {
  display: flex;
  flex-direction: column;
}

.wc-match-team.wc-home {
  align-items: flex-start;
  text-align: left;
}

.wc-match-team.wc-away {
  align-items: flex-end;
  text-align: right;
}

.wc-match-team-name {
  font-size: clamp(14px, 3.8vw, 20px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  word-break: break-word;
}

/* Score panel */
.wc-match-score-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 16px;
  padding: 14px 16px;
  gap: 4px;
}

.wc-match-score-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 13vw, 80px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.wc-score-num {
  display: inline-block;
  min-width: 0.8em;
  text-align: center;
}

.wc-match-score-big .wc-score-sep {
  display: inline-block;
  font-size: 0.65em;
  line-height: 1;
  opacity: 0.65;
  transform: translateY(-0.04em);
}

.wc-score-live-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wc-match-vs-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.wc-match-kickoff-time {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  white-space: nowrap;
}

.wc-match-winner {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.wc-match-hero-date,
.wc-match-hero-venue {
  font-size: 13px;
  color: var(--text-faint);
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Detail card */
.wc-detail-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.wc-detail-card-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-3);
}

.wc-detail-card-body {
  padding: 14px 16px;
}

/* Prediction block container */
.wc-prediction-block {
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  padding: 16px 12px 14px;
  margin-bottom: 12px;
}

.wc-prediction-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--purple);
  margin: 0 0 12px;
}

/* Prediction score row */
.wc-prediction-score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 0;
}

.wc-prediction-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.wc-prediction-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 11vw, 68px);
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}

.wc-prediction-sep {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 900;
  color: var(--text-faint);
  line-height: 1;
  flex-shrink: 0;
}

.wc-prediction-label-team {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  text-align: center;
  max-width: 90px;
  line-height: 1.3;
}

.wc-prediction-note {
  font-size: 14px;
  font-style: italic;
  color: var(--text-soft);
  text-align: center;
  margin: 0 0 10px;
}

/* Verdict */
.wc-match-verdict {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 10px;
}

/* Player to watch */
.wc-player-watch {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-3);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 4px;
}

.wc-player-watch-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-faint);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wc-player-watch-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* Highlight teams in standings */
.wc-team-highlight {
  font-weight: 800;
  color: var(--text) !important;
}

/* Fixtures nested inside detail card */
.wc-detail-fixtures .wc-fixture-card,
.wc-detail-fixtures .wc-card-link {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

.wc-day-today .wc-day-head {
  background: rgba(124, 58, 237, 0.07);
  border-left: 3px solid var(--purple);
  padding-left: 15px;
}

.wc-day-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 5vw, 22px);
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
}

.wc-today-badge {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--purple);
  color: #fff;
  border-radius: 100px;
  padding: 3px 8px;
  line-height: 1;
}

.wc-day-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-faint);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 9px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Calendar fixture card ────────────────────────────────── */

.wc-calendar-card {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 11px 18px 10px;
  transition: background 0.12s;
}

.wc-calendar-card:last-child { border-bottom: none; }
.wc-calendar-card:hover      { background: var(--surface-2); }

.wc-calendar-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.wc-calendar-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
}

.wc-calendar-teams {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.wc-calendar-home,
.wc-calendar-away {
  flex: 1;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(15px, 4.2vw, 20px);
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-calendar-away { text-align: right; }

.wc-calendar-score-wrap {
  flex-shrink: 0;
  min-width: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wc-calendar-venue {
  font-size: 11px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc-calendar-venue .ti { font-size: 12px; flex-shrink: 0; }

/* ── Calendar "view more" footer ──────────────────────────── */

.wc-calendar-more {
  padding: 14px 18px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.wc-calendar-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  padding: 11px 18px;
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: var(--r);
  width: 100%;
  transition: background 0.12s, border-color 0.12s;
  box-sizing: border-box;
}

.wc-calendar-more-btn:hover {
  background: rgba(124, 58, 237, 0.13);
  border-color: rgba(124, 58, 237, 0.38);
}

/* ── Calendar desktop padding ─────────────────────────────── */

@media (min-width: 768px) {
  .wc-day-head        { padding: 14px 40px 10px; }
  .wc-day-today .wc-day-head { padding-left: 37px; }
  .wc-calendar-card   { padding: 12px 22px 11px; }
  .wc-calendar-more   { padding: 14px 40px 16px; }
}
