/* ═══════════════════════════════════════════
   WC2026 Hub — Dark Sports Theme
   Inspired by UEFA Europa League design
   ═══════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --bg:       #0d0d0d;
  --surface:  #161616;
  --surface2: #1f1f1f;
  --surface3: #272727;
  --orange:   #E8650A;
  --orange-l: #ff7b24;
  --orange-d: #c4540a;
  --white:    #ffffff;
  --text:     rgba(255,255,255,0.9);
  --muted:    rgba(255,255,255,0.5);
  --faint:    rgba(255,255,255,0.25);
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.15);
  --radius:   4px;
  --shadow:   0 2px 16px rgba(0,0,0,0.4);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.6);
  --font-head:'Barlow Condensed', 'Oswald', system-ui, sans-serif;
  --font-body:'Inter', system-ui, sans-serif;
  --trans:    .2s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }

/* ─── Utilities ─── */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 52px 0; }
.bg-light     { background: var(--surface); }
.bg-dark      { background: var(--bg); color: var(--white); }
.layout-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 32px; padding: 40px 0; }
.two-col      { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.table-responsive { overflow-x: auto; }
.page-title   { font-family: var(--font-head); font-size: 2rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 28px; color: var(--white); }

/* ─── Orange accent line ─── */
.section-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ─── Hero Section ─── */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  color: var(--white);
  padding: 72px 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,101,10,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; }
.hero-eyebrow    { font-family: var(--font-head); font-size: .85rem; color: var(--orange); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .5rem; }
.hero-text h1    { font-family: var(--font-head); font-size: clamp(2.5rem,5vw,3.8rem); font-weight: 800; line-height: 1.05; text-transform: uppercase; letter-spacing: .02em; margin: 0 0 16px; color: #fff; }
.hero-text p     { font-size: 1rem; color: rgba(255,255,255,.6); max-width: 480px; line-height: 1.7; }
.hero-cta        { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.btn { display: inline-block; padding: 12px 28px; font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; transition: all var(--trans); cursor: pointer; border: none; }
.btn-primary  { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,101,10,0.35); }
.btn-secondary { background: transparent; border: 2px solid rgba(255,255,255,.25); color: #fff; }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stat-card  { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-card strong { display: block; font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-card span   { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-top: .3rem; display: block; }

/* ─── Section Header ─── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.section-header h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--white); position: relative; padding-left: 14px; }
.section-header h2::before { content:''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 70%; background: var(--orange); }
.section-header.light h2 { color: #fff; }
.see-all  { font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); transition: color var(--trans); }
.see-all:hover { color: var(--orange-l); }

/* ─── Match Cards (grid) ─── */
.matches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 12px; }

.match-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: 2px solid transparent;
  padding: 16px;
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
}
.match-card:hover { border-bottom-color: var(--orange); background: var(--surface2); transform: translateY(-2px); box-shadow: var(--shadow); }

.match-meta    { display: flex; gap: 8px; font-size: .73rem; color: var(--muted); margin-bottom: 12px; flex-wrap: wrap; font-family: var(--font-body); }
.match-stage   { font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-head); }
.match-date    { margin-left: auto; }

.match-teams   { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.team          { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; width: 90px; }
.team.away     { align-items: flex-end; }
.team img      { width: 36px; height: 24px; object-fit: cover; border-radius: 2px; }
.team span     { font-family: var(--font-head); font-size: .85rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--white); }

.match-score   { text-align: center; }
.vs            { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,.3); }
.predicted     { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--white); }
.match-score small { display: block; font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.match-venue   { font-size: .72rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.match-venue svg { fill: var(--muted); flex-shrink: 0; }

/* ─── Result Rows ─── */
.results-list { display: flex; flex-direction: column; gap: 2px; }
.result-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background var(--trans);
}
.result-row:hover { background: var(--surface2); }
.result-team      { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; width: 180px; font-family: var(--font-head); letter-spacing: .04em; text-transform: uppercase; color: var(--white); }
.result-team.away { justify-content: flex-end; }
.result-team img  { width: 24px; height: 16px; object-fit: cover; }
.result-score     { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 60px; text-align: center; }
.result-score strong { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); }

/* ─── Badges ─── */
.badge         { display: inline-block; font-family: var(--font-head); font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 2px; vertical-align: middle; text-transform: uppercase; letter-spacing: .06em; }
.badge-live    { background: #E8650A; color: #fff; animation: pulse 1.5s infinite; }
.badge-finished{ background: var(--surface3); color: var(--muted); }
.badge-scheduled{ background: rgba(96,165,250,0.15); color: #60a5fa; border: 1px solid rgba(96,165,250,0.3); }
.badge-postponed{ background: rgba(251,191,36,0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }
.blink { animation: pulse 1s infinite; }

/* ─── Articles Grid ─── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-featured { grid-column: 1 / -1; display: grid !important; grid-template-columns: 1fr 1fr; }

.article-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans);
}
.article-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow); }
.article-img        { height: 180px; overflow: hidden; }
.article-featured .article-img { height: auto; }
.article-img img    { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; filter: brightness(0.85); }
.article-card:hover .article-img img { transform: scale(1.04); filter: brightness(1); }
.article-body       { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.article-category   { font-family: var(--font-head); font-size: .72rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; }
.article-body h3    { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; line-height: 1.3; text-transform: uppercase; letter-spacing: .03em; color: var(--white); }
.article-body p     { font-size: .82rem; color: var(--muted); flex: 1; line-height: 1.6; }
.article-footer     { display: flex; align-items: center; gap: 6px; font-size: .73rem; color: var(--faint); margin-top: auto; border-top: 1px solid var(--border); padding-top: .5rem; }
.source             { color: var(--orange); }
.ai-label           { font-size: .65rem; background: rgba(74,222,128,0.1); color: #4ade80; padding: 1px 6px; border-radius: 2px; border: 1px solid rgba(74,222,128,0.2); }

/* ─── Teams Strip ─── */
.teams-strip { display: flex; flex-wrap: wrap; gap: 8px; }
.team-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  color: var(--text);
  transition: background var(--trans), border-color var(--trans);
}
.team-chip:hover { background: var(--surface2); border-color: var(--orange); }
.team-chip img { width: 28px; height: 19px; object-fit: cover; border-radius: 1px; }
.team-chip span { font-family: var(--font-head); font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.team-chip em   { font-family: var(--font-head); font-size: .75rem; color: var(--orange); font-style: normal; margin-left: auto; }

/* ─── Match Hero ─── */
.match-hero { background: var(--surface); color: #fff; padding: 48px 0; border-bottom: 3px solid var(--orange); }
.match-stage-label { text-align: center; font-family: var(--font-head); font-size: .85rem; color: var(--orange); text-transform: uppercase; letter-spacing: .15em; margin-bottom: 24px; }
.match-main { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }

.match-team { text-align: center; }
.match-team h2   { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-top: 12px; color: var(--white); }
.match-team .rank{ display: block; font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.team-flag-lg    { width: 80px; height: 54px; object-fit: cover; border-radius: 2px; margin: 0 auto; border: 2px solid rgba(255,255,255,.1); }

.match-score-block { text-align: center; }
.final-score   { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--white); }
.final-score .divider { color: rgba(255,255,255,.3); font-weight: 300; }
.live-score    { color: var(--orange); }
.pen-score     { font-size: .85rem; color: var(--muted); }
.kickoff-time  { font-family: var(--font-head); text-align: center; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.countdown     { font-size: .8rem; color: var(--orange); margin-top: 8px; text-transform: uppercase; letter-spacing: .08em; }
.match-venue-info { font-size: .78rem; color: var(--muted); margin-top: 12px; text-align: center; }

/* ─── Card ─── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 24px; margin-bottom: 20px;
}
.card h2 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border2); color: var(--white); }
.card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; color: var(--white); }

/* ─── Prediction Card ─── */
.prediction-card { border-left: 3px solid var(--orange); }
.card-header     { margin-bottom: 16px; }
.ai-badge        { font-family: var(--font-head); font-size: .7rem; font-weight: 700; background: rgba(232,101,10,0.15); color: var(--orange); padding: 2px 10px; border: 1px solid rgba(232,101,10,0.3); margin-bottom: 8px; display: inline-block; text-transform: uppercase; letter-spacing: .08em; }
.card-header h3  { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--white); }

.prob-bars    { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.prob-row     { display: flex; align-items: center; gap: 12px; }
.prob-label   { width: 120px; font-size: .82rem; font-weight: 500; color: var(--muted); }
.prob-bar     { flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.prob-bar div { height: 100%; background: var(--orange); border-radius: 3px; transition: width .8s; }
.prob-bar.draw div { background: rgba(255,255,255,.4); }
.prob-bar.away div { background: #60a5fa; }
.prob-pct     { width: 40px; text-align: right; font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--white); }
.pred-reasoning { font-size: .85rem; color: var(--muted); font-style: italic; margin-top: 12px; line-height: 1.6; }
.key-factors ul { margin-left: 18px; font-size: .83rem; color: var(--muted); margin-top: 8px; }

/* ─── Vote Card ─── */
.vote-card h3    { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; color: var(--white); }
.vote-buttons    { display: flex; gap: 8px; flex-wrap: wrap; }
.vote-btn {
  flex: 1; padding: 12px; border: 1px solid var(--border2); background: var(--surface2);
  color: var(--text); font-family: var(--font-head); font-weight: 700; font-size: .88rem;
  letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
  transition: all var(--trans); border-radius: var(--radius);
}
.vote-btn:hover  { border-color: var(--orange); color: var(--orange); }
.vote-btn.selected { border-color: var(--orange); background: var(--orange); color: #fff; }
.vote-bar-row    { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.vote-bar-row span:first-child { width: 110px; font-size: .82rem; color: var(--muted); }
.vote-bar        { flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.vote-bar div    { height: 100%; background: var(--orange); border-radius: 3px; transition: width .6s; }
.vote-total      { font-size: .78rem; color: var(--faint); margin-top: 8px; }

/* ─── Standings Table ─── */
.standings-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.standings-table th { background: var(--surface3); color: var(--muted); padding: 10px 12px; text-align: center; font-family: var(--font-head); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .75rem; }
.standings-table th:first-child { text-align: left; }
.standings-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: center; color: var(--text); }
.standings-table td:nth-child(2) { text-align: left; }
.standings-table tr:hover td { background: rgba(255,255,255,.03); }
.qualify-row td { background: rgba(74,222,128,0.05) !important; }
.team-cell       { display: flex; align-items: center; gap: 8px; }
.team-cell img   { width: 22px; height: 15px; object-fit: cover; }
.qualify-badge   { font-size: .7rem; color: #4ade80; margin-left: 4px; }
.table-note      { font-size: .75rem; color: var(--faint); margin-top: 8px; }

/* ─── Match Rows (list) ─── */
.matches-list  { display: flex; flex-direction: column; gap: 2px; }
.match-row {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px; background: var(--surface); border: 1px solid var(--border);
  transition: background var(--trans), border-color var(--trans);
}
.match-row:hover { background: var(--surface2); border-color: var(--border2); }
.match-row-date  { font-size: .73rem; color: var(--muted); min-width: 90px; }
.match-row-teams { display: flex; align-items: center; gap: 8px; flex: 1; font-family: var(--font-head); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--white); }
.match-row-teams img { width: 22px; height: 15px; object-fit: cover; }
.vs-inline    { color: var(--muted); font-size: .8rem; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: 0; }
.score-inline { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--orange); }
.match-row-meta  { font-size: .73rem; color: var(--muted); }
.match-row-venue { font-size: .72rem; color: var(--faint); min-width: 60px; }

/* ─── Group Page ─── */
.group-teams-strip { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.group-team-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); border-bottom: 2px solid transparent; padding: 16px 20px;
  text-align: center; font-family: var(--font-head); font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; flex: 1; min-width: 120px; color: var(--white);
  transition: border-bottom-color var(--trans), transform var(--trans);
}
.group-team-card:hover { border-bottom-color: var(--orange); transform: translateY(-2px); }
.group-team-card img   { width: 56px; height: 38px; object-fit: cover; border-radius: 2px; }

.group-nav { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 28px; justify-content: center; }
.group-nav-btn {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--muted);
  transition: all var(--trans);
}
.group-nav-btn:hover, .group-nav-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ─── Team Hero ─── */
.team-hero { background: var(--surface); color: #fff; padding: 48px 0; border-bottom: 3px solid var(--orange); }
.team-hero-inner { display: flex; align-items: center; gap: 32px; }
.team-flag-xl    { width: 120px; height: 80px; object-fit: cover; border-radius: 2px; border: 2px solid rgba(255,255,255,.15); }
.team-conf       { display: block; font-family: var(--font-head); font-size: .75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.team-hero-info h1 { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; color: var(--white); }
.team-meta-tags  { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tag { display: inline-block; padding: 3px 10px; font-family: var(--font-head); font-size: .72rem; font-weight: 700; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); letter-spacing: .06em; text-transform: uppercase; }
.tag-host { background: var(--orange); color: #fff; }
.team-coach { font-size: .85rem; color: var(--muted); }

/* ─── Squad Grid ─── */
.pos-heading { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .12em; margin: 24px 0 12px; padding-left: 10px; border-left: 3px solid var(--orange); }
.squad-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; }
.player-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border); padding: 10px;
  transition: background var(--trans), border-color var(--trans);
}
.player-card:hover { background: var(--surface2); border-color: var(--border2); }
.player-card img   { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.player-avatar     { width: 36px; height: 36px; border-radius: 50%; background: var(--surface3); color: var(--muted); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: .7rem; font-weight: 700; }
.shirt             { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--orange); min-width: 22px; }
.player-name       { font-family: var(--font-head); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; display: block; color: var(--white); }
.player-club       { font-size: .72rem; color: var(--muted); display: block; }
.captain-badge     { font-size: 1rem; margin-left: auto; }

/* ─── Fixtures Table ─── */
.fixtures-table    { width: 100%; border-collapse: collapse; font-size: .83rem; }
.fixtures-table th { background: var(--surface3); padding: 10px 12px; text-align: left; color: var(--muted); font-family: var(--font-head); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .75rem; border-bottom: 2px solid var(--border2); }
.fixtures-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--text); }
.fixtures-table tr:last-child td { border-bottom: none; }
.fixtures-table tr:hover td { background: rgba(255,255,255,.02); }
.fixtures-table img { display: inline; vertical-align: middle; border-radius: 2px; margin-right: 6px; }

/* ─── Quick Facts / Sidebar ─── */
.fact-list    { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: .85rem; }
.fact-list dt { font-weight: 600; color: var(--muted); }
.fact-list dd { color: var(--text); }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; }
.sidebar-links a:hover { text-decoration: underline; }

/* ─── Widget (sidebar) ─── */
.widget         { background: var(--surface); border: 1px solid var(--border); padding: 18px; margin-bottom: 16px; }
.widget-title   { font-family: var(--font-head); font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 14px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
.widget-article { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); }
.widget-article:last-child { border-bottom: none; }
.widget-article img { width: 56px; height: 40px; object-fit: cover; border-radius: 2px; flex-shrink: 0; filter: brightness(0.85); }
.widget-article span { font-family: var(--font-head); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; line-height: 1.4; color: var(--text); }
.widget-article:hover span { color: var(--orange); }

/* ─── Article Page ─── */
.article-header { margin-bottom: 28px; }
.article-header h1 { font-family: var(--font-head); font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 800; line-height: 1.15; text-transform: uppercase; letter-spacing: .03em; margin: 10px 0; color: var(--white); }
.article-lead   { font-size: 1.05rem; color: var(--muted); font-weight: 400; line-height: 1.7; }
.article-meta   { display: flex; align-items: center; gap: 12px; font-size: .78rem; color: var(--faint); flex-wrap: wrap; margin-top: 12px; }
.article-hero-img { margin: 0 0 28px; overflow: hidden; }
.article-hero-img img { width: 100%; max-height: 440px; object-fit: cover; filter: brightness(0.85); }
.article-content    { font-size: .95rem; line-height: 1.8; color: rgba(255,255,255,.8); }
.article-content h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin: 28px 0 12px; color: var(--white); padding-left: 12px; border-left: 3px solid var(--orange); }
.article-content h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; margin: 20px 0 8px; color: var(--white); }
.article-content p  { margin-bottom: 16px; }
.article-content ul { margin: 0 0 16px 22px; }
.article-content li { margin-bottom: 6px; }
.article-tags   { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 28px; border-top: 1px solid var(--border); padding-top: 20px; }
.article-tags .tag { background: var(--surface2); color: var(--muted); border: 1px solid var(--border2); }

/* ─── Player Profile ─── */
.player-profile    { display: flex; gap: 28px; margin-bottom: 28px; align-items: flex-start; }
.player-photo img  { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border2); }
.player-avatar-lg  { width: 140px; height: 140px; border-radius: 50%; background: var(--surface3); color: var(--muted); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 2rem; font-weight: 800; }
.player-team-link  { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.player-details h1 { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; color: var(--white); }
.player-stats-grid { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.player-stats-grid .stat { text-align: center; background: var(--surface); border: 1px solid var(--border); padding: 12px 18px; }
.player-stats-grid .stat span { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--orange); }
.player-stats-grid .stat label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.player-club, .player-dob { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.tag-captain { background: var(--orange); color: #fff; }

/* ─── Groups Index ─── */
.groups-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.group-card  { display: block; background: var(--surface); border: 1px solid var(--border); border-bottom: 2px solid transparent; padding: 20px; transition: border-bottom-color var(--trans), transform var(--trans); }
.group-card:hover { border-bottom-color: var(--orange); transform: translateY(-2px); }
.group-card h2 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--white); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.gc-team     { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-family: var(--font-head); font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.8); }
.gc-team:last-child { border-bottom: none; }
.gc-team img { width: 24px; height: 16px; object-fit: cover; }

/* ─── Teams Grid (all teams page) ─── */
.teams-grid        { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 8px; margin-bottom: 32px; }
.team-card-full    { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); padding: 12px; transition: background var(--trans), border-color var(--trans); }
.team-card-full:hover { background: var(--surface2); border-color: var(--orange); }
.team-card-full img { width: 40px; height: 27px; object-fit: cover; border-radius: 1px; flex-shrink: 0; }
.team-card-info     { display: flex; flex-direction: column; gap: 2px; }
.team-card-info strong { font-family: var(--font-head); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--white); }
.team-card-info span   { font-size: .72rem; color: var(--muted); }
.conf-badge { font-family: var(--font-head); font-size: .65rem; font-weight: 700; background: rgba(255,255,255,.06); color: var(--muted); padding: 1px 6px; width: fit-content; text-transform: uppercase; letter-spacing: .06em; }
.group-heading { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--white); margin: 24px 0 12px; padding-left: 12px; border-left: 3px solid var(--orange); }

/* ─── Filter Bar ─── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; align-items: center; }
.filter-btn {
  padding: 7px 16px; border: 1px solid var(--border2); background: var(--surface);
  font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); cursor: pointer; transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ─── Breadcrumb ─── */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: 10px 0; font-size: .78rem; color: var(--muted); }
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── Pagination ─── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.page-btn   { padding: 8px 16px; border: 1px solid var(--border2); font-family: var(--font-head); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: var(--surface); color: var(--muted); cursor: pointer; transition: all var(--trans); }
.page-btn.active, .page-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ─── Footer ─── */
.site-footer     { background: #080808; color: rgba(255,255,255,.45); padding: 48px 0 0; margin-top: 60px; border-top: 3px solid var(--orange); }
.footer-grid     { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-grid h4  { font-family: var(--font-head); font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 12px; }
.footer-grid p   { font-size: .82rem; line-height: 1.7; }
.footer-grid ul  { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-grid li  { font-size: .82rem; }
.footer-grid a   { color: rgba(255,255,255,.35); transition: color var(--trans); }
.footer-grid a:hover { color: var(--orange); }
.footer-bottom   { border-top: 1px solid rgba(255,255,255,.06); padding: 16px 0; font-size: .75rem; text-align: center; color: rgba(255,255,255,.2); }

/* ─── Back link ─── */
.back-link a     { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .06em; }
.back-link a:hover { text-decoration: underline; }

/* ─── Slider / Hero image section ─── */
.hero-slider {
  position: relative;
  background: #000;
  overflow: hidden;
  min-height: 420px;
  display: flex; align-items: flex-end;
}
.hero-slider .slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5);
}
.hero-slider::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.hero-slider .slide-content {
  position: relative; z-index: 2;
  padding: 2.5rem 2rem;
}
.hero-slider .slide-label {
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: .15em;
  margin-bottom: .5rem;
}
.hero-slider .slide-title {
  font-family: var(--font-head); font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 800; color: #fff; text-transform: uppercase;
  letter-spacing: .02em; line-height: 1.05; margin-bottom: 1rem;
}
.hero-slider .slide-btn {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: var(--font-head); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .6rem 1.4rem; transition: background var(--trans);
  border-radius: 2px;
}
.hero-slider .slide-btn:hover { background: var(--orange-l); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero .container    { flex-direction: column; }
  .hero-stats         { grid-template-columns: repeat(2,1fr); }
  .hero-text h1       { font-size: 2.4rem; }
  .layout-sidebar     { grid-template-columns: 1fr; }
  .sidebar            { order: -1; }
  .articles-grid      { grid-template-columns: 1fr 1fr; }
  .article-featured   { grid-column: auto; display: flex !important; flex-direction: column; }
  .match-main         { grid-template-columns: 1fr; text-align: center; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .articles-grid  { grid-template-columns: 1fr; }
  .teams-grid     { grid-template-columns: 1fr 1fr; }
  .squad-grid     { grid-template-columns: 1fr 1fr; }
  .hero-stats     { grid-template-columns: repeat(2,1fr); }
  .hero-text h1   { font-size: 1.9rem; }
  .footer-grid    { grid-template-columns: 1fr; }
  .player-profile { flex-direction: column; }
  .two-col        { grid-template-columns: 1fr; }
  .hero-slider    { min-height: 300px; }
}
