/* ============================================================
   FNEG — Fédération Nationale d'E-sports de Guinée
   Système visuel : sombre premium · accents drapeau · condensé/impact
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@500;600;700;800;900&family=Saira:wght@400;500;600;700&display=swap');

:root {
  /* Surfaces — neutre très sombre, légèrement froid */
  --bg:          #08090c;
  --bg-2:        #0c0e13;
  --surface:     #121419;
  --surface-2:   #171a21;
  --surface-3:   #1d212a;
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Texte */
  --ink:     #f4f5f7;
  --ink-2:   #aeb2bd;
  --ink-3:   #71757f;

  /* Drapeau guinéen */
  --red:    #ce1126;
  --red-2:  #e8324a;
  --yellow: #fcd116;
  --green:  #009460;
  --green-2:#0fb978;

  /* Lueurs */
  --glow-red:   0 0 0 1px rgba(206,17,38,.5), 0 18px 50px -12px rgba(206,17,38,.55);
  --glow-soft:  0 24px 60px -24px rgba(0,0,0,.85);

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 18px;

  --font-display: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Saira', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--red); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tint { background: var(--bg-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: var(--ink-3);
}

.h-xl { font-family: var(--font-display); font-weight: 900; line-height: .94; letter-spacing: -.01em;
  font-size: clamp(44px, 9vw, 116px); text-transform: uppercase; }
.h-lg { font-family: var(--font-display); font-weight: 800; line-height: .98; letter-spacing: -.005em;
  font-size: clamp(34px, 5.4vw, 68px); text-transform: uppercase; }
.h-md { font-family: var(--font-display); font-weight: 800; line-height: 1; text-transform: uppercase;
  font-size: clamp(24px, 3vw, 36px); }

.lead { color: var(--ink-2); font-size: clamp(16px, 1.5vw, 20px); max-width: 56ch; }
.muted { color: var(--ink-3); }

.flag-text {
  background: linear-gradient(100deg, var(--red) 0%, var(--red) 30%, var(--yellow) 55%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.yellow { color: var(--yellow); }

.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.sec-head .lead { margin-top: 20px; }

/* Tricolor hairline */
.tricolor { height: 4px; width: 100%; border: 0;
  background: linear-gradient(90deg, var(--red) 0 33.33%, var(--yellow) 33.33% 66.66%, var(--green) 66.66%); }

/* ---------- Buttons ---------- */
.btn {
  --bh: 56px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--bh); padding-inline: 26px; border-radius: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 14px 34px -14px rgba(206,17,38,.85); }
.btn--primary:hover { background: var(--red-2); transform: translateY(-2px); box-shadow: 0 20px 44px -14px rgba(206,17,38,.95); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.04); transform: translateY(-2px); }
.btn--sm { --bh: 44px; font-size: 14px; padding-inline: 18px; }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 14px 34px -14px rgba(0,148,96,.8); }
.btn--green:hover { background: var(--green-2); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* Pills / badges */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; border: 1px solid var(--line);
  color: var(--ink-2); background: var(--surface-2);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.badge--open { color: var(--green-2); border-color: rgba(15,185,120,.35); background: rgba(0,148,96,.10); }
.badge--open .dot { box-shadow: 0 0 0 4px rgba(15,185,120,.18); animation: pulse 2s infinite; }
.badge--yellow { color: var(--yellow); border-color: rgba(252,209,22,.3); background: rgba(252,209,22,.08); }
.badge--nat { color: var(--red-2); border-color: rgba(232,50,74,.35); background: rgba(206,17,38,.10); }

@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(15,185,120,.35);} 50% { box-shadow: 0 0 0 6px rgba(15,185,120,0);} }

/* ---------- Placeholders (visuels à fournir) ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 12px, rgba(255,255,255,0) 12px 24px),
    radial-gradient(120% 120% at 70% 10%, rgba(206,17,38,.14), transparent 55%),
    var(--surface);
  border: 1px solid var(--line);
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 14px; bottom: 12px;
  font-family: 'Saira', monospace; font-size: 11px; letter-spacing: .04em;
  color: var(--ink-3); background: rgba(0,0,0,.45); padding: 4px 8px; border-radius: 6px;
}

/* ---------- Médias réels (images / vidéo) ---------- */
.media { position: absolute; inset: 0; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 12px, rgba(255,255,255,0) 12px 24px),
    radial-gradient(120% 120% at 70% 10%, rgba(206,17,38,.14), transparent 55%),
    var(--surface); }
.media-img, .media-video { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; }
.media-img { transition: opacity .4s ease; }
.media-img--missing { opacity: 0; }  /* fichier pas encore fourni → fond sombre propre, pas d'image cassée */

/* Hero — vidéo + voile bas pour la lisibilité des tags flottants */
.hero-media { border-radius: var(--radius); }
.hero-media::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(8,9,12,.85)); }

/* Compétitions — cover + voile haut pour les badges */
.comp .cover { overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 12px, rgba(255,255,255,0) 12px 24px), var(--surface); }
.comp .cover .cover-img { border-bottom: 1px solid var(--line); }
.comp .cover::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,9,12,.55), transparent 42%); }
.comp .cover .badges { z-index: 2; }

/* Portraits joueurs — voile haut+bas, badge & numéro au-dessus */
.pcard .portrait { overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 10px, transparent 10px 20px), var(--surface); }
.pcard .portrait::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,9,12,.35), transparent 28%, transparent 66%, rgba(8,9,12,.6)); }
.pcard .portrait .rk, .pcard .portrait .num { z-index: 2; }

/* Carte de la Guinée (SVG réseau des 8 ligues) */
.mission-visual { background: radial-gradient(circle at 52% 40%, rgba(206,17,38,.07), transparent 62%); }
.mission-visual .map-img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 4%; }

/* Bouton son du hero (clip muet par défaut, activable) */
.play--sound svg { fill: none; stroke: #fff; width: 30px; height: 30px; margin-left: 0; }
.play--sound .snd-on { display: none; }
.play--sound.on { background: var(--red); }
.play--sound.on .snd-on { display: inline; }
.play--sound.on .snd-off { display: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px var(--pad);
  transition: background .3s ease, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(8,9,12,.82); backdrop-filter: blur(14px); border-bottom-color: var(--line); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  font-family: var(--font-display); font-weight: 900; font-size: 22px; letter-spacing: .02em;
  padding: 8px 12px; border-radius: 10px; line-height: 1;
  background: #fff; color: #0a0a0a; position: relative;
}
.brand .mark::before {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 4px;
  background: transparent;
  border-radius: 0 0 10px 10px;
}
.brand .full { display: flex; flex-direction: column; line-height: 1.05; }
.brand .full b { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.brand .full span { font-size: 11px; color: var(--ink-3); letter-spacing: .02em; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink-2); transition: color .2s; position: relative; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-mobile { display: none; }

.burger { display: none; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--line-strong);
  background: var(--surface-2); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .burger span:nth-child(2) { opacity: 0; }
.nav.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .glow-1 { position: absolute; width: 70vw; height: 70vw; top: -25%; right: -15%;
  background: radial-gradient(circle, rgba(206,17,38,.30), transparent 60%); filter: blur(20px); }
.hero-bg .glow-2 { position: absolute; width: 55vw; height: 55vw; bottom: -30%; left: -20%;
  background: radial-gradient(circle, rgba(206,17,38,.14), transparent 60%); filter: blur(20px); }
.hero-bg .grid { position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 75%); }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 72px); align-items: center; width: 100%; }

.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy h1 .line { display: block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-stats { display: flex; gap: clamp(20px, 4vw, 44px); margin-top: 44px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 3.4vw, 42px); display: block; line-height: 1; }
.hero-stats .stat span { font-size: 13px; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }

/* Hero visual */
.hero-visual { position: relative; aspect-ratio: 4 / 5; min-height: 360px; }
.hero-visual .ph { position: absolute; inset: 0; }
.hero-visual .ph::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,9,12,.85));
}
.play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 92px; height: 92px; border-radius: 50%; z-index: 3;
  display: grid; place-items: center; border: 0;
  background: rgba(255,255,255,.10); backdrop-filter: blur(6px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.25);
}
.play::before { content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--red); animation: ring 2.4s ease-out infinite; }
.play svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }
.play:hover { background: var(--red); }
@keyframes ring { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(1.55); opacity: 0; } }

.hero-tag { position: absolute; z-index: 4; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; box-shadow: var(--glow-soft); }
.hero-tag b { font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.hero-tag span { display: block; font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .08em; }
.hero-tag.t1 { top: 8%; left: -6%; }
.hero-tag.t2 { bottom: 12%; right: -8%; }

.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--ink-3);
  display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .bar { width: 1px; height: 34px; background: linear-gradient(var(--ink-3), transparent); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity:.4; transform-origin: top;} 50% { transform: scaleY(1); opacity:1;} }

/* ============================================================
   MISSION
   ============================================================ */
.mission-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.pillars { display: grid; gap: 14px; }
.pillar { display: flex; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: border-color .25s, transform .25s; }
.pillar:hover { border-color: var(--line-strong); transform: translateX(6px); }
.pillar .ic { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); }
.pillar .ic svg { width: 24px; height: 24px; }
.pillar h4 { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; margin-bottom: 4px; }
.pillar p { color: var(--ink-2); font-size: 15px; }
.mission-visual { position: relative; aspect-ratio: 1 / 1; }
.mission-visual .ph { position: absolute; inset: 0; }

/* Stat band inside mission visual */
.map-stat { position: absolute; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 16px; box-shadow: var(--glow-soft); }
.map-stat b { font-family: var(--font-display); font-weight: 900; font-size: 26px; display: block; line-height: 1; }
.map-stat span { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.map-stat.m1 { top: 14px; left: 14px; }
.map-stat.m2 { bottom: 14px; right: 14px; }

/* ============================================================
   COMPÉTITIONS
   ============================================================ */
.comp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.comp {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); overflow: hidden; transition: transform .28s ease, border-color .28s, box-shadow .28s;
}
.comp:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--glow-soft); }
.comp .cover { position: relative; aspect-ratio: 16 / 9; }
.comp .cover .ph { position: absolute; inset: 0; border-radius: 0; border: 0; border-bottom: 1px solid var(--line); }
.comp .cover .badges { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; gap: 8px; }
.comp .body { padding: 20px; }
.comp .meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.comp h4 { font-family: var(--font-display); font-weight: 800; font-size: 24px; text-transform: uppercase; line-height: 1; margin-bottom: 8px; }
.comp .game { color: var(--ink-3); font-size: 14px; }
.comp .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid var(--line); }
.comp .dates { font-size: 13px; color: var(--ink-2); }
.comp .dates b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); text-transform: uppercase; }

/* ============================================================
   MATCHS À VENIR
   ============================================================ */
.matches { display: grid; gap: 12px; }
.match {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px;
  padding: 18px 24px; border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(90deg, var(--surface), var(--surface-2));
  transition: border-color .25s, box-shadow .25s;
}
.match:hover { border-color: var(--line-strong); box-shadow: 0 0 0 1px rgba(232,50,74,.15), var(--glow-soft); }
.match .side { display: flex; align-items: center; gap: 14px; min-width: 0; }
.match .side.right { justify-content: flex-end; text-align: right; flex-direction: row-reverse; }
.match .logo { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 10px; background: var(--surface-3);
  border: 1px solid var(--line); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 18px; }
.match .who { min-width: 0; }
.match .who b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; line-height: 1.05; }
.match .who span { display: block; font-size: 12px; color: var(--ink-3); margin-top: 5px; }
.match .center { text-align: center; }
.match .vs { font-family: var(--font-display); font-weight: 900; font-size: 14px; color: var(--ink-3); letter-spacing: .1em; }
.match .countdown { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: .04em;
  color: var(--yellow); font-variant-numeric: tabular-nums; line-height: 1.1; }
.match .live { color: var(--red-2); }
.match .stage { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }

/* ============================================================
   COMMENT ÇA MARCHE
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: transform .25s, border-color .25s; }
.step:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.step .num { counter-increment: step; font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--line-strong); margin-bottom: 18px; }
.step .num::before { content: "0" counter(step); }
.step .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); margin-bottom: 16px; }
.step .ic svg { width: 22px; height: 22px; }
.step h4 { font-family: var(--font-display); font-weight: 800; font-size: 21px; text-transform: uppercase; margin-bottom: 8px; line-height: 1; }
.step p { color: var(--ink-2); font-size: 14px; }
.step::after { content: ""; position: absolute; top: 44px; right: -10px; width: 20px; height: 2px; background: var(--line-strong); }
.step:last-child::after { display: none; }

/* ============================================================
   JEU PHARE (EA SPORTS FC)
   ============================================================ */
.featured { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.featured.rev { grid-template-columns: 1.05fr .95fr; }
.featured-media { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 12px, rgba(255,255,255,0) 12px 24px), radial-gradient(120% 120% at 70% 10%, rgba(206,17,38,.14), transparent 55%), var(--surface); }
.featured .copy .eyebrow { margin-bottom: 18px; }
.featured .copy h3 { margin-bottom: 18px; }
.featured .feat-list { display: grid; gap: 12px; margin-top: 26px; }
.featured .feat-list li { display: flex; gap: 12px; align-items: flex-start; list-style: none; color: var(--ink-2); }
.featured .feat-list .chk { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center;
  background: rgba(0,148,96,.14); border: 1px solid rgba(15,185,120,.3); }
.featured .feat-list .chk svg { width: 13px; height: 13px; stroke: var(--ink); }
.featured .feat-list b { color: var(--ink); }

/* ============================================================
   CLASSEMENT
   ============================================================ */
.lb-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.lb-head, .lb-row { display: grid; grid-template-columns: 64px 1fr 130px 120px; align-items: center; gap: 16px; padding: 16px 24px; }
.lb-head { background: var(--surface-2); border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.lb-row { border-bottom: 1px solid var(--line); transition: background .2s; }
.lb-row:last-child { border-bottom: 0; }
.lb-row:hover { background: var(--surface-2); }
.lb-rank { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: var(--ink-3); }
.lb-row.top1 .lb-rank { color: var(--yellow); }
.lb-row.top2 .lb-rank, .lb-row.top3 .lb-rank { color: var(--ink); }
.lb-player { display: flex; align-items: center; gap: 14px; min-width: 0; }
.lb-player .av { width: 42px; height: 42px; border-radius: 10px; flex: 0 0 auto;
  display: grid; place-items: center; overflow: hidden; line-height: 1;
  font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .01em;
  color: #fff; text-transform: uppercase;
  background: linear-gradient(140deg, rgba(206,17,38,.95), rgba(15,185,120,.85));
  border: 1px solid var(--line-strong); box-shadow: inset 0 1px 0 rgba(255,255,255,.18); }
.lb-row.top1 .av { background: linear-gradient(140deg, #ce1126, #fcd116); color: #0a0a0a; }
.lb-row.top2 .av { background: linear-gradient(140deg, #e8324a, #ce1126); }
.lb-row.top3 .av { background: linear-gradient(140deg, #0fb978, #009460); }
.lb-player b { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; line-height: 1; display: block; }
.lb-player span { font-size: 12px; color: var(--ink-3); }
.lb-region { font-size: 14px; color: var(--ink-2); }
.lb-pts { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-align: right; font-variant-numeric: tabular-nums; }
.lb-pts em { font-style: normal; font-size: 12px; color: var(--ink-3); font-family: var(--font-body); font-weight: 500; }
.lb-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; flex-wrap: wrap; }

/* trend chips */
.trend { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.trend.up { color: var(--green-2); }
.trend.down { color: var(--red-2); }

/* ============================================================
   JOUEURS À SUIVRE (carrousel)
   ============================================================ */
.carousel { position: relative; }
.track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 10px; scrollbar-width: none; }
.track::-webkit-scrollbar { display: none; }
.pcard { flex: 0 0 clamp(240px, 26vw, 290px); scroll-snap-align: start;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface);
  transition: transform .25s, border-color .25s; }
.pcard:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.pcard .portrait { position: relative; aspect-ratio: 3 / 4; }
.pcard .portrait .ph { position: absolute; inset: 0; border-radius: 0; border: 0; }
.pcard .portrait .rk { position: absolute; top: 12px; left: 12px; }
.pcard .portrait .num { position: absolute; bottom: 10px; right: 14px; font-family: var(--font-display);
  font-weight: 900; font-size: 60px; color: rgba(255,255,255,.12); line-height: 1; }
.pcard .pbody { padding: 16px 18px; }
.pcard h4 { font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase; line-height: 1; }
.pcard .reg { font-size: 13px; color: var(--ink-3); margin-top: 3px; }
.pcard .pstats { display: flex; gap: 18px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.pcard .pstats div b { font-family: var(--font-display); font-weight: 800; font-size: 18px; display: block; line-height: 1; }
.pcard .pstats div span { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.car-nav { display: flex; gap: 10px; }
.car-nav button { width: 48px; height: 48px; border-radius: 12px; border: 1px solid var(--line-strong);
  background: var(--surface-2); color: var(--ink); display: grid; place-items: center; transition: .2s; }
.car-nav button:hover { background: var(--surface-3); border-color: #fff; }
.car-nav button svg { width: 20px; height: 20px; }

/* ============================================================
   APPEL À REJOINDRE
   ============================================================ */
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.join-card { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.join-card .glow { position: absolute; width: 60%; height: 60%; top: -20%; right: -10%; filter: blur(40px); z-index: 0; }
.join-card.players .glow { background: radial-gradient(circle, rgba(206,17,38,.30), transparent 60%); }
.join-card.clubs .glow { background: radial-gradient(circle, rgba(206,17,38,.20), transparent 60%); }
.join-card > * { position: relative; z-index: 1; }
.join-card .tag { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-3); }
.join-card h3 { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 3.4vw, 44px);
  text-transform: uppercase; line-height: .98; margin: 12px 0 14px; }
.join-card p { color: var(--ink-2); max-width: 42ch; margin-bottom: 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.cta-band { position: relative; overflow: hidden; text-align: center;
  padding-block: clamp(60px, 9vw, 110px); background: var(--bg-2); border-top: 1px solid var(--line); }
.cta-band .glow { position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(206,17,38,.18), transparent 60%); }
.cta-band > .wrap { position: relative; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .lead { margin-inline: auto; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 88px); }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.foot-brand .brand { margin-bottom: 18px; }
.foot-brand p { color: var(--ink-2); max-width: 34ch; font-size: 15px; }
.signup { margin-top: 24px; }
.signup label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.signup .field { display: flex; gap: 10px; }
.signup input { flex: 1; height: 52px; padding: 0 16px; border-radius: 12px; border: 1px solid var(--line-strong);
  background: var(--surface); color: var(--ink); font-family: inherit; font-size: 15px; transition: border-color .2s; }
.signup input::placeholder { color: var(--ink-3); }
.signup input:focus { outline: none; border-color: var(--red); }
.signup .ok { color: var(--green-2); font-size: 14px; margin-top: 10px; display: none; font-weight: 600; }
.signup.done .ok { display: block; }

.foot-col h5 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--ink-2); font-size: 15px; padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: var(--ink); }

.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 24px 0; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 14px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface);
  display: grid; place-items: center; transition: .2s; }
.socials a:hover { border-color: var(--line-strong); background: var(--surface-2); }
.socials svg { width: 18px; height: 18px; fill: var(--ink-2); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .js .reveal.in { opacity: 1; transform: none; }
  .js .reveal[data-d="1"] { transition-delay: .08s; }
  .js .reveal[data-d="2"] { transition-delay: .16s; }
  .js .reveal[data-d="3"] { transition-delay: .24s; }
  .js .reveal[data-d="4"] { transition-delay: .32s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 920px) {
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .burger { display: flex; }
  .nav-mobile { position: fixed; inset: 0; z-index: 99; background: rgba(8,9,12,.97); backdrop-filter: blur(10px);
    display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: var(--pad);
    transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
  .nav.open .nav-mobile { transform: none; }
  .nav-mobile a { font-family: var(--font-display); font-weight: 800; font-size: 30px; text-transform: uppercase;
    padding: 10px 0; border-bottom: 1px solid var(--line); }
  .nav-mobile .btn { margin-top: 20px; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/12; min-height: 300px; }
  .hero-tag.t1 { left: 2%; } .hero-tag.t2 { right: 2%; }
  .mission-grid, .featured, .featured.rev { grid-template-columns: 1fr; }
  .featured-media { order: -1; }
  .join-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .lb-head { display: none; }
  .lb-row { grid-template-columns: 44px 1fr auto; gap: 12px; padding: 14px 16px; }
  .lb-region { display: none; }
  .match { grid-template-columns: 1fr; gap: 14px; text-align: center; padding: 18px; }
  .match .side, .match .side.right { justify-content: center; flex-direction: column; text-align: center; gap: 8px; }
  .hero-stats { gap: 24px; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
