/* ==========================================================================
   Jamono Fatick FC — Design system
   Académie Sportive du Sine — Ligue 2 sénégalaise
   ========================================================================== */

:root{
  --red:#e4001a;
  --red-dark:#a8000f;
  --red-light:#ff3b52;
  --blue:#38b5ff;
  --blue-dark:#0d7fc4;
  --navy:#080f1f;
  --navy-2:#0e1b33;
  --navy-3:#132340;
  --ink:#0a1224;
  --paper:#f7f8fb;
  --white:#ffffff;
  --muted:#8a93a8;
  --muted-2:#5c6579;
  --line:#e6e9f0;
  --line-dark:rgba(255,255,255,.10);
  --success:#1fae6b;
  --warn:#f5a623;

  --grad-brand: linear-gradient(135deg, var(--red) 0%, #ff5a3c 55%, var(--blue) 130%);
  --grad-navy: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #0c1c38 100%);
  --grad-red: linear-gradient(135deg, var(--red-dark), var(--red) 60%, var(--red-light));

  --shadow-sm: 0 2px 10px rgba(8,15,31,.06);
  --shadow-md: 0 10px 30px rgba(8,15,31,.10);
  --shadow-lg: 0 24px 60px rgba(8,15,31,.18);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,.06), 0 20px 50px rgba(228,0,26,.18);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1220px;
  --header-h: 78px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family: var(--font-head); margin:0 0 .5em; line-height:1.15; color:var(--navy); }
p{ margin:0 0 1em; color:var(--muted-2); line-height:1.7; }
button{ font-family:inherit; }
svg{ display:block; width:1.1em; height:1.1em; flex-shrink:0; }
.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ position:relative; }

/* ---------- Skip link / a11y ---------- */
.skip-link{
  position:absolute; left:-999px; top:0; background:var(--red); color:#fff;
  padding:12px 18px; border-radius:0 0 10px 0; z-index:9999; font-weight:600;
}
.skip-link:focus{ left:0; }

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-head); font-weight:700; font-size:.72rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--red);
  background: rgba(228,0,26,.08); padding:7px 14px; border-radius:var(--radius-pill);
  margin-bottom:16px;
}
.eyebrow::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--red); box-shadow:0 0 0 4px rgba(228,0,26,.18); }
.eyebrow.on-dark{ color:#ffd0d6; background:rgba(255,255,255,.08); }
.eyebrow.on-dark::before{ background:var(--blue); box-shadow:0 0 0 4px rgba(56,181,255,.22); }

.section-head{ max-width:680px; margin-bottom:44px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.7rem,3.4vw,2.5rem); }
.section-head p{ font-size:1.03rem; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-head); font-weight:600; font-size:.92rem;
  padding:14px 26px; border-radius:var(--radius-pill); border:none; cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-primary{ background:var(--grad-red); color:#fff; box-shadow:0 10px 24px rgba(228,0,26,.32); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 32px rgba(228,0,26,.4); }
.btn-ghost{ background:rgba(255,255,255,.08); color:#fff; border:1px solid rgba(255,255,255,.35); backdrop-filter:blur(6px); }
.btn-ghost:hover{ background:rgba(255,255,255,.18); transform:translateY(-3px); }
.btn-outline{ background:transparent; color:var(--navy); border:1.5px solid var(--line); }
.btn-outline:hover{ border-color:var(--red); color:var(--red); transform:translateY(-3px); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:.82rem; }

.tag{
  display:inline-flex; align-items:center; gap:6px; font-size:.72rem; font-weight:700;
  letter-spacing:.04em; text-transform:uppercase; padding:5px 11px; border-radius:var(--radius-pill);
  background:var(--paper); color:var(--muted-2); border:1px solid var(--line);
}
.tag.tag-home{ background:rgba(31,174,107,.1); color:var(--success); border-color:transparent; }
.tag.tag-away{ background:rgba(56,181,255,.12); color:var(--blue-dark); border-color:transparent; }
.tag.tag-live{ background:rgba(228,0,26,.12); color:var(--red); border-color:transparent; }

.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-delay-1{ transition-delay:.08s; } .reveal-delay-2{ transition-delay:.16s; }
.reveal-delay-3{ transition-delay:.24s; } .reveal-delay-4{ transition-delay:.32s; }

/* ================= HEADER ================= */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:1000; height:var(--header-h);
  display:flex; align-items:center;
  background:rgba(8,15,31,.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled{ background:rgba(8,15,31,.92); box-shadow:0 10px 30px rgba(0,0,0,.25); }
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; width:100%; }

.brand{ display:flex; align-items:center; gap:10px; color:#fff; flex-shrink:0; }
.brand img{ width:38px; height:38px; object-fit:contain; filter:drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; white-space:nowrap; }
.brand-text strong{ font-family:var(--font-head); font-size:.88rem; letter-spacing:.01em; }
.brand-text span{ font-size:.58rem; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); font-weight:600; }

.nav-desktop{ display:flex; align-items:center; gap:0; flex-shrink:1; }
.nav-desktop a{
  color:rgba(255,255,255,.82); font-family:var(--font-head); font-weight:500; font-size:.78rem;
  padding:9px 11px; border-radius:var(--radius-pill); position:relative; transition:color .2s, background .2s;
  white-space:nowrap;
}
.nav-desktop a:hover{ color:#fff; background:rgba(255,255,255,.08); }
.nav-desktop a.active{ color:#fff; background:rgba(228,0,26,.28); }
.header-actions{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.header-social{ display:flex; align-items:center; gap:6px; }
.header-social a{
  width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08); color:#fff; border:1px solid rgba(255,255,255,.14);
  transition:all .25s ease;
}
.header-social a:hover{ background:var(--grad-red); transform:translateY(-2px); border-color:transparent; }
.header-social svg{ width:14px; height:14px; }

.burger{
  display:none; width:44px; height:44px; border-radius:12px; border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.06); align-items:center; justify-content:center; cursor:pointer; flex-direction:column; gap:5px;
}
.burger span{ width:20px; height:2px; background:#fff; border-radius:2px; transition:all .3s ease; }
.burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.nav-mobile{
  position:fixed; inset:var(--header-h) 0 0 0; background:rgba(8,15,31,.98); backdrop-filter:blur(10px);
  transform:translateX(100%); transition:transform .35s cubic-bezier(.2,.8,.2,1); z-index:999;
  padding:28px 24px; overflow-y:auto;
}
.nav-mobile.open{ transform:translateX(0); }
.nav-mobile a{
  display:flex; align-items:center; justify-content:space-between; color:#fff; font-family:var(--font-head);
  font-size:1.15rem; font-weight:600; padding:16px 4px; border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-mobile a svg{ width:16px; height:16px; flex-shrink:0; opacity:.5; }
.nav-mobile .header-social{ margin-top:26px; justify-content:center; gap:12px; }

/* ================= HERO ================= */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  background:var(--grad-navy); overflow:hidden; padding-top:var(--header-h);
}
.hero::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(60% 55% at 82% 18%, rgba(56,181,255,.32), transparent 60%),
    radial-gradient(55% 50% at 8% 92%, rgba(228,0,26,.30), transparent 60%);
  pointer-events:none;
}
.hero-pattern{
  position:absolute; inset:0; opacity:.5; pointer-events:none;
  background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, #000 40%, transparent 90%);
}
.hero .container{ position:relative; z-index:2; display:grid; grid-template-columns:1.1fr .9fr; gap:40px; align-items:center; padding-top:40px; padding-bottom:60px; }
.hero-copy h1{ color:#fff; font-size:clamp(2.4rem,5vw,3.9rem); letter-spacing:-.01em; margin-bottom:.4em; }
.hero-copy h1 em{ font-style:normal; background:linear-gradient(90deg,var(--blue),#8fe0ff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-copy p.lead{ color:rgba(255,255,255,.72); font-size:1.14rem; max-width:520px; margin-bottom:2em; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:36px; }
.hero-stats{ display:flex; gap:34px; flex-wrap:wrap; }
.hero-stats div strong{ display:block; font-family:var(--font-head); font-size:1.7rem; color:#fff; }
.hero-stats div span{ font-size:.76rem; color:rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.08em; }

.hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
.hero-badge-ring{
  position:relative; width:min(400px,86vw); aspect-ratio:1/1; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(255,255,255,.12), rgba(255,255,255,.02) 70%);
  border:1px solid rgba(255,255,255,.16); display:flex; align-items:center; justify-content:center;
  animation:float 6s ease-in-out infinite;
}
.hero-badge-ring::before{
  content:""; position:absolute; inset:-14px; border-radius:50%; border:1.5px dashed rgba(255,255,255,.18);
  animation:spin 40s linear infinite;
}
.hero-badge-ring img{ width:62%; filter:drop-shadow(0 20px 40px rgba(0,0,0,.45)); }
@keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-16px);} }
@keyframes spin{ to{ transform:rotate(360deg);} }

.hero-next-match{
  position:absolute; bottom:-10px; left:50%; transform:translateX(-50%);
  width:min(300px,88vw); background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(14px); border-radius:var(--radius-lg); padding:16px 18px; color:#fff;
}
.scroll-cue{
  position:absolute; bottom:22px; left:50%; transform:translateX(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,.55); font-size:.68rem;
  letter-spacing:.12em; text-transform:uppercase;
}
.scroll-cue span{ width:1px; height:34px; background:linear-gradient(to bottom, rgba(255,255,255,.7), transparent); animation:scrollcue 1.8s ease infinite; }
@keyframes scrollcue{ 0%{ opacity:0; transform:translateY(-8px);} 40%{ opacity:1;} 100%{ opacity:0; transform:translateY(12px);} }

/* Page hero (inner pages) */
.page-hero{
  background:var(--grad-navy); padding:calc(var(--header-h) + 78px) 0 90px; position:relative; overflow:hidden;
}
.page-hero::before{ content:""; position:absolute; inset:0; background:radial-gradient(55% 70% at 85% 0%, rgba(56,181,255,.28), transparent 60%), radial-gradient(45% 60% at 5% 100%, rgba(228,0,26,.28), transparent 60%); }
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{ color:#fff; font-size:clamp(2.1rem,4.2vw,3.1rem); margin-bottom:.35em; }
.page-hero p{ color:rgba(255,255,255,.68); font-size:1.05rem; max-width:640px; }
.breadcrumb{ display:flex; gap:8px; align-items:center; color:rgba(255,255,255,.5); font-size:.82rem; margin-bottom:20px; }
.breadcrumb a:hover{ color:#fff; }
.breadcrumb svg{ width:13px; height:13px; flex-shrink:0; opacity:.6; }

/* ================= CARDS / GRIDS ================= */
.grid{ display:grid; gap:26px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }

.card{
  background:#fff; border-radius:var(--radius-lg); border:1px solid var(--line); box-shadow:var(--shadow-sm);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }

.news-card{ overflow:hidden; display:flex; flex-direction:column; scroll-margin-top:calc(var(--header-h) + 16px); }
.news-card .thumb{ position:relative; aspect-ratio:16/10; overflow:hidden; background:var(--navy); }
.news-card .thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.news-card:hover .thumb img{ transform:scale(1.07); }
.news-card .thumb .tag{ position:absolute; top:14px; left:14px; background:rgba(8,15,31,.7); color:#fff; border:none; }
.news-card .body{ padding:22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.news-card .date{ font-size:.76rem; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }
.news-card h3{ font-size:1.06rem; }
.news-card .more{ margin-top:auto; font-family:var(--font-head); font-weight:600; font-size:.85rem; color:var(--red); display:flex; align-items:center; gap:6px; }

/* Recruit / player card */
.recruit-card{
  position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:3/4;
  background:var(--navy); box-shadow:var(--shadow-md);
}
.recruit-card img{ width:100%; height:100%; object-fit:cover; object-position:top center; transition:transform .6s ease; }
.recruit-card:hover img{ transform:scale(1.06); }
.recruit-card .veil{ position:absolute; inset:0; background:linear-gradient(to top, rgba(8,15,31,.94) 6%, rgba(8,15,31,.15) 55%, transparent 75%); }
.recruit-card .ribbon{
  position:absolute; top:18px; left:-38px; transform:rotate(-40deg); background:var(--grad-red); color:#fff;
  font-family:var(--font-head); font-weight:700; font-size:.7rem; letter-spacing:.08em; text-transform:uppercase;
  padding:6px 44px; box-shadow:0 6px 14px rgba(0,0,0,.3);
}
.recruit-card .info{ position:absolute; left:0; right:0; bottom:0; padding:22px; color:#fff; }
.recruit-card .info .pos{ display:inline-block; margin-bottom:8px; font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue); background:rgba(255,255,255,.1); padding:5px 12px; border-radius:var(--radius-pill); }
.recruit-card .info h3{ color:#fff; font-size:1.3rem; margin-bottom:2px; }
.recruit-card .info small{ color:rgba(255,255,255,.6); font-size:.78rem; }

/* Team badge chip (used in fixtures / standings) */
.team-chip{ display:flex; align-items:center; gap:10px; font-weight:600; font-size:.92rem; color:var(--navy); }
.team-chip img{ width:26px; height:29px; object-fit:contain; }
.team-chip.jamono{ color:var(--red); font-weight:700; }

/* ================= STANDINGS ================= */
.league-switch{ display:inline-flex; padding:6px; background:#fff; border:1px solid var(--line); border-radius:var(--radius-pill); box-shadow:var(--shadow-sm); gap:4px; }
.league-switch button{
  border:none; background:transparent; padding:11px 24px; border-radius:var(--radius-pill); font-family:var(--font-head);
  font-weight:600; font-size:.86rem; color:var(--muted-2); cursor:pointer; transition:all .25s ease;
}
.league-switch button.active{ background:var(--grad-red); color:#fff; box-shadow:0 8px 18px rgba(228,0,26,.28); }

.table-wrap{ overflow-x:auto; border-radius:var(--radius-lg); border:1px solid var(--line); background:#fff; box-shadow:var(--shadow-sm); }
table.standings{ width:100%; border-collapse:collapse; min-width:760px; font-size:.9rem; }
table.standings thead th{
  text-align:left; padding:16px 14px; font-family:var(--font-head); font-size:.7rem; text-transform:uppercase;
  letter-spacing:.07em; color:var(--muted); background:var(--paper); border-bottom:1px solid var(--line); white-space:nowrap;
}
table.standings td{ padding:13px 14px; border-bottom:1px solid var(--line); color:var(--navy); white-space:nowrap; }
table.standings tbody tr{ transition:background .2s ease; }
table.standings tbody tr:hover{ background:#fbfbfe; }
table.standings tbody tr:last-child td{ border-bottom:none; }
table.standings td.rank{ font-family:var(--font-head); font-weight:700; width:34px; text-align:center; }
table.standings td.pts{ font-family:var(--font-head); font-weight:800; color:var(--navy); font-size:1rem; }
table.standings tr.zone-promo td.rank{ position:relative; }
table.standings tr.zone-promo td.rank::before{ content:""; position:absolute; left:-1px; top:0; bottom:0; width:4px; background:var(--success); }
table.standings tr.zone-relegation td.rank::before{ content:""; position:absolute; left:-1px; top:0; bottom:0; width:4px; background:var(--red); }
table.standings tr.zone-relegation td.rank{ position:relative; }
table.standings tr.is-jamono{ background:rgba(228,0,26,.05); }
table.standings tr.is-jamono td{ font-weight:700; }
.standings-legend{ display:flex; gap:22px; flex-wrap:wrap; margin-top:16px; font-size:.8rem; color:var(--muted-2); }
.standings-legend span{ display:inline-flex; align-items:center; gap:8px; }
.standings-legend i{ width:10px; height:10px; border-radius:3px; display:inline-block; }
.dot-promo{ background:var(--success); } .dot-releg{ background:var(--red); } .dot-jam{ background:var(--blue); }
.form-pill{ display:inline-flex; width:20px; height:20px; border-radius:50%; align-items:center; justify-content:center; font-size:.62rem; font-weight:800; color:#fff; margin-right:3px; }
.form-w{ background:var(--success);} .form-d{ background:var(--muted);} .form-l{ background:var(--red);} .form-n{ background:var(--line); color:var(--muted);}

/* ================= FIXTURES / CALENDAR ================= */
.matchday-nav{ display:flex; align-items:center; gap:14px; margin-bottom:26px; }
.matchday-nav select{
  font-family:var(--font-head); font-weight:600; padding:12px 18px; border-radius:var(--radius-pill);
  border:1px solid var(--line); background:#fff; font-size:.9rem; cursor:pointer;
}
.matchday-nav .arrow-btn{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--line); background:#fff; display:flex; align-items:center;
  justify-content:center; cursor:pointer; transition:all .2s ease; flex-shrink:0;
}
.matchday-nav .arrow-btn:hover{ background:var(--navy); border-color:var(--navy); color:#fff; }
.matchday-nav .arrow-btn svg{ width:16px; height:16px; }

.fixture-grid{ display:grid; gap:14px; }
.fixture-row{
  display:grid; grid-template-columns:1fr auto 1fr auto; align-items:center; gap:16px;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:18px 22px; box-shadow:var(--shadow-sm);
  transition:all .25s ease;
}
.fixture-row:hover{ box-shadow:var(--shadow-md); transform:translateY(-2px); }
.fixture-row.is-jamono{ border-color:rgba(228,0,26,.35); background:linear-gradient(90deg, rgba(228,0,26,.04), #fff 30%); }
.fixture-team{ display:flex; align-items:center; gap:12px; font-weight:600; }
.fixture-team img{ width:34px; height:38px; object-fit:contain; }
.fixture-team.home{ justify-content:flex-end; text-align:right; }
.fixture-team.away{ justify-content:flex-start; }
.fixture-score{ font-family:var(--font-head); font-weight:800; font-size:1.1rem; min-width:64px; text-align:center; background:var(--paper); border-radius:var(--radius-pill); padding:8px 4px; }
.fixture-meta{ text-align:center; font-size:.72rem; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; grid-column:1 / -1; padding-top:10px; border-top:1px dashed var(--line); margin-top:4px; }

.filter-bar{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:22px; }
.filter-chip{
  padding:9px 16px; border-radius:var(--radius-pill); border:1px solid var(--line); background:#fff; font-size:.82rem;
  font-weight:600; cursor:pointer; color:var(--muted-2); transition:all .2s ease;
}
.filter-chip.active{ background:var(--navy); color:#fff; border-color:var(--navy); }

/* ================= STATS / MISC ================= */
.stat-band{ background:var(--grad-navy); padding:64px 0; position:relative; overflow:hidden; }
.stat-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(50% 90% at 50% 0%, rgba(56,181,255,.18), transparent 70%); }
.stat-band .grid{ position:relative; z-index:2; }
.stat-item{ text-align:center; color:#fff; }
.stat-item strong{ display:block; font-family:var(--font-head); font-size:2.6rem; background:linear-gradient(90deg,#fff,var(--blue)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-item span{ font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.55); }

.timeline{ position:relative; padding-left:34px; }
.timeline::before{ content:""; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background:linear-gradient(to bottom, var(--red), var(--blue)); }
.timeline-item{ position:relative; padding-bottom:34px; }
.timeline-item::before{ content:""; position:absolute; left:-34px; top:2px; width:20px; height:20px; border-radius:50%; background:#fff; border:3px solid var(--red); }
.timeline-item strong{ display:block; font-family:var(--font-head); color:var(--red); font-size:.85rem; margin-bottom:4px; }

.value-card{ text-align:center; padding:34px 22px; }
.value-card .ico{ width:56px; height:56px; border-radius:16px; background:var(--grad-red); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; color:#fff; }
.value-card .ico svg{ width:26px; height:26px; }

.staff-card{ text-align:center; padding:28px 20px; }
.staff-card .ph{ width:96px; height:96px; border-radius:50%; margin:0 auto 16px; background:var(--grad-navy); display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--font-head); font-weight:700; font-size:1.4rem; }
.staff-card h4{ font-size:1rem; margin-bottom:2px; }
.staff-card span{ font-size:.78rem; color:var(--red); font-weight:600; text-transform:uppercase; letter-spacing:.05em; }

/* Social feed section */
.social-band{ background:var(--paper); }
.social-follow-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:16px; margin-top:36px; }
.follow-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px 18px; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:10px; transition:all .25s ease;
}
.follow-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.follow-card .ico{ width:52px; height:52px; border-radius:16px; display:flex; align-items:center; justify-content:center; color:#fff; }
.follow-card .ico svg{ width:24px; height:24px; }
.follow-card strong{ font-family:var(--font-head); font-size:.92rem; }
.follow-card span{ font-size:.74rem; color:var(--muted); }
.ico-fb{ background:#1877F2; } .ico-ig{ background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ico-tt{ background:#000; } .ico-x{ background:#000; } .ico-yt{ background:#FF0000; } .ico-wa{ background:#25D366; }

.fb-embed-wrap{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); }
.fb-embed-head{ padding:18px 22px; border-bottom:1px solid var(--line); display:flex; align-items:center; gap:12px; }
.fb-embed-head img{ width:36px; height:36px; border-radius:50%; }

/* CTA band */
.cta-band{ background:var(--grad-red); padding:70px 0; text-align:center; position:relative; overflow:hidden; }
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(60% 100% at 20% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta-band .container{ position:relative; z-index:2; }
.cta-band h2{ color:#fff; font-size:clamp(1.7rem,3.6vw,2.6rem); }
.cta-band p{ color:rgba(255,255,255,.85); max-width:560px; margin:0 auto 28px; }
.cta-actions{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.cta-band .btn-ghost{ border-color:rgba(255,255,255,.6); }

/* Forms */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:18px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-family:var(--font-head); font-size:.82rem; font-weight:600; color:var(--navy); }
.field input, .field select, .field textarea{
  padding:14px 16px; border-radius:12px; border:1.5px solid var(--line); font-family:var(--font-body); font-size:.94rem;
  background:#fbfbfe; transition:border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--blue); background:#fff; }
.field textarea{ resize:vertical; min-height:120px; }

.info-list{ display:flex; flex-direction:column; gap:20px; }
.info-list .row{ display:flex; gap:16px; align-items:flex-start; }
.info-list .ico{ width:44px; height:44px; border-radius:12px; background:rgba(228,0,26,.08); color:var(--red); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-list .ico svg{ width:20px; height:20px; }
.info-list h4{ font-size:.95rem; margin-bottom:2px; }
.info-list p{ margin:0; font-size:.88rem; }

.map-wrap{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow-sm); }
.map-wrap iframe{ width:100%; height:100%; min-height:340px; border:0; }

.yt-embed-wrap{ position:relative; aspect-ratio:16/9; background:#000; }
.yt-embed-wrap iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }

/* ================= FOOTER ================= */
.site-footer{ background:var(--navy); color:rgba(255,255,255,.65); padding:70px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ width:44px; height:44px; }
.footer-brand strong{ color:#fff; font-family:var(--font-head); }
.site-footer h5{ color:#fff; font-family:var(--font-head); font-size:.86rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:18px; }
.site-footer ul li{ margin-bottom:11px; }
.site-footer ul a{ font-size:.88rem; transition:color .2s ease; }
.site-footer ul a:hover{ color:var(--blue); }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition:all .2s ease; }
.footer-social a:hover{ background:var(--grad-red); transform:translateY(-3px); }
.footer-social svg{ width:15px; height:15px; }
.footer-bottom{ padding:22px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size:.78rem; }
.footer-bottom a:hover{ color:#fff; }

/* ================= BILLETTERIE CTA (header) ================= */
.btn-tickets{
  display:flex; align-items:center; gap:6px; background:var(--grad-red); color:#fff; font-family:var(--font-head);
  font-weight:600; font-size:.76rem; padding:9px 15px 9px 12px; border-radius:var(--radius-pill);
  box-shadow:0 8px 20px rgba(228,0,26,.35); transition:all .25s ease; white-space:nowrap; flex-shrink:0;
}
.btn-tickets svg{ width:14px; height:14px; }
.btn-tickets:hover, .btn-tickets.active{ transform:translateY(-2px); box-shadow:0 12px 26px rgba(228,0,26,.45); }

.btn-boutique{
  display:flex; align-items:center; gap:6px; background:transparent; color:var(--navy); font-family:var(--font-head);
  font-weight:600; font-size:.76rem; padding:8.5px 14px 8.5px 11px; border-radius:var(--radius-pill);
  border:1.5px solid var(--line); transition:all .25s ease; white-space:nowrap; flex-shrink:0;
}
.btn-boutique svg{ width:14px; height:14px; }
.btn-boutique:hover, .btn-boutique.active{ border-color:var(--navy); background:var(--paper); }

/* ================= GALERIE ================= */
.gallery-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:26px; }
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.gallery-grid.teaser{ grid-template-columns:repeat(6,1fr); }
.gallery-item{
  position:relative; display:block; aspect-ratio:4/3; border-radius:var(--radius-md); overflow:hidden;
  border:none; padding:0; cursor:zoom-in; background:var(--navy); box-shadow:var(--shadow-sm);
}
.gallery-item picture, .gallery-item img{ width:100%; height:100%; }
.gallery-item img{ object-fit:cover; transition:transform .55s ease, filter .3s ease; }
.gallery-item::after{
  content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(8,15,31,.75) 0%, rgba(8,15,31,0) 45%);
  opacity:0; transition:opacity .3s ease;
}
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item:hover::after{ opacity:1; }
.gallery-item .tag{
  position:absolute; left:12px; bottom:12px; z-index:2; background:rgba(255,255,255,.14); backdrop-filter:blur(6px);
  color:#fff; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:6px 12px;
  border-radius:var(--radius-pill); opacity:0; transform:translateY(6px); transition:all .3s ease;
}
.gallery-item:hover .tag{ opacity:1; transform:translateY(0); }
.gallery-more{
  position:relative; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
  aspect-ratio:4/3; border-radius:var(--radius-md); background:var(--grad-navy); color:#fff; text-align:center;
  font-family:var(--font-head); font-weight:600; font-size:.9rem; transition:transform .3s ease;
}
.gallery-more:hover{ transform:translateY(-4px); }
.gallery-more svg{ width:26px; height:26px; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:2000; background:rgba(4,7,16,.94); display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .25s ease; padding:60px 20px;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox figure{ margin:0; max-width:min(900px,92vw); text-align:center; }
.lightbox img{ max-width:100%; max-height:76vh; border-radius:var(--radius-md); margin:0 auto; box-shadow:var(--shadow-lg); }
.lightbox figcaption{ color:rgba(255,255,255,.75); font-size:.88rem; margin-top:16px; }
.lb-btn{
  position:absolute; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); color:#fff; cursor:pointer;
  display:flex; align-items:center; justify-content:center; border-radius:50%; transition:all .2s ease;
}
.lb-btn:hover{ background:var(--grad-red); border-color:transparent; }
.lb-close{ top:22px; right:22px; width:44px; height:44px; font-size:1.5rem; line-height:1; }
.lb-prev, .lb-next{ top:50%; transform:translateY(-50%); width:52px; height:52px; font-size:1.8rem; line-height:1; }
.lb-prev{ left:16px; } .lb-next{ right:16px; }

/* ================= BILLETTERIE ================= */
.ticket-tiers{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.ticket-tier{ padding:32px 26px; text-align:center; position:relative; }
.ticket-tier.highlight{ border-color:var(--red); box-shadow:0 16px 40px rgba(228,0,26,.14); }
.ticket-tier .badge-pop{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--grad-red); color:#fff; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:6px 16px; border-radius:var(--radius-pill); white-space:nowrap; }
.ticket-tier h3{ font-size:1.05rem; margin-bottom:6px; }
.ticket-tier .price{ font-family:var(--font-head); font-weight:800; font-size:2rem; color:var(--red); margin:10px 0; }
.ticket-tier .price span{ font-size:.85rem; color:var(--muted); font-weight:500; }
.ticket-tier ul{ text-align:left; display:flex; flex-direction:column; gap:10px; margin:18px 0 22px; font-size:.85rem; color:var(--muted-2); }
.ticket-tier ul li{ display:flex; gap:8px; align-items:flex-start; }
.ticket-tier ul li svg{ width:15px; height:15px; color:var(--success); flex-shrink:0; margin-top:3px; }

.ticket-match-card{
  background:var(--grad-navy); border-radius:var(--radius-lg); padding:34px; color:#fff; position:relative; overflow:hidden;
}
.ticket-match-card::before{ content:""; position:absolute; inset:0; background:radial-gradient(60% 90% at 90% 0%, rgba(56,181,255,.22), transparent 60%); }
.ticket-match-card > *{ position:relative; z-index:2; }
.ticket-match-teams{ display:flex; align-items:center; justify-content:center; gap:22px; margin:20px 0; }
.ticket-match-teams img{ width:56px; height:62px; object-fit:contain; }
.ticket-match-teams strong{ font-family:var(--font-head); font-size:1.3rem; }

.ticket-steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.ticket-step{ text-align:center; padding:26px 20px; }
.ticket-step .num{ width:38px; height:38px; border-radius:50%; background:var(--grad-red); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:700; margin:0 auto 14px; }

/* ================= BOUTIQUE ================= */
.boutique-banner{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.boutique-banner img{ width:100%; display:block; }

.product-card{
  border-radius:var(--radius-lg); overflow:hidden; background:#fff; border:1px solid var(--line);
  box-shadow:var(--shadow-sm); transition:transform .3s ease, box-shadow .3s ease;
}
.product-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.product-card .thumb{ position:relative; aspect-ratio:2/3; overflow:hidden; background:var(--navy); }
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.product-card:hover .thumb img{ transform:scale(1.04); }
.product-card .info{ padding:15px 18px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.product-card .info h3{ font-size:.95rem; margin:0; }
.product-card .info .price{ font-family:var(--font-head); font-weight:800; color:var(--red); font-size:1rem; white-space:nowrap; }

/* Back to top */
.to-top{
  position:fixed; right:22px; bottom:22px; width:48px; height:48px; border-radius:50%; background:var(--grad-red);
  color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(228,0,26,.4);
  opacity:0; pointer-events:none; transform:translateY(10px); transition:all .3s ease; z-index:900; border:none; cursor:pointer;
}
.to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.to-top svg{ width:20px; height:20px; }

/* ================= RESPONSIVE ================= */
@media (max-width:1080px){
  .hero .container{ grid-template-columns:1fr; text-align:center; }
  .hero-copy p.lead{ margin-left:auto; margin-right:auto; }
  .hero-actions, .hero-stats{ justify-content:center; }
  .hero-visual{ margin-top:20px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .social-follow-grid{ grid-template-columns:repeat(3,1fr); }
  .gallery-grid{ grid-template-columns:repeat(3,1fr); }
  .gallery-grid.teaser{ grid-template-columns:repeat(3,1fr); }
  .ticket-tiers, .ticket-steps{ grid-template-columns:1fr 1fr; }
}
/* En dessous de 1140px, la navigation complète ne tient plus confortablement
   sur une seule ligne à côté du logo et des actions : on bascule sur le
   menu burger plutôt que de la laisser se tasser ou déborder. */
@media (max-width:1140px){
  .nav-desktop, .header-social{ display:none; }
  .burger{ display:flex; }
  .btn-tickets span, .btn-boutique span{ display:none; }
  .btn-tickets{ padding:10px; }
  .btn-boutique{ padding:9.5px; }
}
@media (max-width:860px){
  .grid-2{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:30px; }
}
@media (max-width:640px){
  .container{ padding:0 18px; }
  .grid-3,.grid-4{ grid-template-columns:1fr 1fr; }
  .social-follow-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid, .gallery-grid.teaser{ grid-template-columns:repeat(2,1fr); }
  .ticket-tiers, .ticket-steps{ grid-template-columns:1fr; }
  .lb-prev, .lb-next{ width:42px; height:42px; font-size:1.4rem; }
  .fixture-row{ grid-template-columns:1fr; text-align:center; gap:10px; }
  .fixture-team.home{ justify-content:center; text-align:center; }
  .fixture-team.away{ justify-content:center; }
  .footer-grid{ grid-template-columns:1fr; }
  table.standings{ font-size:.82rem; }
}
@media (max-width:480px){
  /* Sur très petit écran, la carte produit (2 colonnes) devient trop
     étroite pour aligner le nom et le prix côte à côte sans les
     tronquer ("10 000 FCFA" coupé) — on les empile à la place. */
  .product-card .info{ flex-direction:column; align-items:flex-start; gap:3px; padding:13px 14px; }
}
