/* ============================================================
   ActuLFC — Design System v4
   Fond #f2f2f5 · Surfaces blanches · Rouge #C8102E
   Bebas Neue (titres) · Figtree (corps)
   Mobile-first · App mobile style
   ============================================================ */

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

/* ── Variables ── */
:root {
  --red:       #C8102E;
  --red-dk:    #a00d24;
  --red-lt:    #fff0f2;
  --red-mid:   rgba(200,16,46,.1);
  --bg:        #f2f2f5;
  --surface:   #ffffff;
  --surface2:  #f7f7f9;
  --border:    #eeeeee;
  --border2:   #e5e5e5;
  --text:      #111111;
  --text2:     #444444;
  --muted:     #999999;
  --green:     #16a34a;
  --yellow:    #ca8a04;
  --font:      'Figtree', system-ui, -apple-system, sans-serif;
  --bebas:     'Bebas Neue', sans-serif;
  --r:         12px;
  --r-sm:      8px;
  --r-lg:      16px;
  --nav-h:     54px;
  --tab-h:     62px;
  --max-w:     1080px;
}

/* ── Reset ── */
html { overflow-x: hidden; }
body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--tab-h);
}
@media (min-width: 1024px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ── */
.lfc-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 14px;
}
@media (min-width: 768px) { .lfc-container { padding: 0 24px; } }

.lfc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 0;
  min-width: 0;
}
@media (min-width: 1024px) {
  .lfc-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
    align-items: start;
  }
}

.lfc-main { min-width: 0; }
#page-wrap { overflow-x: clip; width: 100%; }

.lfc-container > *,
.lfc-layout > *,
.lfc-main > * {
  max-width: 100%;
  min-width: 0;
}

/* ── TOP NAV ── */
.lfc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}
.lfc-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 14px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) { .lfc-header__inner { padding: 0 24px; } }

.lfc-header__logo {
  font-family: var(--bebas);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.lfc-header__logo span { color: var(--red); }

.lfc-header__actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }

.lfc-search-toggle {
  width: 34px; height: 34px;
  background: var(--bg);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background .15s, color .15s;
  cursor: pointer; border: none; flex-shrink: 0;
}
.lfc-search-toggle:hover { background: var(--border2); color: var(--text); }

/* Nav desktop */
.lfc-nav { display: none; align-items: center; }
@media (min-width: 1024px) { .lfc-nav { display: flex; } }
.lfc-nav__list { list-style: none; display: flex; gap: 2px; }
.lfc-nav__link {
  display: block;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color .15s, background .15s;
  text-decoration: none;
}
.lfc-nav__link:hover { color: var(--text); background: var(--bg); }
.lfc-nav__link.active { color: var(--text); font-weight: 700; }
.lfc-nav__link.active::after {
  content: '';
  display: block;
  width: 16px; height: 2px;
  background: var(--red);
  border-radius: 2px;
  margin: 2px auto 0;
}

/* Prochain match dans le header */
.lfc-next-match {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border2);
  text-decoration: none;
  color: inherit;
  transition: background .15s;
  flex-shrink: 0;
}
.lfc-next-match:hover { background: var(--border); }
.lfc-next-match__info { display: flex; flex-direction: column; line-height: 1.2; }
.lfc-next-match__label {
  font-size: 8px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .6px; color: var(--red);
}
.lfc-next-match__team { font-size: 12px; font-weight: 700; color: var(--text); }
.lfc-next-match__date { font-size: 10px; font-weight: 600; color: var(--muted); white-space: nowrap; }

/* ── BOTTOM NAV MOBILE ── */
.lfc-mobile-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  min-height: 62px;
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 9999;
  display: flex;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (min-width: 1024px) { .lfc-mobile-nav { display: none !important; } }

.lfc-mobile-nav__list { display: flex; width: 100%; list-style: none; }
.lfc-mobile-nav__item { flex: 1; position: relative; }

.lfc-mobile-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 62px;
  min-height: 62px;
  gap: 3px;
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: color .15s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  flex-shrink: 0;
}
.lfc-mobile-nav__link svg { width: 20px; height: 20px; flex-shrink: 0; }
.lfc-mobile-nav__item.active .lfc-mobile-nav__link { color: var(--red); }
.lfc-mobile-nav__item.active::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  margin-left: -14px;
  width: 28px; height: 3px;
  background: var(--red);
  border-radius: 0 0 3px 3px;
}

/* ── SEARCH OVERLAY ── */
.lfc-search-overlay {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  padding: 14px;
}
.lfc-search-overlay.open { display: block; }
.lfc-search-overlay__box { max-width: 540px; margin: 0 auto; }
.lfc-search-overlay__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border-radius: var(--r);
  padding: 0 12px;
  height: 46px;
}
.lfc-search-overlay__inner input {
  flex: 1;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
}
.lfc-search-overlay__inner input::placeholder { color: var(--muted); }
#lfc-search-close {
  color: var(--muted); cursor: pointer;
  display: flex; align-items: center;
  padding: 4px; border-radius: 4px;
  transition: color .15s; border: none; background: none;
}
#lfc-search-close:hover { color: var(--text); }
.lfc-search-results {
  background: var(--surface);
  border-top: none;
  overflow: hidden;
  margin-top: 10px;
  border-radius: 10px;
}
.lfc-search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 13px; font-weight: 600;
  transition: background .1s; text-decoration: none;
}
.lfc-search-result-item:last-child { border-bottom: none; }
.lfc-search-result-item:hover { background: var(--bg); }
.lfc-search-result-item img {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; background: var(--bg);
}

/* ── TICKER SIDEBAR ── */
.lfc-ticker-widget { padding: 0; overflow: hidden; }
.lfc-ticker-tabs { display: flex; border-bottom: 1px solid var(--border); }
.lfc-ticker-tab {
  flex: 1; padding: 10px 4px;
  font-size: 9.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .4px;
  color: var(--muted); background: none; border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer; transition: color .15s, border-color .15s;
  margin-bottom: -1px; white-space: nowrap;
}
.lfc-ticker-tab.active { color: var(--red); border-bottom-color: var(--red); }
.lfc-ticker-tab:hover { color: var(--text); }
.lfc-ticker-pane { display: none; overflow: hidden; }
.lfc-ticker-pane.active { display: block; }
.lfc-ticker-item { border-bottom: 1px solid var(--border); }
.lfc-ticker-item:last-child { border-bottom: none; }
.lfc-ticker-item__link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; text-decoration: none;
  transition: background .12s; overflow: hidden;
}
.lfc-ticker-item__link:hover { background: var(--surface2); }
.lfc-ticker-item--hl .lfc-ticker-item__title { color: var(--red); font-weight: 700; }
.lfc-ticker-item__date {
  font-size: 10px; font-weight: 700; color: var(--muted);
  white-space: nowrap; flex-shrink: 0; align-self: center;
}
.lfc-ticker-item__title-wrap { flex: 1; min-width: 0; overflow: hidden; }
.lfc-ticker-item__title {
  font-size: 12px; font-weight: 600; color: var(--text);
  white-space: nowrap; display: inline-block; transition: transform .3s ease;
}
.lfc-ticker-item--hl .lfc-ticker-item__title { color: var(--red); font-weight: 700; }
.lfc-ticker-empty { padding: 16px 14px; font-size: 12px; color: var(--muted); }
.lfc-ticker-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px; border-top: 1px solid var(--border);
}
.lfc-ticker-nav__all { font-size: 11px; font-weight: 700; color: var(--red); text-decoration: none; }
.lfc-ticker-nav__all:hover { text-decoration: underline; }
.lfc-ticker-nav__btns { display: flex; gap: 4px; }
.lfc-ticker-nav__btn {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 6px;
  background: var(--surface); color: var(--text); cursor: pointer;
  transition: background .12s, color .12s;
}
.lfc-ticker-nav__btn:hover:not(:disabled) { background: var(--red); color: #fff; border-color: var(--red); }
.lfc-ticker-nav__btn:disabled { opacity: .35; cursor: default; }

/* ── HERO ARTICLE ── */
.lfc-hero-card {
  background: var(--surface); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border);
  margin-bottom: 10px; display: block; text-decoration: none;
  color: inherit; transition: opacity .2s; width: 100%; max-width: 100%;
}
.lfc-hero-card:hover { opacity: .95; }
.lfc-hero-card__img {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden; background: var(--bg); position: relative;
}
.lfc-hero-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.lfc-hero-card:hover .lfc-hero-card__img img { transform: scale(1.03); }
.lfc-hero-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
}
.lfc-hero-card__over-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
.lfc-hero-card__cat {
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 9px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .5px;
  display: inline-block; margin-bottom: 6px;
}
.lfc-hero-card__title {
  font-family: var(--bebas); font-size: 22px;
  letter-spacing: .5px; color: #fff; line-height: 1.1;
  word-break: break-word; overflow-wrap: break-word;
}
.lfc-hero-card__meta { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ── CARDS GRILLE ── */
.lfc-posts-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 10px;
}
@media (min-width: 640px)  { .lfc-posts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .lfc-posts-grid { grid-template-columns: repeat(3, 1fr); } }

.lfc-card {
  background: var(--surface); border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none; color: inherit;
}
.lfc-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.lfc-card__img {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: var(--bg); position: relative; flex-shrink: 0;
}
.lfc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.lfc-card:hover .lfc-card__img img { transform: scale(1.04); }
.lfc-card__cat {
  position: absolute; top: 8px; left: 8px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 2px 8px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .5px;
}
.lfc-card__body { padding: 10px 11px 12px; flex: 1; display: flex; flex-direction: column; }
.lfc-card__title {
  font-size: 12px; font-weight: 700; line-height: 1.35; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.lfc-card__date { font-size: 10px; color: var(--muted); margin-top: 6px; }

/* Card liste */
.lfc-card-row {
  background: var(--surface); border-radius: var(--r);
  border: 1px solid var(--border); overflow: hidden;
  display: flex; gap: 0; text-decoration: none; color: inherit;
  transition: background .15s; margin-bottom: 6px;
}
.lfc-card-row:hover { background: var(--surface2); }
.lfc-card-row__img { width: 80px; min-height: 70px; background: var(--bg); flex-shrink: 0; overflow: hidden; }
.lfc-card-row__img img { width: 100%; height: 100%; object-fit: cover; }
.lfc-card-row__body { padding: 10px 12px; flex: 1; min-width: 0; }
.lfc-card-row__title {
  font-size: 13px; font-weight: 700; line-height: 1.35; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.lfc-card-row__meta { font-size: 10px; color: var(--muted); margin-top: 4px; }

/* ── SECTION HEADER ── */
.lfc-section-header { display: flex; align-items: center; gap: 10px; padding: 16px 0 10px; }
.lfc-section-title {
  font-family: var(--bebas); font-size: 18px;
  letter-spacing: 1px; color: var(--text); white-space: nowrap;
  margin: 0;
}
.lfc-section-title span { color: var(--red); }
.lfc-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); margin-left: 8px; }
.lfc-section-link { font-size: 12px; font-weight: 700; color: var(--red); margin-left: auto; white-space: nowrap; flex-shrink: 0; }

/* ── BLOCK ── */
.lfc-block { background: var(--surface); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; margin-bottom: 10px; }
.lfc-block__head {
  padding: 10px 14px; font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .8px; color: var(--muted);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  margin: 0;
}
.lfc-block__head-link { font-size: 11px; color: var(--red); font-weight: 700; text-transform: none; letter-spacing: 0; }

/* ── PAGE HERO ── */
.lfc-page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-h) + 20px) 0 20px;
}
.lfc-page-hero__kicker { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--red); margin-bottom: 4px; }
.lfc-page-hero__title { font-family: var(--bebas); font-size: clamp(28px, 6vw, 44px); letter-spacing: 1px; color: var(--text); line-height: 1; }
.lfc-page-hero__sub { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 5px; }

/* ── JOUEUR HERO ── */
.lfc-player-hero { background: var(--surface); border-bottom: 1px solid var(--border); padding-top: var(--nav-h); }
.lfc-player-hero__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 18px 14px 0;
  display: flex; gap: 16px; align-items: flex-end;
}
@media (min-width: 768px) { .lfc-player-hero__inner { padding: 24px 24px 0; } }
.lfc-player-hero__photo {
  width: 90px; min-height: 110px; background: var(--bg);
  border-radius: var(--r) var(--r) 0 0; overflow: hidden;
  flex-shrink: 0; position: relative;
  border: 1px solid var(--border); border-bottom: none;
}
.lfc-player-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.lfc-player-hero__photo-ph {
  width: 100%; height: 110px; display: flex; align-items: center; justify-content: center;
  font-family: var(--bebas); font-size: 32px; color: var(--border2);
}
.lfc-player-hero__num-bg { position: absolute; top: 4px; left: 6px; font-family: var(--bebas); font-size: 26px; color: rgba(0,0,0,.08); line-height: 1; }
.lfc-player-hero__info { flex: 1; min-width: 0; padding-bottom: 16px; }
.lfc-player-hero__supra { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 4px; }
.lfc-player-hero__name { font-family: var(--bebas); font-size: clamp(26px, 6vw, 40px); letter-spacing: .5px; line-height: 1; color: var(--text); }
.lfc-player-hero__name small { display: block; font-family: var(--font); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 2px; }
.lfc-player-hero__tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 8px; }

/* Stats bar */
.lfc-stats-bar { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--border); max-width: var(--max-w); margin: 0 auto; }
@media (max-width: 380px) {
  .lfc-stats-bar { grid-template-columns: repeat(3, 1fr); }
  .lfc-stat-pill:nth-child(4), .lfc-stat-pill:nth-child(5) { border-top: 1px solid var(--border); }
}
.lfc-stat-pill { padding: 12px 6px; text-align: center; border-right: 1px solid var(--border); }
.lfc-stat-pill:last-child { border-right: none; }
.lfc-stat-pill__val { font-family: var(--bebas); font-size: 24px; color: var(--red); line-height: 1; margin-bottom: 3px; }
.lfc-stat-pill__lbl { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); }

/* ── TAGS / BADGES ── */
.lfc-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: 20px; padding: 3px 10px;
  font-size: 11px; font-weight: 600; color: var(--text2); white-space: nowrap;
}
.lfc-tag.red   { background: var(--red-lt); color: var(--red); border-color: rgba(200,16,46,.15); }
.lfc-tag.green { background: rgba(22,163,74,.08); color: var(--green); border-color: rgba(22,163,74,.2); }
.lfc-tag.orange{ background: rgba(202,138,4,.08); color: var(--yellow); border-color: rgba(202,138,4,.2); }
.lfc-tag.blue  { background: #e8f0ff; color: #1d4ed8; border-color: #c3d5ff; }
.lfc-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .3px; }
.lfc-badge--gk  { background: #fef9c3; color: #92400e; }
.lfc-badge--def { background: #dbeafe; color: #1e40af; }
.lfc-badge--mid { background: #dcfce7; color: #166534; }
.lfc-badge--att { background: var(--red-lt); color: var(--red); }

/* ── BIO ROWS ── */
.lfc-bio-row { display: flex; padding: 9px 14px; border-bottom: 1px solid var(--border); gap: 12px; align-items: center; font-size: 13px; }
.lfc-bio-row:last-child { border-bottom: none; }
.lfc-bio-key { flex: 0 0 120px; color: var(--muted); font-weight: 500; font-size: 12px; }
.lfc-bio-val { font-weight: 600; color: var(--text); }

/* ── STATS TABLE ── */
.lfc-stats-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.lfc-stats-table thead { background: var(--surface2); }
.lfc-stats-table th { padding: 9px 10px; text-align: center; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); border-bottom: 1px solid var(--border); }
.lfc-stats-table th:first-child { text-align: left; }
.lfc-stats-table td { padding: 9px 10px; text-align: center; border-bottom: 1px solid var(--border); }
.lfc-stats-table td:first-child { text-align: left; font-weight: 600; }
.lfc-stats-table tbody tr:last-child td { border-bottom: none; }
.lfc-stats-table tbody tr:hover { background: var(--surface2); }
.lfc-stats-table .lfc-total { background: var(--red-lt) !important; font-weight: 800; color: var(--red); }

.lfc-tabs { display: flex; gap: 5px; padding: 12px 14px 0; flex-wrap: wrap; }
.lfc-tab { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; border: 1.5px solid var(--border2); background: var(--surface); color: var(--muted); cursor: pointer; transition: all .15s; }
.lfc-tab.active, .lfc-tab:hover { border-color: var(--red); background: var(--red); color: #fff; }

/* ── FAQ ACCORDION ── */
.lfc-faq__item { border-bottom: 1px solid var(--border); }
.lfc-faq__item:last-child { border-bottom: none; }
.lfc-faq__q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 13px 16px; font-size: 13px; font-weight: 700;
  color: var(--text); text-align: left;
  background: none; border: none; cursor: pointer; transition: color .15s;
}
.lfc-faq__q:hover, .lfc-faq__q[aria-expanded="true"] { color: var(--red); }
.lfc-faq__icon { flex-shrink: 0; transition: transform .2s; }
.lfc-faq__q[aria-expanded="true"] .lfc-faq__icon { transform: rotate(180deg); }
.lfc-faq__a { padding: 0 16px 13px; font-size: 13px; line-height: 1.7; color: var(--text2); }
.lfc-faq__a[hidden] { display: none; }

/* ── GRILLE EFFECTIF ── */
.lfc-squad-section { margin-bottom: 28px; }
.lfc-squad-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
@media (min-width: 480px) { .lfc-squad-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); } }
@media (min-width: 768px) { .lfc-squad-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); } }
.lfc-squad-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.lfc-squad-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.lfc-squad-card__photo { position: relative; aspect-ratio: 3/4; background: var(--bg); overflow: hidden; }
.lfc-squad-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .3s; }
.lfc-squad-card:hover .lfc-squad-card__photo img { transform: scale(1.04); }
.lfc-squad-card__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--bebas); font-size: 40px; color: var(--border2); }
.lfc-squad-card__num { position: absolute; top: 8px; left: 8px; font-family: var(--bebas); font-size: 18px; color: rgba(255,255,255,.9); line-height: 1; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.lfc-squad-card__status { position: absolute; bottom: 6px; right: 6px; font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 20px; text-transform: uppercase; letter-spacing: .3px; }
.lfc-squad-card__status.injured { background: rgba(220,38,38,.9); color: #fff; }
.lfc-squad-card__status.loan    { background: rgba(37,99,235,.9);  color: #fff; }
.lfc-squad-card__body { padding: 8px 10px 10px; }
.lfc-squad-card__name { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lfc-squad-card__nat { font-size: 10px; color: var(--muted); margin-top: 2px; }

.lfc-player-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--border); transition: background .12s; text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
.lfc-player-row:last-child { border-bottom: none; }
.lfc-player-row:hover, .lfc-player-row:active { background: var(--surface2); }
.lfc-player-row__num { font-family: var(--bebas); font-size: 18px; color: var(--border2); width: 22px; text-align: center; flex-shrink: 0; }
.lfc-player-row__photo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: var(--bg); border: 1.5px solid var(--border2); flex-shrink: 0; }
.lfc-player-row__ph { width: 36px; height: 36px; border-radius: 50%; background: var(--red-lt); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: var(--red); border: 1.5px solid rgba(200,16,46,.15); flex-shrink: 0; }
.lfc-player-row__info { flex: 1; min-width: 0; }
.lfc-player-row__name { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lfc-player-row__nat { font-size: 11px; color: var(--muted); margin-top: 1px; }
.lfc-player-row__stat { font-size: 12px; font-weight: 700; color: var(--red); text-align: right; flex-shrink: 0; }
.lfc-player-row__stat span { font-size: 10px; font-weight: 500; color: var(--muted); }
.lfc-player-row__arrow { color: var(--border2); font-size: 14px; flex-shrink: 0; }

.lfc-filter-row { display: flex; gap: 6px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 14px 0 10px; }
.lfc-filter-row::-webkit-scrollbar { display: none; }
.lfc-filter-chip { padding: 5px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; border: 1.5px solid var(--border2); background: var(--surface); color: var(--text2); white-space: nowrap; cursor: pointer; transition: all .15s; flex-shrink: 0; }
.lfc-filter-chip.active, .lfc-filter-chip:hover { border-color: var(--red); background: var(--red); color: #fff; }

/* ── CLASSEMENT ── */
.lfc-table-wrap { background: var(--surface); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; margin-bottom: 10px; }
.lfc-standings-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.lfc-standings-table thead { background: var(--surface2); border-bottom: 1px solid var(--border); }
.lfc-standings-table th { padding: 9px 6px; text-align: center; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); white-space: nowrap; }
.lfc-standings-table th:nth-child(2) { text-align: left; }
.lfc-standings-table td { padding: 10px 6px; text-align: center; border-bottom: 1px solid var(--border); }
.lfc-standings-table tbody tr:last-child td { border-bottom: none; }
.lfc-standings-table td:nth-child(2) { text-align: left; font-weight: 700; }
.lfc-standings-table tbody tr:hover { background: var(--surface2); }
.lfc-standings-table tr.lfc-hl { background: var(--red-lt); }
.lfc-standings-table tr.lfc-hl td:nth-child(2) { color: var(--red); }
.lfc-zone-cl td:first-child  { box-shadow: inset 3px 0 0 #2563eb; }
.lfc-zone-el td:first-child  { box-shadow: inset 3px 0 0 #ea580c; }
.lfc-zone-rel td:first-child { box-shadow: inset 3px 0 0 #dc2626; }
@media (max-width: 640px) {
  .lfc-standings-table .lfc-hide-mobile { display: none; }
  .lfc-standings-table th, .lfc-standings-table td { padding: 9px 5px; font-size: 11px; }
}
.lfc-form-dot { display: inline-flex; align-items: center; justify-content: center; width: 14px; height: 14px; border-radius: 50%; font-size: 8px; font-weight: 800; color: #fff; margin: 0 1px; }
.lfc-form-dot--V, .lfc-form-dot--W { background: var(--green); }
.lfc-form-dot--N, .lfc-form-dot--D { background: var(--yellow); }
.lfc-form-dot--L { background: #dc2626; }

/* ── MAILLOTS ── */
.lfc-kits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; }
.lfc-kit-card { background: var(--surface); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; }
.lfc-kit-card__header { padding: 10px 14px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.lfc-kit-card__season { font-family: var(--bebas); font-size: 16px; letter-spacing: .5px; color: var(--text); }
.lfc-kit-card__brand { font-size: 11px; font-weight: 600; color: var(--muted); }
.lfc-kit-card__kits { display: grid; grid-template-columns: repeat(3, 1fr); }
.lfc-kit-item { padding: 14px 10px; text-align: center; border-right: 1px solid var(--border); }
.lfc-kit-item:last-child { border-right: none; }
.lfc-kit-item img { width: 100%; max-width: 90px; margin: 0 auto; border-radius: var(--r-sm); transition: transform .2s; }
.lfc-kit-item img:hover { transform: scale(1.07); }
.lfc-kit-item__ph { width: 70px; height: 90px; margin: 0 auto; border-radius: var(--r-sm); }
.lfc-kit-item__label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-top: 8px; }

/* ── SIDEBAR ── */
.lfc-sidebar { display: block; }
@media (min-width: 1024px) { .lfc-sidebar { position: sticky; top: calc(var(--nav-h) + 14px); align-self: start; } }
.widget { background: var(--surface); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; margin-bottom: 10px; }
.widget-title { padding: 10px 14px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); border-bottom: 1px solid var(--border); }

/* ── PARTAGE ── */
.lfc-share { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.lfc-share__label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); flex-shrink: 0; }
.lfc-share__btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: transform .15s, opacity .15s; white-space: nowrap; }
.lfc-share__btn:hover { transform: translateY(-2px); opacity: .9; }
.lfc-share__btn:active { transform: scale(.97); }
.lfc-share__btn--x   { background: #000; color: #fff; }
.lfc-share__btn--fb  { background: #1877f2; color: #fff; }
.lfc-share__btn--wa  { background: #25d366; color: #fff; }
.lfc-share__btn--copy { background: var(--bg); color: var(--text); border: 1.5px solid var(--border2); font-family: var(--font); }
.lfc-share__btn--copy.copied { background: #dcfce7; border-color: #86efac; color: #166534; }

.lfc-reading-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--red); border-radius: 0 2px 2px 0; z-index: 200; width: 0%; transition: width .1s linear; }

/* ── ARTICLE SINGLE ── */
.lfc-single-header { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.lfc-single-header__img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/9; width: 100%; flex-shrink: 0; }
.lfc-single-header__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lfc-single-header__info { display: flex; flex-direction: column; width: 100%; }
.lfc-match-bar { background: var(--surface); border-bottom: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-top: var(--nav-h); }
.lfc-match-bar::-webkit-scrollbar { display: none; }
.lfc-article-content { font-size: 16px; line-height: 1.8; color: var(--text2); word-break: break-word; overflow-wrap: break-word; }
.lfc-article-content p { margin-bottom: 1.2em; }
.lfc-article-content h2 { font-family: var(--bebas); font-size: 22px; letter-spacing: .5px; margin: 1.5em 0 .5em; color: var(--text); }
.lfc-article-content h3 { font-size: 17px; font-weight: 700; margin: 1.2em 0 .4em; color: var(--text); }
.lfc-article-content a { color: var(--red); text-decoration: underline; }
.lfc-article-content strong { color: var(--text); font-weight: 700; }
.lfc-article-content img { border-radius: var(--r); margin: 1.2em auto; }
.lfc-article-content blockquote { border-left: 3px solid var(--red); padding: 10px 16px; margin: 1em 0; background: var(--red-lt); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-style: italic; }

/* ── BREADCRUMB ── */
.lfc-breadcrumb { padding: 12px 0 0; font-size: 11px; color: var(--muted); overflow-x: auto; scrollbar-width: none; white-space: nowrap; }
.lfc-breadcrumb::-webkit-scrollbar { display: none; }
.lfc-breadcrumb ol { display: flex; gap: 5px; list-style: none; align-items: center; }
.lfc-breadcrumb li + li::before { content: '›'; margin-right: 5px; color: var(--border2); }
.lfc-breadcrumb a { color: var(--muted); }
.lfc-breadcrumb a:hover { color: var(--red); }

/* ── PAGINATION ── */
.page-numbers-wrap, nav.lfc-pagination { display: flex; justify-content: center; margin: 28px 0; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 13px; font-weight: 700; color: var(--text2);
  background: var(--surface); border: 1.5px solid var(--border2);
  text-decoration: none; transition: all .15s; margin: 0 3px;
}
.page-numbers:hover { background: var(--bg); border-color: var(--red); color: var(--red); }
.page-numbers.current { background: var(--red); border-color: var(--red); color: #fff; pointer-events: none; }
.page-numbers.dots { border: none; background: none; font-size: 16px; color: var(--muted); width: 24px; }
.page-numbers.prev, .page-numbers.next { background: var(--surface); border-color: var(--border2); color: var(--text2); font-size: 16px; }
.page-numbers.prev:hover, .page-numbers.next:hover { background: var(--red); border-color: var(--red); color: #fff; }
ul.page-numbers { display: flex; align-items: center; list-style: none; padding: 0; margin: 28px 0; justify-content: center; flex-wrap: wrap; gap: 4px; width: auto; height: auto; border-radius: 0; border: none; background: none; font-size: inherit; font-weight: inherit; color: inherit; }
ul.page-numbers li { margin: 0; }

/* ── BARRE SCORES ── */
.lfc-scores-bar {
  padding: 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lfc-scores-bar::-webkit-scrollbar {
  display: none;
}

/* CONTENEUR → FLEX EN LIGNE */
.lfc-scores-bar__inner {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap; /* force une seule ligne */
}

/* ITEM */
.lfc-score-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  background: var(--surface);
  transition: border-color .15s, box-shadow .15s;

  min-width: 140px; /* largeur fixe */
  flex: 0 0 auto;   /* empêche le shrink */
}

.lfc-score-item:hover {
  border-color: var(--border2);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* DATE */
.lfc-score-item__date {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

/* TEAM */
.lfc-score-item__team {
  display: flex;
  align-items: center;
  gap: 7px;
}

.lfc-score-item__logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.lfc-score-item__name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  white-space: nowrap;
}

/* SCORE */
.lfc-score-item__goals {
  font-size: 13px;
  font-weight: 800;
  min-width: 14px;
  text-align: right;
}

.lfc-score-item__goals--winner {
  color: var(--text);
}

.lfc-score-item__goals--loser {
  color: var(--muted);
  font-weight: 600;
}

/* TEMPS */
.lfc-score-item__time {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  min-width: 14px;
  text-align: right;
}

/* ── FOOTER ── */
.lfc-footer { background: var(--red); color: rgba(255,255,255,.75); padding: 40px 0 24px; margin-top: 40px; }
@media (max-width: 1024px) { .lfc-footer { margin-bottom: var(--tab-h); } }
.lfc-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; margin-bottom: 32px; }
@media (max-width: 640px) { .lfc-footer__grid { grid-template-columns: 1fr; gap: 20px; } }
.lfc-footer__logo { font-family: var(--bebas); font-size: 20px; letter-spacing: 1px; color: #fff; display: block; margin-bottom: 8px; text-decoration: none; }
.lfc-footer__logo span { color: rgba(255,255,255,.6); }
.lfc-footer__desc { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.7); }
.lfc-footer__social { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,.5); font-size: 11px; margin-top: 12px; text-decoration: none; transition: color .15s; }
.lfc-footer__social:hover { color: #fff; }
.lfc-footer__col h4 { color: rgba(255,255,255,.55); font-size: 9px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-weight: 800; }
.lfc-footer__col ul { list-style: none; }
.lfc-footer__col li { margin-bottom: 6px; }
.lfc-footer__col a { color: rgba(255,255,255,.75); font-size: 12px; transition: color .15s; text-decoration: none; font-weight: 500; }
.lfc-footer__col a:hover { color: #fff; }
.lfc-footer__bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 16px; font-size: 11px; color: rgba(255,255,255,.45); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ── GUIDE TEMPLATE ── */
.lfc-guide-toc { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--red); border-radius: var(--r); padding: 14px 18px; margin-bottom: 28px; }
@media (min-width: 1024px) { .lfc-guide-toc { display: none; } }
.lfc-guide-toc__title { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.lfc-guide-toc__list { list-style: none; counter-reset: toc; padding: 0; margin: 0; }
.lfc-guide-toc__list li { counter-increment: toc; padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: baseline; gap: 8px; }
.lfc-guide-toc__list li:last-child { border-bottom: none; }
.lfc-guide-toc__list li::before { content: counter(toc); font-size: 10px; font-weight: 800; color: var(--red); min-width: 14px; flex-shrink: 0; }
.lfc-guide-toc__list a { font-size: 13px; font-weight: 600; color: var(--text); text-decoration: none; line-height: 1.4; transition: color .15s; }
.lfc-guide-toc__list a:hover { color: var(--red); }
.lfc-guide-toc-sticky { display: none; }
@media (min-width: 1024px) { .lfc-guide-toc-sticky { display: block; } }
.lfc-guide-toc__list--sidebar li { padding: 5px 0; }
.lfc-guide-toc__list--sidebar a { font-size: 12px; color: var(--muted); }
.lfc-guide-toc__list--sidebar a.active, .lfc-guide-toc__list--sidebar a:hover { color: var(--red); font-weight: 700; }
.lfc-guide-content h2 { font-family: var(--bebas); font-size: 22px; letter-spacing: .5px; color: var(--text); margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--border); scroll-margin-top: calc(var(--nav-h) + 24px); }
.lfc-guide-content h3 { font-size: 15px; font-weight: 800; color: var(--text); margin: 22px 0 8px; }
.lfc-guide-content p { font-size: 14px; line-height: 1.85; color: var(--text2); margin-bottom: 14px; }
.lfc-guide-content ul, .lfc-guide-content ol { padding-left: 20px; margin-bottom: 16px; }
.lfc-guide-content li { font-size: 14px; line-height: 1.75; color: var(--text2); margin-bottom: 5px; }
.lfc-guide-content strong { color: var(--text); font-weight: 700; }
.lfc-guide-content a { color: var(--red); font-weight: 600; text-decoration: none; }
.lfc-guide-content a:hover { text-decoration: underline; }
.lfc-guide-callout { display: flex; gap: 12px; border-radius: var(--r); padding: 13px 16px; margin: 18px 0; font-size: 13px; line-height: 1.65; }
.lfc-guide-callout--warning { background: #fff8e1; border: 1px solid #fbbf24; border-left: 4px solid #f59e0b; color: #78350f; }
.lfc-guide-callout--info { background: #eff6ff; border: 1px solid #93c5fd; border-left: 4px solid #3b82f6; color: #1e3a5f; }
.lfc-guide-callout--tip { background: #f0fdf4; border: 1px solid #86efac; border-left: 4px solid #22c55e; color: #14532d; }
.lfc-guide-callout__icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* ── VUES & LIKES ── */
.lfc-views-likes { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.lfc-views-likes__views { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--muted); }
.lfc-like-btn { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--muted); background: none; border: 1px solid var(--border); border-radius: 20px; padding: 5px 12px; cursor: pointer; transition: color .15s, border-color .15s, background .15s; -webkit-tap-highlight-color: transparent; }
.lfc-like-btn:hover, .lfc-like-btn.liked { color: #e11d48; border-color: #e11d48; background: #fff0f3; }
.lfc-like-btn.liked svg { fill: #e11d48; stroke: #e11d48; }
.lfc-like-btn svg { transition: fill .15s, stroke .15s; }

/* ── PARTENAIRES ── */
.lfc-partners-sep { display: flex; align-items: center; gap: 14px; margin: 32px 0 20px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.lfc-partners-sep::before, .lfc-partners-sep::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.lfc-partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
@media (min-width: 640px) { .lfc-partners-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); } }
.lfc-partner-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px 16px; display: flex; align-items: center; justify-content: center; min-height: 90px; text-decoration: none; transition: border-color .2s, transform .2s, box-shadow .2s; }
.lfc-partner-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.lfc-partner-card img { max-width: 100%; max-height: 60px; object-fit: contain; filter: grayscale(100%); opacity: .6; transition: filter .2s, opacity .2s; }
.lfc-partner-card:hover img { filter: grayscale(0%); opacity: 1; }
.lfc-partner-card__name { font-size: 13px; font-weight: 700; color: var(--muted); text-align: center; }

/* ── NEWSLETTER ── */
.lfc-nl-block { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border-radius: var(--r); padding: 20px; margin: 0 0 20px; color: #fff; }
.lfc-nl-block__icon { font-size: 24px; margin-bottom: 8px; }
.lfc-nl-block__title { font-family: var(--bebas); font-size: 20px; letter-spacing: .5px; margin-bottom: 4px; }
.lfc-nl-block__sub { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.lfc-nl-form { display: flex; gap: 8px; margin-bottom: 10px; }
.lfc-nl-form input[type=email] { flex: 1; padding: 9px 12px; border-radius: 8px; border: none; font-size: 13px; min-width: 0; }
.lfc-nl-form button { background: var(--red); color: #fff; border: none; border-radius: 8px; padding: 9px 16px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: opacity .15s; }
.lfc-nl-form button:hover { opacity: .85; }
.lfc-nl-consent { display: flex; align-items: flex-start; gap: 6px; font-size: 10px; color: rgba(255,255,255,.45); line-height: 1.5; cursor: pointer; }
.lfc-nl-consent input { margin-top: 2px; flex-shrink: 0; }
.lfc-nl-consent a { color: rgba(255,255,255,.65); }
.lfc-nl-msg { font-size: 12px; margin-top: 8px; min-height: 16px; }

/* ── LOADING ── */
.lfc-loading { display: flex; align-items: center; justify-content: center; padding: 28px; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 500; }
.lfc-spinner { width: 18px; height: 18px; border: 2px solid var(--border2); border-top-color: var(--red); border-radius: 50%; animation: lfc-spin .6s linear infinite; flex-shrink: 0; }
@keyframes lfc-spin { to { transform: rotate(360deg); } }

/* ── REVEAL ── */
.lfc-reveal { opacity: 0; transform: translateY(12px); transition: opacity .35s, transform .35s; }
.lfc-reveal.lfc-visible { opacity: 1; transform: none; }

/* ── UTILS ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }


/* ================================================================
   PAGE MATCH
================================================================ */
.lfc-match-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-h) + 20px) 0 28px;
}
.lfc-match-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.lfc-match-hero__comp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border2);
}
.lfc-match-hero__date {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.lfc-match-hero__live {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: #dc2626;
  padding: 3px 10px;
  border-radius: 20px;
  animation: lfc-pulse 1.5s ease-in-out infinite;
}
@keyframes lfc-pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

.lfc-match-hero__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lfc-match-hero__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 100px;
  max-width: 180px;
}
.lfc-match-hero__team--lfc { align-items: flex-end; }
.lfc-match-hero__team--opp { align-items: flex-start; }
@media (max-width: 480px) {
  .lfc-match-hero__team--lfc,
  .lfc-match-hero__team--opp { align-items: center; }
}
.lfc-match-hero__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
@media (max-width: 480px) { .lfc-match-hero__logo { width: 52px; height: 52px; } }
.lfc-match-hero__name {
  font-family: var(--bebas);
  font-size: 18px;
  letter-spacing: .5px;
  color: var(--text);
  text-align: center;
}
.lfc-match-hero__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.lfc-match-hero__goals {
  font-family: var(--bebas);
  font-size: 52px;
  line-height: 1;
  color: var(--muted);
  letter-spacing: -2px;
}
.lfc-match-hero__goals--win { color: var(--text); }
.lfc-match-hero__sep {
  font-family: var(--bebas);
  font-size: 52px;
  color: var(--border2);
  line-height: 1;
  margin: 0 6px;
}
.lfc-match-hero__kickoff { text-align: center; }
.lfc-match-hero__status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
  background: var(--bg);
  padding: 3px 10px;
  border-radius: 20px;
}
/* Score display en ligne */
.lfc-match-hero__score > div:first-child {
  display: flex;
  align-items: center;
}
.lfc-match-result {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
}
.lfc-match-result--win  { background: rgba(22,163,74,.1);  color: var(--green); }
.lfc-match-result--loss { background: rgba(220,38,38,.08); color: #dc2626; }
.lfc-match-result--draw { background: rgba(202,138,4,.08); color: var(--yellow); }

/* ================================================================
   SONDAGE
================================================================ */
.lfc-poll { }
.lfc-poll-option-btn:hover {
  border-color: var(--red) !important;
  background: var(--red-lt) !important;
}

/* Layout pleine largeur (sans sidebar) */
.lfc-layout--full {
  grid-template-columns: 1fr !important;
}

/* ── ONGLETS MATCH ── */
.lfc-match-tabs {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}
.lfc-match-tabs .lfc-container { overflow: visible; }

/* ── WIDGET PROCHAINS MATCHS SIDEBAR ── */
.lfc-next-match-item {
  display: block;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background .12s;
}
.lfc-next-match-item:hover { background: var(--surface2); }
.lfc-next-match-item:last-of-type { border-bottom: none; }

.lfc-next-match-item__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
}
.lfc-next-match-item__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.lfc-next-match-item__team--opp { align-items: flex-end; }
.lfc-next-match-item__team img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.lfc-next-match-item__team span {
  font-size: 10px;
  font-weight: 700;
  color: var(--text2);
}
.lfc-next-match-item__vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}
.lfc-next-match-item__date {
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
}
.lfc-next-match-item__time {
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
}
.lfc-next-match-item__comp {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  text-align: center;
}

/* ══════════════════════════════════════════
   PAGE MATCH
══════════════════════════════════════════ */

/* Hero */
.lfc-match-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-h) + 20px) 0 20px;
}
.lfc-match-hero__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.lfc-match-hero__live {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: #dc2626;
  padding: 2px 8px;
  border-radius: 20px;
  animation: lfc-pulse 1.5s ease-in-out infinite;
}
@keyframes lfc-pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

.lfc-match-hero__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.lfc-match-hero__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 160px;
  text-align: center;
}
.lfc-match-hero__team--right { }
.lfc-match-hero__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
@media (max-width: 480px) { .lfc-match-hero__logo { width: 48px; height: 48px; } }
.lfc-match-hero__name {
  font-family: var(--bebas);
  font-size: 16px;
  letter-spacing: .5px;
  color: var(--text);
  line-height: 1.2;
}
.lfc-match-hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 100px;
}
.lfc-match-hero__score-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lfc-match-hero__goals {
  font-family: var(--bebas);
  font-size: 48px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -1px;
}
.lfc-match-hero__sep {
  font-family: var(--bebas);
  font-size: 32px;
  color: var(--border2);
  line-height: 1;
}
.lfc-match-hero__status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
  background: var(--bg);
  padding: 3px 10px;
  border-radius: 20px;
}
.lfc-match-hero__kickoff { text-align: center; }
.lfc-match-hero__kickoff-date { font-size: 11px; color: var(--muted); font-weight: 600; }
.lfc-match-hero__kickoff-time {
  font-family: var(--bebas);
  font-size: 44px;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1.1;
}
.lfc-match-result {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
}
.lfc-match-result--win  { background: rgba(22,163,74,.1);  color: var(--green); }
.lfc-match-result--loss { background: rgba(220,38,38,.08); color: #dc2626; }
.lfc-match-result--draw { background: rgba(202,138,4,.08); color: var(--yellow); }

/* Navigation onglets */
.lfc-match-nav {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}
.lfc-match-nav__list {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.lfc-match-nav__list::-webkit-scrollbar { display: none; }
.lfc-match-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.lfc-match-tab:hover { color: var(--text); }
.lfc-match-tab.active { color: var(--red); border-bottom-color: var(--red); }
.lfc-match-tab__count {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 10px;
}

/* Panels */
.lfc-match-panel { display: none; }
.lfc-match-panel.active { display: block; }

/* ── Score items cliquables ── */
a.lfc-score-item {
  text-decoration: none;
  cursor: pointer;
}
a.lfc-score-item:hover {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(200,16,46,.12);
}
.lfc-score-item--next {
  border-top: 2px solid var(--red);
}

/* ── Match tabs ── */
.lfc-match-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}
.lfc-match-nav__list {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lfc-match-nav__list::-webkit-scrollbar { display: none; }
.lfc-match-tab {
  flex-shrink: 0;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.lfc-match-tab:hover { color: var(--text); }
.lfc-match-tab.active { color: var(--red); border-bottom-color: var(--red); }
.lfc-match-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-left: 4px;
}

/* ── Match panels ── */
.lfc-match-panel { display: none; }
.lfc-match-panel.active { display: block; }

/* ── Next match item (sidebar) ── */
.lfc-next-match-item {
  display: block;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background .12s;
}
.lfc-next-match-item:hover { background: var(--surface2); }
.lfc-next-match-item__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
}
.lfc-next-match-item__team {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.lfc-next-match-item__team--opp { justify-content: flex-end; }
.lfc-next-match-item__team img { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }
.lfc-next-match-item__team span { font-size: 11px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 90px; }
.lfc-next-match-item__vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 1px;
}
.lfc-next-match-item__date { font-size: 10px; font-weight: 700; color: var(--text); }
.lfc-next-match-item__time { font-size: 10px; color: var(--red); font-weight: 700; }
.lfc-next-match-item__comp { font-size: 9px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .3px; }

/* ── Accessible mais invisible ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
