/* ========================================================================
   FOOT VERTICAL — quiz.css  |  « Scoreboard Arcade »
   Le tableau d'affichage du stade transformé en machine à quiz :
   LED (VT323), chrono circulaire, pips de progression, classement lumineux.
   ======================================================================== */

.fvq {
  --fvq-led:    #2BFF7E;
  --fvq-facile: var(--fv-green);
  --fvq-inter:  var(--fv-gold);
  --fvq-diff:   var(--fv-red);
  position: relative;
  min-height: calc(100svh - 72px);
  padding: 48px 0 90px;
  overflow: hidden;
  isolation: isolate;
}

/* Ambiance : halo de projecteurs + vignette */
.fvq::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(55% 38% at 18% 0%, rgba(214, 236, 255, 0.07), transparent 60%),
    radial-gradient(55% 38% at 82% 0%, rgba(214, 236, 255, 0.07), transparent 60%),
    radial-gradient(120% 80% at 50% 110%, rgba(0, 224, 90, 0.06), transparent 55%);
}

.fvq-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* L'attribut hidden doit TOUJOURS gagner, même sur les éléments qui
   déclarent un display explicite (l'UA stylesheet est sinon écrasée —
   c'est ce qui laissait l'overlay 3-2-1 bloqué à l'écran). */
.fvq [hidden], .fvq-screen[hidden] { display: none !important; }

/* Entrée d'écran */
.fvq-screen.is-on .fvq-wrap > * {
  animation: fvqUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.fvq-screen.is-on .fvq-wrap > *:nth-child(2) { animation-delay: 0.07s; }
.fvq-screen.is-on .fvq-wrap > *:nth-child(3) { animation-delay: 0.14s; }
.fvq-screen.is-on .fvq-wrap > *:nth-child(4) { animation-delay: 0.21s; }
.fvq-screen.is-on .fvq-wrap > *:nth-child(5) { animation-delay: 0.28s; }
.fvq-screen.is-on .fvq-wrap > *:nth-child(6) { animation-delay: 0.35s; }

@keyframes fvqUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ */
/* Typo commune                                                        */
/* ------------------------------------------------------------------ */
.fvq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fv-green);
  margin: 0 0 14px;
}

.fvq-title {
  font-family: var(--fv-font-scoreboard);
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.9;
  color: var(--fv-white);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.fvq-title span { color: var(--fv-green); text-shadow: 0 0 44px rgba(0, 224, 90, 0.4); }
.fvq-title--sm { font-size: clamp(34px, 5vw, 52px); }

.fvq-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--fv-grey-700);
  margin: 0 0 36px;
}

.fvq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fv-grey-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--fv-font-body);
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}
.fvq-btn:hover { transform: translateY(-2px); border-color: var(--fv-grey-500); }
.fvq-btn--green {
  background: var(--fv-green);
  border-color: var(--fv-green);
  color: var(--fv-black);
}
.fvq-btn--green:hover { box-shadow: 0 10px 30px -10px rgba(0, 224, 90, 0.65); border-color: var(--fv-green); }

.fvq-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* ------------------------------------------------------------------ */
/* Écran 1 — modes                                                     */
/* ------------------------------------------------------------------ */
.fvq-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 720px) { .fvq-modes { grid-template-columns: 1fr; } }

.fvq-mode {
  --accent: var(--fvq-facile);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 20px 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--fv-border);
  border-top: 3px solid var(--accent);
  border-radius: var(--fv-radius-md);
  cursor: pointer;
  text-align: left;
  font-family: var(--fv-font-body);
  color: var(--fv-grey-900);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.fvq-mode::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% -30%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.fvq-mode:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 44px -20px color-mix(in srgb, var(--accent) 55%, transparent);
}
.fvq-mode:hover::after { opacity: 1; }
.fvq-mode--inter     { --accent: var(--fvq-inter); }
.fvq-mode--difficile { --accent: var(--fvq-diff); }

.fvq-mode-name {
  font-family: var(--fv-font-scoreboard);
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fv-white);
  line-height: 1;
}

.fvq-mode-pips { display: flex; gap: 4px; }
.fvq-mode-pips i {
  width: 14px;
  height: 5px;
  border-radius: 3px;
  background: var(--pip, var(--fv-border));
}

.fvq-mode-compo {
  font-size: 11.5px;
  color: var(--fv-grey-700);
  letter-spacing: 0.3px;
}

.fvq-mode-go {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}

/* ------------------------------------------------------------------ */
/* Panneaux / classement                                               */
/* ------------------------------------------------------------------ */
.fvq-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius-lg);
  padding: 20px 22px;
  margin-top: 26px;
}

.fvq-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--fv-border);
}

.fvq-panel-title {
  font-family: var(--fv-font-scoreboard);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fv-grey-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fvq-panel-title i { color: var(--fv-gold); }

.fvq-tabs { display: flex; gap: 6px; }
.fvq-tab {
  padding: 6px 13px;
  border: 1px solid var(--fv-border);
  border-radius: 30px;
  background: none;
  color: var(--fv-grey-700);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--fv-font-body);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.fvq-tab:hover { color: var(--fv-white); }
.fvq-tab.is-on {
  background: var(--fv-green);
  border-color: var(--fv-green);
  color: var(--fv-black);
}

.fvq-board-list { list-style: none; margin: 0; padding: 0; }
.fvq-board-list li {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 14px;
  align-items: baseline;
  padding: 9px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
}
.fvq-board-list li:last-child { border-bottom: none; }
.fvq-board-list--big li { padding: 13px 8px; font-size: 15px; }

.fvq-rank-n {
  font-family: 'VT323', monospace;
  font-size: 20px;
  color: var(--fv-grey-500);
  text-align: right;
}
li:nth-child(1) .fvq-rank-n { color: var(--fv-gold); text-shadow: 0 0 10px rgba(232, 184, 75, 0.6); }
li:nth-child(2) .fvq-rank-n { color: #cfd8e3; }
li:nth-child(3) .fvq-rank-n { color: #d89a62; }

.fvq-board-name { color: var(--fv-white); font-weight: 600; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fvq-board-score {
  font-family: 'VT323', monospace;
  font-size: 20px;
  color: var(--fvq-led);
  text-shadow: 0 0 8px rgba(43, 255, 126, 0.5);
}
.fvq-board-time { font-family: 'VT323', monospace; font-size: 17px; color: var(--fv-grey-500); }

.fvq-board-list li.is-me {
  background: linear-gradient(90deg, rgba(0, 224, 90, 0.12), transparent 75%);
  border-radius: 6px;
}
.fvq-board-list li.is-me .fvq-board-name { color: var(--fv-green); }

.fvq-board-list li.fvq-board-empty {
  display: block;
  padding: 22px 6px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--fv-grey-500);
  font-size: 14.5px;
  border-bottom: none;
}

/* ------------------------------------------------------------------ */
/* Écran 2 — jeu                                                       */
/* ------------------------------------------------------------------ */
.fvq-hud {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.fvq-counter {
  font-family: 'VT323', monospace;
  font-size: 26px;
  color: var(--fv-grey-700);
  letter-spacing: 1px;
  white-space: nowrap;
}
.fvq-counter b { color: var(--fvq-led); font-weight: 400; text-shadow: 0 0 10px rgba(43, 255, 126, 0.6); }
.fvq-counter i { font-style: normal; }

.fvq-pips { display: flex; gap: 6px; flex: 1; }
.fvq-pips i {
  width: 100%;
  max-width: 26px;
  height: 6px;
  border-radius: 3px;
  background: var(--fv-surface-3);
  transition: background 0.3s, box-shadow 0.3s;
}
.fvq-pips i.is-now { background: var(--fv-grey-500); animation: fvqPulse 1s ease-in-out infinite; }
.fvq-pips i.is-ok  { background: var(--fv-green); box-shadow: 0 0 8px rgba(0, 224, 90, 0.55); }
.fvq-pips i.is-ko  { background: var(--fv-red); }
@keyframes fvqPulse { 50% { opacity: 0.45; } }

.fvq-streak {
  font-size: 15px;
  white-space: nowrap;
  animation: fvqStreakIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fvq-streak b { font-family: 'VT323', monospace; font-size: 22px; color: var(--fv-gold); text-shadow: 0 0 10px rgba(232, 184, 75, 0.6); }
@keyframes fvqStreakIn { from { transform: scale(0.4); } }

.fvq-stage { text-align: center; }

/* Chrono circulaire */
.fvq-timer {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 22px;
}
.fvq-timer svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.fvq-ring-bg, .fvq-ring {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
}
.fvq-ring-bg { stroke: var(--fv-surface-3); }
.fvq-ring {
  stroke: var(--fv-green);
  stroke-dasharray: 339.3;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 6px rgba(0, 224, 90, 0.6));
  transition: stroke 0.3s;
}
.fvq-timer.warn  .fvq-ring { stroke: var(--fv-gold); filter: drop-shadow(0 0 6px rgba(232, 184, 75, 0.6)); }
.fvq-timer.danger .fvq-ring { stroke: var(--fv-red); filter: drop-shadow(0 0 8px rgba(255, 23, 68, 0.7)); }
.fvq-timer.danger { animation: fvqShiver 0.4s ease-in-out infinite; }
@keyframes fvqShiver { 25% { transform: translateX(-1px); } 75% { transform: translateX(1px); } }

.fvq-secs {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'VT323', monospace;
  font-size: 46px;
  color: var(--fvq-led);
  text-shadow: 0 0 14px rgba(43, 255, 126, 0.6);
}
.fvq-timer.danger .fvq-secs { color: #ff8fa5; text-shadow: 0 0 14px rgba(255, 23, 68, 0.7); }

.fvq-qlevel {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
  background: rgba(0, 224, 90, 0.14);
  color: var(--fv-green);
}
.fvq-qlevel.is-2 { background: rgba(232, 184, 75, 0.14); color: var(--fv-gold); }
.fvq-qlevel.is-3 { background: rgba(255, 23, 68, 0.14);  color: #ff8fa5; }

.fvq-question {
  font-family: var(--fv-font-scoreboard);
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.08;
  color: var(--fv-white);
  text-transform: none;
  letter-spacing: 0.01em;
  margin: 0 auto 30px;
  max-width: 760px;
  min-height: 2.2em;
  text-wrap: balance;
}

.fvq-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 640px) { .fvq-answers { grid-template-columns: 1fr; } }

.fvq-answer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius-md);
  color: var(--fv-grey-900);
  font-family: var(--fv-font-body);
  font-size: 15.5px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
  animation: fvqUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.fvq-answer:nth-child(2) { animation-delay: 0.05s; }
.fvq-answer:nth-child(3) { animation-delay: 0.1s; }
.fvq-answer:nth-child(4) { animation-delay: 0.15s; }
.fvq-answer:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: var(--fv-green);
  background: rgba(0, 224, 90, 0.06);
}
.fvq-answer:disabled { cursor: default; }

.fvq-answer-letter {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--fv-border);
  border-radius: 6px;
  font-family: 'VT323', monospace;
  font-size: 19px;
  color: var(--fv-grey-500);
  transition: all 0.2s;
}

.fvq-answer.is-right {
  border-color: var(--fv-green);
  background: rgba(0, 224, 90, 0.16);
  color: var(--fv-white);
  animation: fvqRight 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fvq-answer.is-right .fvq-answer-letter { background: var(--fv-green); border-color: var(--fv-green); color: var(--fv-black); }
@keyframes fvqRight { 30% { transform: scale(1.03); } }

.fvq-answer.is-wrong {
  border-color: var(--fv-red);
  background: rgba(255, 23, 68, 0.13);
  animation: fvqWrong 0.4s;
}
.fvq-answer.is-wrong .fvq-answer-letter { background: var(--fv-red); border-color: var(--fv-red); color: #fff; }
@keyframes fvqWrong { 25% { transform: translateX(-6px); } 50% { transform: translateX(5px); } 75% { transform: translateX(-3px); } }

.fvq-answer.is-faded { opacity: 0.35; }

.fvq-keys { margin: 22px 0 0; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--fv-grey-500); }
@media (hover: none) { .fvq-keys { visibility: hidden; } }

/* Compte à rebours 3-2-1 */
.fvq-count {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(6, 9, 17, 0.88);
  backdrop-filter: blur(4px);
  z-index: 5;
  border-radius: var(--fv-radius-lg);
}
.fvq-count span {
  font-family: 'VT323', monospace;
  font-size: 160px;
  color: var(--fvq-led);
  text-shadow: 0 0 40px rgba(43, 255, 126, 0.7);
  animation: fvqCount 0.82s ease-in-out infinite;
}
@keyframes fvqCount { from { transform: scale(1.25); opacity: 0; } 30% { opacity: 1; } to { transform: scale(0.9); } }

/* ------------------------------------------------------------------ */
/* Écran 3 — résultat                                                  */
/* ------------------------------------------------------------------ */
.fvq-result .fvq-wrap, .fvq-board .fvq-wrap { text-align: center; }
.fvq-result .fvq-panel, .fvq-board .fvq-panel { text-align: left; }

.fvq-score {
  font-family: 'VT323', monospace;
  font-size: clamp(96px, 16vw, 150px);
  line-height: 0.9;
  color: var(--fvq-led);
  text-shadow: 0 0 36px rgba(43, 255, 126, 0.55);
  margin-bottom: 6px;
}
.fvq-score i { font-style: normal; font-size: 0.45em; color: var(--fv-grey-500); text-shadow: none; }

.fvq-time {
  font-family: 'VT323', monospace;
  font-size: 26px;
  color: var(--fv-grey-700);
  margin: 0 0 10px;
}
.fvq-time i { color: var(--fv-green); font-size: 20px; }

.fvq-verdict {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 23px);
  color: var(--fv-white);
  margin: 0 auto 30px;
  max-width: 560px;
}

.fvq-save { max-width: 520px; margin: 0 auto; }
.fvq-save label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fv-grey-700);
  margin-bottom: 10px;
}
.fvq-save-row { display: flex; gap: 10px; }
.fvq-save input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  background: var(--fv-black);
  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius-sm);
  color: var(--fv-white);
  font-family: var(--fv-font-body);
  font-size: 15px;
  transition: border-color 0.2s;
}
.fvq-save input:focus { outline: none; border-color: var(--fv-green); }
.fvq-save-err { margin: 10px 0 0; font-size: 13px; color: #ff8fa5; }
.fvq-save-note { font-size: 12.5px; color: var(--fv-grey-500); font-style: italic; }
.fvq-save.is-done { display: none; }

.fvq-recap { list-style: none; margin: 0; padding: 0; }
.fvq-recap li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13.5px;
  color: var(--fv-grey-900);
}
.fvq-recap li:last-child { border-bottom: none; }
.fvq-recap .ico { font-size: 15px; line-height: 1.4; }
.fvq-recap li.ok .ico { color: var(--fv-green); }
.fvq-recap li.ko .ico { color: var(--fv-red); }
.fvq-recap .rep { display: block; font-size: 12.5px; color: var(--fv-grey-500); margin-top: 2px; }
.fvq-recap .rep b { color: var(--fv-green); font-weight: 600; }
.fvq-recap .skip { color: var(--fv-gold); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

/* Confettis (score >= 8) */
.fvq-confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fvq-confetti i {
  position: absolute;
  top: -16px;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  animation: fvqFall linear forwards;
}
@keyframes fvqFall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0.6; }
}

.fvq-rank-line { font-size: 16px; color: var(--fv-grey-900); margin: 0 0 8px; }
.fvq-rank-line b {
  font-family: 'VT323', monospace;
  font-size: 24px;
  color: var(--fv-gold);
  text-shadow: 0 0 12px rgba(232, 184, 75, 0.55);
}

/* ------------------------------------------------------------------ */
/* Compte à rebours du coup d'envoi (home, jour de match)              */
/* ------------------------------------------------------------------ */
.fv-kickoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  padding: 20px 28px;
  border: 1px solid rgba(255, 23, 68, 0.4);
  border-radius: var(--fv-radius-lg);
  background:
    radial-gradient(130% 220% at 50% -80%, rgba(255, 23, 68, 0.14), transparent 55%),
    var(--fv-surface);
  position: relative;
  overflow: hidden;
}

/* Trame d'écran géant */
.fv-kickoff::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, 0.3) 3px 4px);
}

.fv-kickoff > * { position: relative; }

.fv-kickoff__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fv-font-scoreboard);
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fv-white);
}

.fv-kickoff__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fv-red);
  box-shadow: 0 0 12px var(--fv-red);
  animation: fvKickBlink 1.1s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes fvKickBlink { 50% { opacity: 0.25; } }

.fv-kickoff__cells {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fv-kickoff__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 74px;
  padding: 10px 8px 8px;
  background: linear-gradient(180deg, #050b08, #03130b);
  border: 1px solid rgba(43, 255, 126, 0.35);
  border-radius: 6px;
  box-shadow: 0 0 22px rgba(0, 224, 90, 0.1), inset 0 0 16px rgba(0, 0, 0, 0.7);
}

.fv-kickoff__cell b {
  font-family: 'VT323', monospace;
  font-weight: 400;
  font-size: 42px;
  line-height: 0.85;
  color: #2BFF7E;
  text-shadow: 0 0 12px rgba(43, 255, 126, 0.65);
  font-variant-numeric: tabular-nums;
}

.fv-kickoff__cell i {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fv-grey-500);
}

.fv-kickoff__sep {
  font-family: 'VT323', monospace;
  font-size: 34px;
  color: rgba(43, 255, 126, 0.55);
  animation: fvKickBlink 1s steps(1) infinite;
  transform: translateY(-7px);
}

.fv-kickoff__match {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fv-kickoff__match b {
  font-family: var(--fv-font-scoreboard);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 1px;
  color: var(--fv-white);
  text-transform: uppercase;
}

.fv-kickoff__match b span {
  color: var(--fv-red);
  font-size: 15px;
  margin: 0 4px;
}

.fv-kickoff__match em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--fv-grey-700);
}

@media (max-width: 900px) {
  .fv-kickoff { justify-content: center; text-align: center; }
  .fv-kickoff__label { text-align: left; }
  .fv-kickoff__match { text-align: center; align-items: center; }
}

@media (max-width: 480px) {
  .fv-kickoff { padding: 18px 14px; gap: 18px; }
  .fv-kickoff__cell { min-width: 58px; padding: 8px 6px 6px; }
  .fv-kickoff__cell b { font-size: 32px; }
  .fv-kickoff__sep { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .fv-kickoff__dot, .fv-kickoff__sep { animation: none; }
}

/* ------------------------------------------------------------------ */
/* Carte d'appel sur la home                                           */
/* ------------------------------------------------------------------ */
.fv-quiz-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid rgba(43, 255, 126, 0.3);
  border-radius: var(--fv-radius-lg);
  background:
    radial-gradient(110% 160% at 12% -40%, rgba(0, 224, 90, 0.12), transparent 55%),
    var(--fv-surface);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}
.fv-quiz-cta:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -22px rgba(0, 224, 90, 0.45); }
.fv-quiz-cta::after {
  content: '?';
  position: absolute;
  right: 120px;
  top: -46px;
  font-family: var(--fv-font-scoreboard);
  font-size: 200px;
  color: rgba(43, 255, 126, 0.05);
  pointer-events: none;
}

.fv-quiz-cta__timer {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}
.fv-quiz-cta__timer svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.fv-quiz-cta__timer circle { fill: none; stroke-width: 6; }
.fv-quiz-cta__timer .bg { stroke: var(--fv-surface-3); }
.fv-quiz-cta__timer .fg {
  stroke: var(--fv-green);
  stroke-dasharray: 188.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(0, 224, 90, 0.6));
  animation: fvqCtaTick 5s linear infinite;
}
@keyframes fvqCtaTick { from { stroke-dashoffset: 0; } to { stroke-dashoffset: 188.5; } }
.fv-quiz-cta__timer span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'VT323', monospace;
  font-size: 30px;
  color: #2BFF7E;
  text-shadow: 0 0 10px rgba(43, 255, 126, 0.6);
}

.fv-quiz-cta__txt h2 {
  font-family: var(--fv-font-scoreboard);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--fv-white);
  text-transform: uppercase;
  margin: 0 0 6px;
  letter-spacing: 0.5px;
}
.fv-quiz-cta__txt h2 b { color: var(--fv-green); font-weight: 400; }
.fv-quiz-cta__txt p {
  margin: 0;
  font-size: 14px;
  color: var(--fv-grey-700);
}

.fv-quiz-cta__go {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fv-green);
  color: var(--fv-black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--fv-radius-sm);
}

@media (max-width: 760px) {
  .fv-quiz-cta { grid-template-columns: auto 1fr; }
  .fv-quiz-cta__go { grid-column: 1 / -1; justify-content: center; }
}

/* ------------------------------------------------------------------ */
/* Accessibilité                                                       */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .fvq *, .fvq *::before, .fvq *::after,
  .fv-quiz-cta, .fv-quiz-cta * { animation: none !important; transition: none !important; }
  .fvq-screen.is-on .fvq-wrap > *, .fvq-answer { opacity: 1; transform: none; }
}
