/* WhatChan FA Cup Finals Encyclopedia.
   Prefix .wc-fcf- throughout, deliberately distinct from the .wc-fac- used by the
   /the-fa-cup guide so the two can never collide.
   Mobile-first; min-width queries only (house rule). ASCII only. */

:root {
  --fcf-navy: #1a3f6f;
  --fcf-mid: #2b6cb0;
  --fcf-gold: #ffd166;
  --fcf-orange: #9c4419;
  --fcf-border: #dde3ea;
  --fcf-panel: #f0f4f8;
  --fcf-ink: #222;
  --fcf-mute: #5a616b;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--fcf-ink);
  background: #f7f7f7;
  line-height: 1.65;
}
.wc-fcf-wrap { max-width: 860px; margin: 0 auto; padding: 0 16px 64px; }
a { color: var(--fcf-mid); }

/* ── nav / header (matches the house static-site chrome) ── */
.wc-nav { background: var(--fcf-navy); }
.wc-nav-inner { max-width: 1100px; margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.wc-logo-text { color: #fff; font-weight: 800; font-size: 1.15rem; text-decoration: none; }
.wc-logo-tag { color: var(--fcf-gold); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; display: block; }
.wc-nav-links { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; flex-wrap: wrap; }
.wc-nav-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.86rem; font-weight: 600; }
.wc-nav-links a:hover, .wc-nav-links a[aria-current] { color: var(--fcf-gold); }

.wc-fcf-crumb { font-size: 0.78rem; color: var(--fcf-mute); padding: 14px 0 0; }
.wc-fcf-crumb a { color: var(--fcf-mid); text-decoration: none; }

.wc-fcf-hero { padding: 10px 0 6px; }
.wc-fcf-eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fcf-orange); font-weight: 700; margin: 0 0 6px; }
.wc-fcf-hero h1 { font-size: clamp(1.7rem, 5vw, 2.5rem); line-height: 1.12; margin: 0 0 8px; color: var(--fcf-navy); letter-spacing: -0.02em; }
.wc-fcf-nickname { font-style: italic; color: var(--fcf-orange); }
.wc-fcf-standfirst { font-size: 1.02rem; color: #445; margin: 0 0 14px; }
.wc-fcf-byline { font-size: 0.76rem; color: var(--fcf-mute); border-top: 1px solid var(--fcf-border); border-bottom: 1px solid var(--fcf-border); padding: 8px 0; margin-bottom: 22px; }

/* ── scoreline strip ── */
.wc-fcf-score { display: flex; align-items: stretch; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); margin-bottom: 8px; }
.wc-fcf-side { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; justify-content: center; gap: 3px; min-width: 0; }
.wc-fcf-side-name { font-weight: 800; font-size: 1rem; line-height: 1.2; }
.wc-fcf-side-meta { font-size: 0.7rem; opacity: 0.82; }
.wc-fcf-goals { flex: 0 0 76px; background: #10233f; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; letter-spacing: 0.04em; }
.wc-fcf-side-away { text-align: right; align-items: flex-end; }
.wc-fcf-scoreline-note { font-size: 0.76rem; color: var(--fcf-mute); margin: 0 0 26px; text-align: center; }

/* ── the 1970s television ─────────────────────────────────────────── */
.wc-fcf-tv { margin: 0 0 10px; }
.wc-fcf-cabinet {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 16px 16px 18px;
  border-radius: 14px 14px 10px 10px;
  /* walnut veneer: broad plank banding under a fine grain */
  background:
    repeating-linear-gradient(92deg, rgba(0,0,0,0.055) 0 2px, transparent 2px 5px),
    repeating-linear-gradient(88deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 7px),
    linear-gradient(96deg, #7a4a24 0%, #96603196 18%, #8b5a2b 42%, #6b4423 68%, #83512563 84%, #5c3a1e 100%),
    #6b4423;
  box-shadow:
    inset 0 2px 0 rgba(255,220,180,0.22),
    inset 0 -3px 8px rgba(0,0,0,0.45),
    0 14px 28px rgba(0,0,0,0.32);
}
.wc-fcf-bezel {
  position: relative;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(160deg, #2a2118, #191410 60%, #221b14);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.55), inset 0 3px 10px rgba(0,0,0,0.6);
}

/* The screen aperture is ALWAYS 4:3 and is a PERMANENT element. The video swaps in
   and out inside it, so the tube can never collapse or be escaped. padding-top
   rather than aspect-ratio so it behaves identically in every browser. */
.wc-fcf-screen-box {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: #0b0f0c;
  border-radius: 7% / 9%;
  box-shadow: inset 0 0 22px rgba(0,0,0,0.9), inset 0 0 60px rgba(120,160,120,0.07);
}
.wc-fcf-screen {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.wc-fcf-screen:focus-visible { outline: 3px solid var(--fcf-gold); outline-offset: -4px; }
.wc-fcf-still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
/* the mounted player: fills the tube, letterboxing widescreen inside it */
.wc-fcf-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.wc-fcf-inner iframe { display: block; border: 0; width: 100%; height: 100%; }
.wc-fcf-tv[data-ar="16:9"] .wc-fcf-inner iframe { height: auto; aspect-ratio: 16 / 9; }

/* glass bulge + vignette */
.wc-fcf-glass {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 62% 48% at 30% 18%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(ellipse 120% 116% at 50% 50%, transparent 52%, rgba(0,0,0,0.55) 100%);
}
.wc-fcf-scan {
  position: absolute; inset: -2px; pointer-events: none; mix-blend-mode: multiply;
  background: repeating-linear-gradient(rgba(0,0,0,0.24) 0 1px, transparent 1px 3px);
  animation: fcfRoll 8s linear infinite;
}
@keyframes fcfRoll { from { transform: translateY(0); } to { transform: translateY(3px); } }
.wc-fcf-tv.is-playing .wc-fcf-scan { opacity: 0.18; }
.wc-fcf-tv.is-playing .wc-fcf-glass { opacity: 0.55; }

.wc-fcf-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(200,20,20,0.9); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; padding-left: 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transition: transform 0.15s, background 0.15s;
}
.wc-fcf-screen:hover .wc-fcf-play { transform: translate(-50%, -50%) scale(1.08); background: rgba(225,25,25,0.96); }

/* "no footage" state: rolling static resolving into a test-card style plate */
.wc-fcf-static {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/><feColorMatrix type='saturate' values='0'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 180px 180px;
  animation: fcfStatic 0.42s steps(4) infinite;
  opacity: 0.5;
}
@keyframes fcfStatic {
  0% { background-position: 0 0; } 25% { background-position: -40px 30px; }
  50% { background-position: 30px -25px; } 75% { background-position: -25px -35px; }
  100% { background-position: 20px 20px; }
}
.wc-fcf-card {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; text-align: center;
  padding: 8% 12%; color: #e8e4d8; text-shadow: 0 2px 4px rgba(0,0,0,0.9);
  font-family: "Courier New", monospace;
}
.wc-fcf-card-head { font-size: 0.78rem; letter-spacing: 0.24em; color: var(--fcf-gold); }
.wc-fcf-card-year { font-size: clamp(2rem, 8vw, 3.2rem); font-weight: 800; line-height: 1; }
.wc-fcf-card-line { font-size: 0.82rem; opacity: 0.9; }

/* control plate: knobs, channel year plate, standby lamp, speaker grille */
.wc-fcf-controls { display: flex; align-items: center; gap: 12px; padding: 12px 4px 2px; }
.wc-fcf-grille {
  flex: 1; height: 26px; border-radius: 3px;
  background: repeating-linear-gradient(90deg, rgba(0,0,0,0.42) 0 2px, rgba(255,255,255,0.05) 2px 5px);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
.wc-fcf-plate {
  font-family: "Courier New", monospace; font-weight: 700; font-size: 0.82rem;
  color: var(--fcf-gold); background: #1b1712; padding: 4px 10px; border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.8); letter-spacing: 0.08em;
}
.wc-fcf-knob {
  width: 26px; height: 26px; border-radius: 50%; position: relative; flex: none;
  background: radial-gradient(circle at 34% 30%, #d8d4cc, #8a8578 55%, #4d4a44);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5), inset 0 -2px 3px rgba(0,0,0,0.35);
}
.wc-fcf-knob::after {
  content: ""; position: absolute; left: 50%; top: 4px; width: 2px; height: 8px;
  margin-left: -1px; background: var(--fcf-gold); border-radius: 1px;
}
.wc-fcf-led {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: #ff3b30; box-shadow: 0 0 8px 2px rgba(255,59,48,0.65);
  animation: fcfPulse 3s ease-in-out infinite;
}
.wc-fcf-tv[data-state="none"] .wc-fcf-led { background: #4a3f38; box-shadow: none; animation: none; }
@keyframes fcfPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }

.wc-fcf-cap { font-size: 0.8rem; color: var(--fcf-mute); text-align: center; margin: 12px auto 0; max-width: 620px; }
.wc-fcf-cap strong { color: var(--fcf-ink); }

@media (prefers-reduced-motion: reduce) {
  .wc-fcf-scan, .wc-fcf-static, .wc-fcf-led { animation: none; }
}

@media (min-width: 700px) {
  .wc-fcf-cabinet { padding: 22px 22px 24px; }
  .wc-fcf-bezel { padding: 22px; }
  /* splayed cabinet legs, desktop only */
  .wc-fcf-cabinet::before, .wc-fcf-cabinet::after {
    content: ""; position: absolute; bottom: -20px; width: 20px; height: 22px;
    background: linear-gradient(#5c3a1e, #43290f);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }
  .wc-fcf-cabinet::before { left: 42px; clip-path: polygon(28% 0, 100% 0, 74% 100%, 0 100%); }
  .wc-fcf-cabinet::after { right: 42px; clip-path: polygon(0 0, 72% 0, 100% 100%, 26% 100%); }
}

/* ── content sections ── */
.wc-fcf-sec { margin: 34px 0 0; }
.wc-fcf-h2 {
  font-size: 1.12rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--fcf-navy); border-bottom: 2px solid var(--fcf-border);
  padding-bottom: 6px; margin: 0 0 14px; display: flex; align-items: center; gap: 8px;
}
.wc-fcf-sec p { margin: 0 0 14px; }
/* free-licensed images breaking up the prose */
.wc-fcf-fig { margin: 22px 0; }
.wc-fcf-fig img {
  width: 100%; height: auto; display: block; border-radius: 8px;
  background: #e8ecf1; box-shadow: 0 2px 12px rgba(0,0,0,0.13);
}
.wc-fcf-fig figcaption {
  font-size: 0.82rem; color: var(--fcf-mute); line-height: 1.55;
  padding: 8px 2px 0; border-bottom: 1px solid var(--fcf-border); padding-bottom: 10px;
}
.wc-fcf-credit { display: block; font-size: 0.72rem; color: #5f6771; margin-top: 3px; }
.wc-fcf-credit a { color: #5f6771; }

.wc-fcf-facts { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--fcf-border); border-radius: 8px; overflow: hidden; background: #fff; }
.wc-fcf-fact { display: flex; gap: 12px; padding: 9px 14px; border-bottom: 1px solid #eef2f6; font-size: 0.9rem; }
.wc-fcf-fact:last-child { border-bottom: 0; }
.wc-fcf-fact dt { flex: 0 0 34%; font-weight: 700; color: var(--fcf-navy); margin: 0; }
.wc-fcf-fact dd { margin: 0; flex: 1; }
.wc-fcf-flag { font-size: 0.74rem; color: var(--fcf-orange); font-style: italic; display: block; }

.wc-fcf-xi { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .wc-fcf-xi { grid-template-columns: 1fr 1fr; } }
.wc-fcf-xi-card { border: 1px solid var(--fcf-border); border-radius: 8px; overflow: hidden; background: #fff; }
.wc-fcf-xi-head { padding: 8px 13px; font-weight: 800; font-size: 0.85rem; box-shadow: inset 0 -1px 0 rgba(0,0,0,0.16); }
.wc-fcf-xi-sub { font-size: 0.72rem; font-weight: 500; opacity: 0.85; }
.wc-fcf-xi ol { margin: 0; padding: 8px 13px 10px 30px; font-size: 0.87rem; }
.wc-fcf-xi li { padding: 1px 0; }
.wc-fcf-xi-foot { padding: 7px 13px 10px; font-size: 0.78rem; color: var(--fcf-mute); border-top: 1px solid #eef2f6; }
.wc-fcf-unavailable { padding: 14px; font-size: 0.88rem; color: #6b5200; background: #fff8e1; border: 1px solid #f0c040; border-radius: 8px; }

.wc-fcf-trivia { list-style: none; margin: 0; padding: 0; }
.wc-fcf-trivia li {
  background: #fff; border: 1px solid var(--fcf-border); border-left: 4px solid var(--fcf-gold);
  border-radius: 0 8px 8px 0; padding: 11px 15px; margin-bottom: 9px; font-size: 0.92rem;
}
.wc-fcf-cite { font-size: 0.7rem; color: var(--fcf-mute); text-decoration: none; vertical-align: super; margin-left: 3px; }
.wc-fcf-cite:hover { color: var(--fcf-mid); }

.wc-fcf-sources { font-size: 0.82rem; color: #445; padding-left: 20px; }
.wc-fcf-sources li { margin-bottom: 6px; }

.wc-fcf-adjacent { display: flex; justify-content: space-between; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.wc-fcf-adjacent a {
  flex: 1; min-width: 180px; padding: 12px 15px; background: #fff; border: 1px solid var(--fcf-border);
  border-radius: 8px; text-decoration: none; font-size: 0.86rem;
}
.wc-fcf-adjacent .nxt { text-align: right; }
.wc-fcf-adjacent small { display: block; color: var(--fcf-mute); font-size: 0.72rem; }

.wc-fcf-footer { border-top: 1px solid var(--fcf-border); margin-top: 40px; padding-top: 16px; font-size: 0.78rem; color: var(--fcf-mute); text-align: center; }
.wc-fcf-footer a { color: var(--fcf-mid); }

/* ── hub index ── */
.wc-fcf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.wc-fcf-tile {
  background: #fff; border: 1px solid var(--fcf-border); border-radius: 8px;
  padding: 11px 13px; text-decoration: none; color: var(--fcf-ink); display: block;
  border-left: 4px solid var(--fcf-mid);
}
.wc-fcf-tile:hover { border-left-color: var(--fcf-gold); box-shadow: 0 3px 10px rgba(0,0,0,0.08); }
.wc-fcf-tile-year { font-weight: 800; color: var(--fcf-navy); }
.wc-fcf-tile-win { font-size: 0.82rem; display: block; }
.wc-fcf-tile-score { font-size: 0.72rem; color: var(--fcf-mute); }
.wc-fcf-decade { margin: 26px 0 10px; font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fcf-orange); font-weight: 700; }

/* match timeline + route to final */
.wc-fcf-tl { list-style: none; margin: 0; padding: 0; }
.wc-fcf-tl li { display: flex; gap: 14px; padding: 9px 0; border-bottom: 1px solid #eef2f6; font-size: 0.92rem; }
.wc-fcf-tl li:last-child { border-bottom: 0; }
.wc-fcf-tl-at { flex: 0 0 64px; font-weight: 800; color: var(--fcf-orange); font-variant-numeric: tabular-nums; }
.wc-fcf-tl-txt { flex: 1; }
.wc-fcf-route { margin: 0; padding: 8px 13px 12px 30px; font-size: 0.87rem; }
.wc-fcf-route li { padding: 2px 0; }
.wc-fcf-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* internal linking: related finals + the wider WhatChan network */
.wc-fcf-rel-h { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fcf-orange); margin: 16px 0 6px; }
.wc-fcf-rel { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.wc-fcf-rel a { display: block; padding: 9px 13px; background: #fff; border: 1px solid var(--fcf-border); border-left: 4px solid var(--fcf-mid); border-radius: 0 8px 8px 0; text-decoration: none; font-size: 0.88rem; color: var(--fcf-ink); }
.wc-fcf-rel a:hover { border-left-color: var(--fcf-gold); }
.wc-fcf-rel strong { color: var(--fcf-navy); margin-right: 8px; }
.wc-fcf-net { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 640px) { .wc-fcf-net { grid-template-columns: 1fr 1fr; } }
.wc-fcf-net-card { display: block; padding: 13px 15px; background: #fff; border: 1px solid var(--fcf-border); border-radius: 8px; text-decoration: none; }
.wc-fcf-net-card:hover { border-color: var(--fcf-mid); box-shadow: 0 3px 10px rgba(0,0,0,0.07); }
.wc-fcf-net-k { display: block; font-weight: 800; color: var(--fcf-navy); font-size: 0.92rem; margin-bottom: 3px; }
.wc-fcf-net-v { display: block; font-size: 0.82rem; color: var(--fcf-mute); line-height: 1.5; }

/* the angle, and the "what you will not find elsewhere" panel */
.wc-fcf-angle { font-size: 1.06rem; font-weight: 700; color: var(--fcf-navy); border-left: 4px solid var(--fcf-gold); padding: 2px 0 2px 14px; margin: 0 0 12px; line-height: 1.5; }
.wc-fcf-orig { background: linear-gradient(160deg, #fffdf5, #fff8e6); border: 1px solid #f0c040; border-radius: 10px; padding: 18px 20px 20px; }
.wc-fcf-orig .wc-fcf-h2 { border-bottom-color: #f0c040; }
.wc-fcf-orig-kind { display: inline-block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; color: #8a6400; background: #ffeaa8; border-radius: 999px; padding: 3px 10px; margin-bottom: 7px; }
.wc-fcf-orig-feature { border-bottom: 1px solid #f0d68a; padding-bottom: 14px; margin-bottom: 14px; }
.wc-fcf-orig-feature h3 { font-size: 1.12rem; color: var(--fcf-navy); margin: 0 0 6px; line-height: 1.3; }
.wc-fcf-orig-item { padding-top: 12px; }
.wc-fcf-orig-item h3 { font-size: 0.97rem; color: var(--fcf-navy); margin: 0 0 5px; }
.wc-fcf-orig p { margin: 0; font-size: 0.93rem; line-height: 1.65; }
.wc-fcf-score-replay { margin: 14px 0 16px; }

/* ── formation pitch ──────────────────────────────────────────────────
   Server-rendered SVG: complete and readable with JavaScript off. The JS
   only adds the tap-to-read note. */
.wc-fcf-pitches{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;margin:18px 0}
.wc-fcf-pitch-card{margin:0;border:1px solid rgba(0,0,0,.14);border-radius:10px;overflow:hidden;
  background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.08)}
.wc-fcf-pitch-card figcaption{padding:9px 12px;font-weight:700;font-size:.94rem;line-height:1.3}
.wc-fcf-pitch{display:block;width:100%;height:auto}
.wc-fcf-turf{fill:#2f7d43}
.wc-fcf-lines{stroke:rgba(255,255,255,.45)}
.wc-fcf-shirt{cursor:pointer}
.wc-fcf-shirt circle{transition:r .12s ease,filter .12s ease}
.wc-fcf-shirt:hover circle,.wc-fcf-shirt:focus circle,.wc-fcf-shirt.is-on circle{r:6.4;
  filter:drop-shadow(0 0 2px rgba(255,255,255,.9))}
.wc-fcf-shirt:focus{outline:none}
.wc-fcf-shirt:focus circle{stroke-width:1.4}
.wc-fcf-shirt-nm{fill:#fff;paint-order:stroke;stroke:rgba(0,0,0,.55);stroke-width:.9px}
.wc-fcf-pitch-read{min-height:2.9em;margin:4px 0 0;padding:11px 13px;border-radius:8px;
  background:#f4f6f8;border:1px solid rgba(0,0,0,.09);font-size:.95rem;line-height:1.45}
.wc-fcf-pitch-hint{opacity:.62;font-style:italic}

/* ── quiz ─────────────────────────────────────────────────────────────
   A plain list with a <details> answer, so it still works unscripted. */
.wc-fcf-quiz{list-style:none;padding:0;margin:16px 0;display:grid;gap:14px;counter-reset:wcq}
.wc-fcf-q{counter-increment:wcq;border:1px solid rgba(0,0,0,.12);border-radius:10px;
  padding:14px 16px;background:#fff}
.wc-fcf-q-txt{margin:0 0 10px;font-weight:650}
.wc-fcf-q-txt::before{content:counter(wcq) ". ";opacity:.5}
.wc-fcf-opts{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:8px}
.wc-fcf-opt{font:inherit;font-size:.93rem;text-align:left;padding:10px 12px;cursor:pointer;
  border:1px solid rgba(0,0,0,.18);border-radius:7px;background:#f8f9fb;
  transition:background .12s ease,border-color .12s ease}
.wc-fcf-opt:hover:enabled{background:#eef1f6;border-color:rgba(0,0,0,.32)}
.wc-fcf-opt:disabled{cursor:default;opacity:1}
.wc-fcf-opt.is-right{background:#e4f5e8;border-color:#3f9a55;font-weight:650}
.wc-fcf-opt.is-wrong{background:#f7f7f8;color:#767a80}
.wc-fcf-opt.is-picked.is-wrong{background:#fbe9e9;border-color:#c05a5a;color:#7d3131}
.wc-fcf-q-ans{margin-top:11px;font-size:.92rem}
.wc-fcf-q-ans summary{cursor:pointer;opacity:.72}
.wc-fcf-q-ans p{margin:8px 0 0;line-height:1.5}
.wc-fcf-score{margin:14px 0 0;font-weight:700;font-size:1.02rem;min-height:1.4em}

@media (prefers-reduced-motion:reduce){
  .wc-fcf-shirt circle,.wc-fcf-opt{transition:none}
}

/* ── penalty shoot-out ────────────────────────────────────────────────── */
.wc-fcf-pk-head{margin:0 0 14px;font-size:1.05rem}
.wc-fcf-pks{display:grid;gap:10px}
.wc-fcf-pk-row{display:grid;grid-template-columns:minmax(96px,150px) 1fr;gap:10px;align-items:stretch}
.wc-fcf-pk-club{display:flex;align-items:center;padding:8px 11px;border-radius:8px;
  font-weight:700;font-size:.9rem;line-height:1.25}
.wc-fcf-pk-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:7px}
.wc-fcf-pk{display:flex;align-items:center;gap:6px;padding:6px 10px;border-radius:7px;
  border:1px solid rgba(0,0,0,.14);background:#f8f9fb;font-size:.87rem}
.wc-fcf-pk-mark{font-size:1rem;line-height:1}
.wc-fcf-pk.is-scored{background:#e4f5e8;border-color:#3f9a55}
.wc-fcf-pk.is-scored .wc-fcf-pk-mark{color:#2f7d43}
.wc-fcf-pk.is-missed{background:#fbe9e9;border-color:#c05a5a}
.wc-fcf-pk.is-missed .wc-fcf-pk-mark{color:#b04141}
@media (max-width:520px){
  .wc-fcf-pk-row{grid-template-columns:1fr}
}

/* ── offsite footage: real, official, but the owner disabled embedding ── */
.wc-fcf-card-off{display:block;margin-top:7px;font-size:.62rem;letter-spacing:.09em;
  opacity:.72;line-height:1.35}
.wc-fcf-offlink{display:inline-block;margin-top:6px;font-weight:650}

/* An offsite film is not a broken one: show the real frame behind the glass. */
.wc-fcf-screen-off{display:block;position:absolute;inset:0;text-decoration:none;cursor:pointer}
.wc-fcf-poster{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  filter:saturate(.82) contrast(1.04)}
.wc-fcf-play{position:absolute;top:50%;left:50%;width:17%;padding-top:17%;
  transform:translate(-50%,-50%);border-radius:50%;background:rgba(9,10,9,.62);
  box-shadow:0 0 0 2px rgba(255,255,255,.7) inset}
.wc-fcf-play::after{content:"";position:absolute;top:50%;left:54%;transform:translate(-50%,-50%);
  border-style:solid;border-width:.55em 0 .55em .95em;border-color:transparent transparent transparent #fff}
.wc-fcf-screen-off:hover .wc-fcf-play,.wc-fcf-screen-off:focus .wc-fcf-play{background:rgba(9,10,9,.8)}
.wc-fcf-offbadge{position:absolute;left:6%;right:6%;bottom:7%;text-align:center;
  font-size:.6rem;letter-spacing:.1em;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.9)}
