*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #001A3A;
  --navy-mid: #002855;
  --accent: #E8431A;
  --accent-h: #FF5533;
  --gold: #F5A623;
  --white: #ffffff;
  --off: #F7F8FA;
  --mid: #E4E8EF;
  --muted: #7A8499;
  --text: #0F1724;
  --font-h: 'Outfit', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --r: 8px;
  --r-lg: 14px;
  --t: 0.22s ease;
  --nav-h: 70px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.65; }

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.topbar {
  background: var(--navy);
  height: 34px;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.topbar a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--t); }
.topbar a:hover { color: #fff; }
.topbar-links { display: flex; gap: 1.5rem; align-items: center; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }
.saison-pill {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  gap: 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: 2rem;
  flex-shrink: 0;
}
.brand IMG {
    width: 100%;
    height: 50px;
}
.brand-emblem {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.brand-emblem::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.brand-emblem svg { width: 22px; height: 22px; }
.brand-text { line-height: 1.15; }
.brand-text strong {
  display: block;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}
.brand-text span {
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Nav items */
.nav-list {
  display: flex;
  align-items: stretch;
  height: 100%;
  list-style: none;
  gap: 0;
  flex: 1;
}
.nav-list > li {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-list > li > a,
.nav-list > li > button {
  font-family: var(--font-b);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 13px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  position: relative;
  transition: color var(--t);
}
.nav-list > li > a::after,
.nav-list > li > button::after {
  content: '';
  position: absolute;
  bottom: 0; left: 13px; right: 13px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
  border-radius: 2px 2px 0 0;
}
.nav-list > li > a:hover,
.nav-list > li > button:hover,
.nav-list > li.open > button { color: var(--accent); }
.nav-list > li > a:hover::after,
.nav-list > li > button:hover::after,
.nav-list > li.open > button::after { transform: scaleX(1); }

/* Chevron SVG inline */
.nav-chevron {
  width: 14px; height: 14px;
  display: inline-block;
  flex-shrink: 0;
  transition: transform var(--t);
  opacity: 0.5;
}
.nav-list > li.open .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Mega dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: -16px;
    background: var(--white);
    border: 1px solid var(--mid);
    border-top: 2.5px solid var(--accent);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    padding: 1rem 0.5rem;
    min-width: 270px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
    z-index: 300;
}
.nav-list > li.open .drop3 {
    display: grid !important;
    grid-template-columns: repeat(3, 220px);
}
.drop3 {
    /* pas de display: grid ici ! */
    min-width: 660px;
}

.drop3 > div {
    min-width: 220px;
    line-height: 15px;
}



.nav-list > li.open .dropdown { display: block; animation: dropIn 0.16s ease forwards; }
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.drop-section {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px 4px;
  margin-top: 6px;
}
.drop-section:first-child { margin-top: 0; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13.5px;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: background var(--t), color var(--t);
}
.dropdown a:hover { background: var(--off); color: var(--accent); }
.drop-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mid);
  flex-shrink: 0;
  transition: background var(--t);
}
.dropdown a:hover .drop-dot { background: var(--accent); }
.drop-hr { height: 1px; background: var(--mid); margin: 6px 12px; border: none; }

/* Nav CTA */
.nav-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--r);
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--mid);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}
.btn-accent:hover { background: var(--accent-h); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.2s; }

/* ══════════════════════════════════════
   HERO PARALLAX
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-parallax {
  position: absolute;
  inset: -80px 0;
  background-image: url('../../img/bg.png');
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,26,58,0.93) 0%,
    rgba(0,26,58,0.82) 45%,
    rgba(0,26,58,0.45) 100%
  );
  z-index: 1;
}
/* Diagonal décoratif */
.hero-deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 38%;
  background: linear-gradient(105deg, transparent 40%, rgba(232,67,26,0.08) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-deco-line {
  position: absolute;
  left: -2px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  transform: skewX(-8deg);
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-tag-line { width: 28px; height: 1.5px; background: var(--accent); }
.hero h1 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.hero h1 .line2 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  -webkit-text-stroke: 0;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t);
}
.btn-hero-main {
  background: var(--accent);
  color: #fff;
}
.btn-hero-main:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,67,26,0.35); }
.btn-hero-outline {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.13); }

/* Stats hero */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem 2rem;
  display: flex;
  gap: 3rem;
}
.hero-stat { color: #fff; }
.hero-stat-num {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}

/* ══════════════════════════════════════
   QUICKSTRIP
══════════════════════════════════════ */
.quickstrip {
  background: var(--off);
  border-bottom: 1px solid var(--mid);
}
.quickstrip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.qi {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  border-right: 1px solid var(--mid);
  transition: background var(--t);
  position: relative;
}
.qi:last-child { border-right: none; }
.qi:hover { background: var(--white); }
.qi:hover .qi-icon { background: var(--accent); border-color: var(--accent); }
.qi:hover .qi-icon svg { stroke: #fff; }
.qi-icon {
  width: 34px; height: 34px;
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
}
.qi-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--t); }
.qi-label { font-size: 12.5px; font-weight: 600; line-height: 1.25; }
.qi-sub { font-size: 11px; color: var(--muted); }

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
section { padding: 4rem 2.5rem; }
.wrap { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.sh {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ══════════════════════════════════════
   AGENDA - style BDD
══════════════════════════════════════ */
.agenda-wrap {
  background: var(--off);
  border-radius: var(--r-lg);
  border: 1px solid var(--mid);
  overflow: hidden;
  margin-top: 1.75rem;
}
.agenda-filters {
  display: flex;
  gap: 6px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--mid);
  background: var(--white);
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--mid);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
  font-family: var(--font-b);
}
.filter-btn:hover, .filter-btn.active { color: #fff; border-color: transparent; }
.filter-btn[data-cat="all"].active { background: var(--navy); }
.filter-btn[data-cat="seniors"].active { background: #3730A3; }
.filter-btn[data-cat="dames"].active { background: #9D174D; }
.filter-btn[data-cat="veterans"].active { background: #065F46; }
.filter-btn[data-cat="jeunes"].active { background: #92400E; }

.agenda-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 14px 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--off);
  transition: background var(--t);
  cursor: default;
}
.agenda-row:last-child { border-bottom: none; }
.agenda-row:hover { background: #fafbfc; }

.adate {
  width: 50px;
  flex-shrink: 0;
  text-align: center;
}
.adate-day {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}
.adate-month {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.adivider { width: 1px; height: 36px; background: var(--mid); flex-shrink: 0; }
.ainfo { flex: 1; min-width: 0; }
.atitle { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alocation { font-size: 12px; color: var(--muted); margin-top: 2px; }
.acat {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.acat-seniors { background: #EEF2FF; color: #3730A3; }
.acat-dames { background: #FCE7F3; color: #9D174D; }
.acat-veterans { background: #D1FAE5; color: #065F46; }
.acat-jeunes { background: #FEF3C7; color: #92400E; }
.acat-comite { background: #F3F4F6; color: #374151; }

/* ══════════════════════════════════════
   SUSPENSIONS - BDD
══════════════════════════════════════ */
.susp-section { background: var(--off); }
.susp-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--mid);
  overflow: hidden;
  margin-top: 1.75rem;
}
.susp-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 1.25rem;
  border-bottom: 1px solid var(--mid);
}
.susp-search svg { width: 16px; height: 16px; stroke: var(--muted); fill: none; stroke-width: 2; flex-shrink: 0; }
.susp-search input {
  border: none;
  outline: none;
  font-family: var(--font-b);
  font-size: 13.5px;
  color: var(--text);
  flex: 1;
  background: transparent;
}
.susp-search input::placeholder { color: var(--muted); }
.susp-table { width: 100%; border-collapse: collapse; }
.susp-table thead th {
  text-align: left;
  padding: 10px 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--off);
  border-bottom: 1px solid var(--mid);
}
.susp-table tbody td {
  padding: 12px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--off);
  vertical-align: middle;
}
.susp-table tbody tr:last-child td { border-bottom: none; }
.susp-table tbody tr:hover td { background: #fafbfd; }
.susp-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.susp-active { background: #FEE2E2; color: #991B1B; }
.susp-done { background: #D1FAE5; color: #065F46; }
.susp-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ══════════════════════════════════════
   FORMULAIRES ENCART
══════════════════════════════════════ */
.forms-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.forms-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 60px solid rgba(232,67,26,0.07);
  pointer-events: none;
}
.forms-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,0.03);
  pointer-events: none;
}
.forms-section .eyebrow { color: var(--accent); }
.forms-section .sh { color: #fff; }
.forms-section .sh-sub { color: rgba(255,255,255,0.45); font-size: 14px; margin-top: 4px; }
.forms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.form-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,67,26,0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.form-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,67,26,0.4);
  transform: translateY(-2px);
}
.form-card:hover::after { opacity: 1; }
.fc-icon {
  width: 44px; height: 44px;
  background: rgba(232,67,26,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(232,67,26,0.25);
}
.fc-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fc-body { flex: 1; }
.fc-title { font-weight: 600; font-size: 14.5px; margin-bottom: 4px; color: #fff; }
.fc-desc { font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.fc-arrow {
  font-size: 18px;
  color: var(--accent);
  opacity: 0;
  margin-left: auto;
  align-self: center;
  transition: opacity var(--t), transform var(--t);
}
.form-card:hover .fc-arrow { opacity: 1; transform: translateX(3px); }

/* ══════════════════════════════════════
   CLUBS / CATÉGORIES
══════════════════════════════════════ */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem 1.25rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--t);
  position: relative;
}
.cat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(232,67,26,0.1);
  transform: translateY(-3px);
}
.cc-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cc-icon svg { width: 24px; height: 24px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cc-label {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.cc-links { display: flex; flex-direction: column; gap: 3px; }
.cc-links a {
  font-size: 12.5px;
  color: var(--muted);
  text-decoration: none;
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t);
}
.cc-links a::before { content: '→'; font-size: 10px; opacity: 0; transition: opacity var(--t), transform var(--t); }
.cc-links a:hover { color: var(--accent); }
.cc-links a:hover::before { opacity: 1; }

/* ══════════════════════════════════════
   REGLEMENTS STRIP
══════════════════════════════════════ */
.regl-section { background: var(--off); }
.regl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.regl-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--t);
}
.regl-card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.regl-card:hover .regl-arrow { transform: translateX(3px); }
.regl-icon {
  width: 40px; height: 40px;
  background: var(--off);
  border: 1px solid var(--mid);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.regl-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.regl-text { flex: 1; }
.regl-title { font-size: 13.5px; font-weight: 600; }
.regl-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.regl-arrow { color: var(--muted); transition: transform var(--t); font-size: 16px; }

/* ══════════════════════════════════════
   SPONSORS
══════════════════════════════════════ */
.sponsors-section { padding: 2rem 2.5rem; border-top: 1px solid var(--mid); }
.sp-label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 1.5rem; }
.sp-row { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr);
    align-items: center; 
    gap: 3rem; 
    flex-wrap: wrap; 
    height: 100px;
}
.sp-row IMG {
    height: 100px;
    object-fit: cover;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 3.5rem 2.5rem 1.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fl-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.fl-emblem {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.fl-emblem svg { width: 20px; height: 20px; }
.fl-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.fl-desc { font-size: 13px; line-height: 1.7; max-width: 270px; }
.fc-col-h {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color var(--t); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color var(--t); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-list {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    overflow-y: auto;
    padding: 0 0 4rem;
    z-index: 999;
  }
  .nav-list.open { display: flex; }
  .nav-list > li { flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--mid); }
  .nav-list > li > a, .nav-list > li > button {
    height: auto;
    padding: 15px 20px;
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
  }
  .nav-list > li > a::after, .nav-list > li > button::after { display: none; }
  .dropdown { position: static; border: none; box-shadow: none; background: var(--off); border-radius: 0; padding: 4px 0 8px; width: 100%; display: none; animation: none; }
  .nav-list > li.open .dropdown { display: block; }
  .nav-end { display: none; }
  .topbar { display: none; }
  .quickstrip-inner { grid-template-columns: repeat(2, 1fr); }
  .qi:nth-child(5) { border-right: none; }
  .forms-grid { grid-template-columns: 1fr 1fr; }
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .regl-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
}
@media (max-width: 600px) {
  .forms-grid, .cats-grid, .regl-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .quickstrip-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  section { padding: 3rem 1.25rem; }
}

.newsIndex {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.25rem;
}
.news {
    background:var(--white);
    border:1px solid var(--mid);
    border-radius:var(--r-lg);
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    display:flex;
    flex-direction:column;
    transition:box-shadow .22s ease,transform .22s ease;
}
.news .excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ═══════════════════════════════
   PAGE HERO
═══════════════════════════════ */
.page-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 5rem;
}
.page-hero    { position: relative; background: var(--navy); padding: 3rem 0 5rem; }
.page-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.page-hero-terrain {
    position: absolute;
    inset: 0;
    opacity: 0.08;
}
.page-hero-halo-1 {
    position: absolute;
    top: -60px; right: 15%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.08;
    filter: blur(60px);
    pointer-events: none;
}
.page-hero-halo-2 {
    position: absolute;
    bottom: -80px; left: 10%;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: #3B82F6;
    opacity: 0.06;
    filter: blur(60px);
    pointer-events: none;
}
.page-hero-accent {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
}
.page-hero-eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.35rem;
}
.page-hero-title {
    font-family: var(--fh);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}
.page-hero-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}

/* ═══════════════════════════════
   PAGE CONTENT (chevauche le hero)
═══════════════════════════════ */
.page-content {
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
}

/* ═══════════════════════════════
   PDF VIEWER
═══════════════════════════════ */
.pdf-card {
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.pdf-viewer {
    height: calc(100vh - 320px);
    min-height: 500px;
}
.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.pdf-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    border-top: 1px solid var(--mid);
    background: var(--off);
}
.pdf-footer-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--muted);
}
.pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--r);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--t);
}
.pdf-download:hover { background: var(--accent-h); }

/* ═══════════════════════════════
   COMITÉ CARDS
═══════════════════════════════ */
.comite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 1.25rem;
}
.comite-card {
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    min-height: 180px;
}
.comite-card-left {
    width: 150px;
    flex-shrink: 0;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    position: relative;
    overflow: hidden;
}
.comite-card-left-accent {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
}
.comite-card-terrain {
    position: absolute;
    inset: 0;
    opacity: 0.07;
}
.comite-card-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(255,255,255,0.2);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.comite-card-nom {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.comite-card-fonction {
    font-size: 10.5px;
    color: var(--accent);
    font-weight: 500;
    margin-top: 3px;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.comite-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.25rem 0;
}
.comite-card-infos {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.comite-card-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid var(--mid);
    font-size: 12.5px;
    color: var(--text);
}
.comite-card-row:last-child { border-bottom: none; }
.comite-card-row svg { flex-shrink: 0; margin-top: 1px; }
.comite-card-row a { color: var(--text); text-decoration: none; transition: color var(--t); }
.comite-card-row a:hover { color: var(--accent); }
.comite-card-row .muted { color: var(--muted); font-size: 11.5px; }
.comite-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    margin-top: auto;
}
.comite-card-club { font-size: 11px; color: var(--muted); }
.comite-card-mandat {
    font-size: 10.5px;
    background: #EEF2FF;
    color: #3730A3;
    padding: 2px 9px;
    border-radius: 20px;
    font-weight: 500;
}


/* ═══════════════════════════════
   LOGOS CLUBS
═══════════════════════════════ */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.logo-card {
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg);
    padding: 1.5rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: box-shadow var(--t), transform var(--t);
}
.logo-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.logo-card-img {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.logo-card-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
}
.logo-card-id {
    font-size: 11px;
    color: var(--muted);
}

.pdf-select {
    margin-top: 1.25rem;
    appearance: none;
    background: rgba(255,255,255,0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r);
    color: #fff;
    font-size: 13.5px;
    font-weight: 500;
    padding: 9px 36px 9px 14px;
    cursor: pointer;
    transition: background var(--t), border-color var(--t);
    min-width: 220px;
}
.pdf-select:hover { border-color: rgba(255,255,255,0.4); background-color: rgba(255,255,255,0.12); }
.pdf-select option { background: var(--navy); color: #fff; }


/* Masquer les éléments inutiles du viewer PDF.js */
#sidebarContainer,
#sidebarResizer,
#editorModeButtons,
#editorModeSeparator,
#secondaryToolbarToggle,

/* Dialogs éditeurs */
#altTextDialog,
#newAltTextDialog,
#altTextSettingsDialog,
#addSignatureDialog,
#editSignatureDescriptionDialog,
#commentManagerDialog,
#editorUndoBar,

/* Boutons éditeurs dans la toolbar */
#editorCommentButton,
#editorFreeTextButton,
#editorHighlightButton,
#editorInkButton,
#editorStampButton,
#editorSignatureButton,
#editorModeSeparator {
    display: none !important;
}



/* ═══════════════════════════════
   AGENDA
═══════════════════════════════ */
.agenda-section {
    background: var(--off);
}
.agenda-box {
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.agenda-empty {
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}
.agenda-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--off);
    transition: background var(--t);
}
.agenda-row:last-child {
    border-bottom: none;
}
.agenda-row:hover {
    background: #fafbfc;
}
.agenda-date {
    text-align: center;
    width: 48px;
    flex-shrink: 0;
    background: var(--navy);
    border-radius: var(--r);
    padding: 8px 6px;
    color: #fff;
}
.agenda-day {
    font-family: var(--fh);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}
.agenda-month {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
    margin-top: 2px;
}
.agenda-year {
    font-size: 9px;
    opacity: 0.5;
    margin-top: 1px;
}
.agenda-divider {
    width: 1px;
    height: 36px;
    background: var(--mid);
    flex-shrink: 0;
}
.agenda-info {
    flex: 1;
    min-width: 0;
}
.agenda-quoi {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.agenda-lieu {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
}
.agenda-lieu svg {
    flex-shrink: 0;
    stroke: var(--accent);
}
.agenda-heure {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
    font-family: var(--fh);
}


/* ═══════════════════════════════
   SUSPENSIONS
═══════════════════════════════ */
.susp-block {
    margin-bottom: 2.5rem;
}
.susp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.susp-title {
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg);
    padding: 10px;
    box-shadow: 0 0 5px 5px #dedede;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    font-variant: small-caps;
    letter-spacing: 2px;
}
.susp-card {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.susp-box {
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.susp-empty {
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}
.susp-table {
    width: 100%;
    border-collapse: collapse;
}
.susp-table thead th {
    text-align: left;
    padding: 9px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--off);
    border-bottom: 1px solid var(--mid);
}
.susp-table tbody td {
    padding: 11px 14px;
    font-size: 13px;    
    vertical-align: middle;
    border: 0;
}
.susp-table tbody tr:last-child td {
    border-bottom: none;
}
.susp-table tbody tr:hover td {
    background: #fafbfd;
}
.susp-motif {
    font-size: 12px;
    color: var(--muted);
    max-width: 200px;
}
.susp-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}
.susp-status.active {
    background: #FEE2E2;
    color: #991B1B;
}
.susp-status.done {
    background: #D1FAE5;
    color: #065F46;
}
.susp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}
.susp-table tbody td.susp-detail {
    font-size: 12px;
    color: var(--muted);
    padding-top: 0 !important;
    font-style: italic;
    text-align: center;
    border-bottom: 1px solid var(--off);
}
.susp-header .eyebrow {
    font-size: 20px;
    margin-top: 3px;
}


/* ═══════════════════════════════
   NEWS LIST
═══════════════════════════════ */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.news-article {
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    transition: box-shadow var(--t), transform var(--t);
    scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.news-article:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.news-article-img {
    width: 240px;
    flex-shrink: 0;
    overflow: hidden;
}
.news-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-article-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.news-article-body.no-img {
    padding: 1.75rem;
}
.news-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.news-article-date,
.news-article-vues {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--muted);
}
.news-article-date svg,
.news-article-vues svg {
    stroke: var(--accent);
}
.news-article-title {
    font-family: var(--fh);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    margin: 0;
}
.news-article-content {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text);
    text-align: justify;
}
.news-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--r);
    margin: 0.75rem 0;
}
.news-article-content p {
    margin-bottom: 0.75rem;
}
.news-article-content a {
    color: var(--accent);
}


/* Responsive */
@media (max-width: 640px) {
    .news-article {
        flex-direction: column;
    }
    .news-article-img {
        width: 100%;
        height: 180px;
    }
}

/* ═══════════════════════════════
   PAGINATION
═══════════════════════════════ */
.pagination-wrap {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}
.pagination-nav {
    display: flex;
    justify-content: center;
}
.pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--r);
    border: 1px solid var(--mid);
    background: var(--white);
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--t);
    text-decoration: none;
    user-select: none;
}
.page-item a.page-link:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--off);
}
.page-item.active .page-link {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    cursor: default;
}
.page-item.disabled .page-link {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.page-item.ellipsis .page-link {
    border-color: transparent;
    background: transparent;
    cursor: default;
    pointer-events: none;
}
.page-item.prev .page-link,
.page-item.next .page-link {
    font-size: 15px;
    font-weight: 700;
}

/* ═══════════════════════════════
   BUTEURS
═══════════════════════════════ */
.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.table thead th {
    text-align: left;
    padding: 10px 16px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--off);
    border-bottom: 1px solid var(--mid);
}
.table thead th:first-child {
    width: 48px;
    text-align: center;
}
.table thead th:last-child {
    text-align: center;
    width: 80px;
}
.table tbody td {
    padding: 11px 16px;
    font-size: 13.5px;
    border-bottom: 1px solid var(--off);
    vertical-align: middle;
}
.table tbody tr:last-child td {
    border-bottom: none;
}
.table tbody tr:hover td {
    background: #fafbfd;
}
.table tbody td:first-child {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}
.table tbody td:last-child {
    text-align: center;
}
.table tbody td strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* Top 3 */
.table tbody tr:nth-child(1) td:first-child { color: #F5A623; font-size: 16px; }
.table tbody tr:nth-child(2) td:first-child { color: #9E9E9E; font-size: 15px; }
.table tbody tr:nth-child(3) td:first-child { color: #CD7F32; font-size: 14px; }


.buteurs-search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 1.2rem;
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    border-bottom: none;
}
.buteurs-search-wrap svg {
    stroke: var(--muted);
    flex-shrink: 0;
}
.buteurs-search-wrap input {
    border: none;
    outline: none;
    font-family: var(--fb);
    font-size: 13px;
    color: var(--text);
    flex: 1;
    background: transparent;
}
.buteurs-search-wrap input::placeholder {
    color: var(--muted);
}
.buteurs-search-wrap + .table {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* ═══════════════════════════════
   ARBITRES
═══════════════════════════════ */
.arbitre-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    border-bottom: none;
    padding: 0.75rem 1.2rem;
    flex-wrap: wrap;
}
.arbitre-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}
.arbitre-search svg { stroke: var(--muted); flex-shrink: 0; }
.arbitre-search input {
    border: none;
    outline: none;
    font-family: var(--fb);
    font-size: 13px;
    color: var(--text);
    background: transparent;
    flex: 1;
}
.arbitre-search input::placeholder { color: var(--muted); }
.arbitre-cats {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.cat-btn {
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--mid);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-family: var(--fb);
    transition: all var(--t);
}
.cat-btn:hover { border-color: var(--navy); color: var(--navy); }
.cat-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.arbitre-filters + .table {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Badges catégories */
.cat-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}
.cat-ip  { background: #EEF2FF; color: #3730A3; }
.cat-e1  { background: #FEF3C7; color: #92400E; }
.cat-e2  { background: #D1FAE5; color: #065F46; }
.cat-f   { background: #FCE7F3; color: #9D174D; }
.cat-st  { background: #F1F5F9; color: #475569; }

/* Indemnité */
.indemnite {
    font-weight: 700;
    color: var(--accent);
    font-family: var(--fh);
    font-size: 14px;
}

/* Bloc */
.bloc {
    font-size: 12.5px;
    color: var(--muted);
    white-space: nowrap;
}
.bloc-sup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 4px;
}

/* Badge H */
.badge-h {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

/* Légende */
.arbitre-legende {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    font-size: 12px;
    color: var(--muted);
    padding: 0.75rem 0;
    border-top: 1px solid var(--mid);
}
.arbitre-legende strong {
    color: var(--text);
}

.arbitre-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.arbitre-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--off);
    transition: background var(--t);
}
.arbitre-card:last-child {
    border-bottom: none;
}
.arbitre-card:hover {
    background: #fafbfd;
}
.arbitre-card-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    width: 90px;
}
.arbitre-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    width: 20px;
    text-align: center;
}
.arbitre-card-body {
    flex: 1;
    min-width: 0;
}
.arbitre-card-nom {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}
.arbitre-card-nom span {
    font-weight: 400;
    color: var(--text);
    margin-left: 4px;
}
.arbitre-card-club {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}
.arbitre-card-right {
    text-align: right;
    flex-shrink: 0;
}
.arbitre-card-indemnite {
    font-family: var(--fh);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}
.arbitre-card-bloc {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px;
}

@media (max-width: 500px) {
    .arbitre-card-left { width: auto; }
    .arbitre-card-club { display: none; }
}