/* ================================================================
   CSVBV Viarmes — Custom Design Override
   Palette : Navy #0d1b2a | Orange #e85d04 | Light #f8fafc
   ================================================================ */

/* ================================================================
   EXTRAS — Présentation, Horaires, Réseaux sociaux
   ================================================================ */

.ce-section {
  padding: 4rem 0;
}
.ce-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Titre */
.ce-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.ce-title-center {
  text-align: center;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: .5rem;
}
.ce-title-center::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--o), var(--o2));
  border-radius: 2px;
}
.ce-sub {
  text-align: center;
  color: #64748b;
  margin-bottom: 2.5rem;
  font-size: .975rem;
}

/* ── Diaporama ── */
.ce-slider-section { background: var(--n); padding: 4rem 0; }
.ce-slider-section .ce-title-center { color: #fff; }
.ce-slider-section .ce-title-center::after { background: linear-gradient(90deg, var(--o), var(--o2)); }
.ce-slider-section .ce-sub { color: #94a3b8; }

.ce-slider {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #1e293b;
  box-shadow: 0 16px 56px rgba(0,0,0,.5);
}

.ce-slider-track {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1e293b;
  transition: opacity .6s ease;
  opacity: 0;
}
.ce-slider-track.ce-slide-loaded { opacity: 1; }

.ce-slider-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: white;
  font-size: .8rem;
  padding: 2rem 1rem .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.ce-slide-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  border: none;
  color: white;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.ce-slide-btn:hover { background: var(--o); transform: translateY(-50%) scale(1.1); }
.ce-slide-prev { left: .75rem; }
.ce-slide-next { right: .75rem; }

.ce-slide-dots {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: .4rem;
  z-index: 2;
}
.ce-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.ce-dot-active,
.ce-dot:hover {
  background: var(--o);
  transform: scale(1.3);
}

.ce-slider-link-wrap { text-align: center; margin-top: 1.5rem; }
.ce-slider-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--o2);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}
.ce-slider-link:hover { color: white; }

/* ── Présentation ── */
.ce-about { background: #fff; border-top: 1px solid rgba(0,0,0,.05); }

.ce-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .ce-about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.ce-about-text p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: .85rem;
  font-size: .975rem;
}
.ce-about-text strong { color: #1e293b; }

.ce-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.ce-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.06);
  border-top: 3px solid var(--o);
  border-radius: .875rem;
  padding: 1rem 1.25rem;
  min-width: 90px;
  transition: transform .2s, box-shadow .2s;
}
.ce-stat:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.ce-stat-n {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--o);
  line-height: 1;
}
.ce-stat-l {
  font-size: .72rem;
  color: #64748b;
  font-weight: 500;
  text-align: center;
  margin-top: .35rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Lieu */
.ce-about-loc {
  background: var(--n);
  color: white;
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.ce-about-loc::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(232,93,4,.15);
  border-radius: 50%;
}
.ce-loc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--o2);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ce-loc-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: .4rem;
}
.ce-loc-addr {
  color: #94a3b8;
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.ce-loc-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--o), #ff7b1c);
  color: white !important;
  padding: .6rem 1.2rem;
  border-radius: .625rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 3px 12px rgba(232,93,4,.4);
}
.ce-loc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,93,4,.5);
}

/* ── Horaires ── */
.ce-schedules { background: #f8fafc; border-top: 1px solid rgba(0,0,0,.05); }

.ce-sched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.ce-sched-card {
  background: white;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  border: 1px solid rgba(0,0,0,.06);
  border-left: 4px solid var(--o);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.ce-sched-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.ce-sched-ico {
  font-size: 1.4rem;
  color: var(--o);
  flex-shrink: 0;
  margin-top: .1rem;
}
.ce-sched-body { display: flex; flex-direction: column; gap: .2rem; }
.ce-sched-cat  { font-weight: 700; color: #1e293b; font-size: .9rem; }
.ce-sched-level {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--o);
  background: rgba(232,93,4,.1);
  border-radius: 99px;
  padding: .1rem .6rem;
  width: fit-content;
}
.ce-sched-time {
  font-size: .82rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-top: .2rem;
}
.ce-sched-time i { color: var(--o); }

/* ── Réseaux sociaux ── */
.ce-social { background: white; border-top: 1px solid rgba(0,0,0,.05); }

.ce-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

.ce-social-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.125rem;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.ce-social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .2s;
}
.ce-social-card:hover::before { opacity: 1; }
.ce-social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}

.ce-insta {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 4px 20px rgba(253,29,29,.3);
}
.ce-twitch {
  background: linear-gradient(135deg, #6441a5, #9147ff);
  box-shadow: 0 4px 20px rgba(145,71,255,.35);
}

.ce-social-ico {
  font-size: 2.25rem;
  flex-shrink: 0;
}
.ce-social-info {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  flex: 1;
}
.ce-social-name   { font-size: 1rem; font-weight: 700; }
.ce-social-handle { font-size: .85rem; opacity: .85; }
.ce-social-desc   { font-size: .75rem; opacity: .7; }
.ce-social-arrow  { font-size: 1.25rem; opacity: .7; }

/* ---- Variables ---- */
:root {
  --o:   #e85d04;
  --o2:  #fb923c;
  --n:   #0d1b2a;
  --n2:  #1e3a5f;
  --sh:  0 4px 24px rgba(0,0,0,.10);
  --sh2: 0 12px 40px rgba(0,0,0,.18);
}

/* ---- Typographie globale ---- */
body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { letter-spacing: -.02em; }

/* ================================================================
   HEADER / NAVBAR
   ================================================================ */
header.sticky {
  background: var(--n) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 2px 24px rgba(0,0,0,.35) !important;
}
header .bg-blue-600 {
  background: var(--o) !important;
  border-radius: .5rem !important;
}
header img.rounded-full {
  box-shadow: 0 0 0 2px var(--o) !important;
}
header button.bg-white\/10 {
  background: rgba(232,93,4,.2) !important;
  border: 1px solid rgba(232,93,4,.4) !important;
}

/* ================================================================
   BOUTONS
   ================================================================ */
.bg-blue-600,
button.bg-blue-600,
a.bg-blue-600,
.bg-orange-600,
button.bg-orange-600,
a.bg-orange-600 {
  background: linear-gradient(135deg, var(--o), #ff7b1c) !important;
  box-shadow: 0 3px 14px rgba(232,93,4,.38) !important;
  border: none !important;
  font-weight: 600 !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.bg-blue-600:hover,
button.bg-blue-600:hover,
a.bg-blue-600:hover,
.bg-orange-600:hover,
button.bg-orange-600:hover,
a.bg-orange-600:hover {
  background: linear-gradient(135deg, #c94e00, var(--o)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(232,93,4,.48) !important;
}
.bg-blue-400,
button.bg-blue-400 {
  background: #94a3b8 !important;
  box-shadow: none !important;
  transform: none !important;
}
a.border-blue-600,
button.border-blue-600 {
  border-color: var(--o) !important;
  color: var(--o) !important;
}
a.border-blue-600:hover,
button.border-blue-600:hover {
  background: rgba(232,93,4,.07) !important;
}

/* ================================================================
   COULEURS ACCENT
   ================================================================ */
.text-blue-600  { color: var(--o) !important; }
.text-blue-200  { color: #fcd9b0 !important; }
.hover\:text-blue-600:hover  { color: var(--o) !important; }
.hover\:text-blue-700:hover  { color: #c94e00 !important; }
.hover\:bg-blue-700:hover    { background: #c94e00 !important; }
.bg-blue-100                 { background: rgba(232,93,4,.11) !important; }
.text-blue-800               { color: var(--o) !important; font-weight: 700 !important; }
.focus\:ring-blue-600:focus  { --tw-ring-color: rgba(232,93,4,.4) !important; }

input:focus,
textarea:focus,
select:focus {
  border-color: var(--o) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(232,93,4,.15) !important;
}

/* ================================================================
   HERO — ligne orange sous les titres
   ================================================================ */
[style*="teams-hero"] h1,
[style*="bureau-hero"] h1,
[style*="contact-hero"] h1,
[style*="galerie-hero"] h1 {
  text-shadow: 0 2px 24px rgba(0,0,0,.6) !important;
}
[style*="teams-hero"] h1::after,
[style*="bureau-hero"] h1::after,
[style*="contact-hero"] h1::after,
[style*="galerie-hero"] h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--o), var(--o2));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ================================================================
   TITRES DE SECTIONS (centrés)
   ================================================================ */
.text-center h2.font-bold,
.text-center > h2 {
  position: relative;
  padding-bottom: 18px;
}
.text-center h2.font-bold::after,
.text-center > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--o), var(--o2));
  border-radius: 2px;
}

/* ================================================================
   CARDS — TEAMS PAGE
   ================================================================ */
.bg-gray-50.rounded-xl.overflow-hidden {
  background: white !important;
  border-radius: 1.125rem !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.07) !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-top: 3px solid var(--o) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}
.bg-gray-50.rounded-xl.overflow-hidden:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--sh2) !important;
}

/* ================================================================
   CARDS — COACHES
   ================================================================ */
.bg-white.rounded-xl {
  border-radius: 1.125rem !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.07) !important;
  border: 1px solid rgba(0,0,0,.05) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
  overflow: hidden;
}
.bg-white.rounded-xl:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--sh2) !important;
}

/* ================================================================
   CARDS — BUREAU
   ================================================================ */
.bg-gray-50.rounded-xl:not(.overflow-hidden) {
  background: white !important;
  border-radius: 1.125rem !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.07) !important;
  border: 1px solid rgba(0,0,0,.05) !important;
  border-top: 3px solid var(--o) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}
.bg-gray-50.rounded-xl:not(.overflow-hidden):hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--sh2) !important;
}

/* ================================================================
   APERCU EQUIPES — HOME
   ================================================================ */
article.group {
  border-radius: 1.125rem !important;
  overflow: hidden !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.08) !important;
  border: 1px solid rgba(0,0,0,.05) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
  background: white !important;
}
article.group:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--sh2) !important;
}
article.group h3 { font-weight: 700 !important; color: #1e293b !important; }

/* ================================================================
   FORMULAIRE DE CONTACT
   ================================================================ */
.bg-blue-50 {
  background: linear-gradient(135deg, #f0f7ff 0%, #fff3ec 100%) !important;
}
.bg-white.rounded-2xl.shadow-lg {
  border-radius: 1.25rem !important;
  box-shadow: 0 8px 48px rgba(0,0,0,.1) !important;
  border: 1px solid rgba(0,0,0,.06) !important;
}

/* ================================================================
   GALERIE
   ================================================================ */
figure.rounded-xl {
  border-radius: 1rem !important;
  overflow: hidden !important;
  box-shadow: 0 2px 14px rgba(0,0,0,.1) !important;
  transition: transform .3s ease, box-shadow .3s ease !important;
}
figure.rounded-xl:hover {
  transform: scale(1.03) !important;
  box-shadow: 0 10px 36px rgba(0,0,0,.2) !important;
}
figure.rounded-xl img {
  transition: transform .4s ease !important;
}
figure.rounded-xl:hover img {
  transform: scale(1.07) !important;
}
select#folder {
  border-color: var(--o) !important;
  border-radius: .625rem !important;
  padding: .4rem .8rem !important;
  font-weight: 500 !important;
  cursor: pointer;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer.bg-gray-900 {
  background: var(--n) !important;
  border-top: 3px solid var(--o) !important;
}
footer .text-orange-400 { color: var(--o2) !important; }
footer .border-gray-800 { border-color: rgba(255,255,255,.1) !important; }

/* ================================================================
   FOND SECTIONS ALTERNÉES
   ================================================================ */
section.bg-gray-50 { background: #f8fafc !important; }
main > section + section { border-top: 1px solid rgba(0,0,0,.04); }

/* ================================================================
   ANIMATIONS D'ENTREE
   ================================================================ */
@keyframes csvbv-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
main > section {
  animation: csvbv-fade-up .45s ease both;
}
main > section:nth-child(2) { animation-delay: .08s; }
main > section:nth-child(3) { animation-delay: .16s; }
main > section:nth-child(4) { animation-delay: .24s; }

/* ================================================================
   SELECTION / SCROLLBAR
   ================================================================ */
::selection { background: var(--o); color: white; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--o); border-radius: 3px; }

/* ================================================================
   QUIZ PROMO — Section page d'accueil
   ================================================================ */
.ce-quiz-promo {
  background: linear-gradient(135deg, var(--n) 0%, #1a2f45 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.ce-quiz-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e85d04' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.ce-quiz-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .ce-quiz-inner { grid-template-columns: 1fr; }
  .ce-quiz-visual { display: none; }
}
.ce-quiz-badge {
  display: inline-block;
  background: var(--o);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 99px;
  padding: .25rem .85rem;
  margin-bottom: 1rem;
}
.ce-quiz-promo .ce-title {
  color: white !important;
}
.ce-quiz-promo .ce-title::after {
  background: var(--o) !important;
}
.ce-quiz-text p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.ce-quiz-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.ce-quiz-feats li {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.ce-quiz-feats li i {
  color: var(--o);
  font-size: 1rem;
  flex-shrink: 0;
}
.ce-quiz-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--o), #ff7a2f);
  color: white !important;
  font-weight: 700;
  font-size: 1rem;
  padding: .875rem 2rem;
  border-radius: .75rem;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232,93,4,.45);
}
.ce-quiz-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,93,4,.6);
}
/* Carte décorative */
.ce-quiz-visual {
  display: flex;
  justify-content: center;
}
.ce-quiz-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1.25rem;
  padding: 1.75rem;
  backdrop-filter: blur(6px);
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.ce-quiz-card-q {
  font-weight: 600;
  font-size: .95rem;
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.ce-quiz-card-opts {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.ce-quiz-opt {
  padding: .6rem 1rem;
  border-radius: .6rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  transition: background .2s;
}
.ce-quiz-opt-correct {
  background: rgba(34,197,94,.2) !important;
  border-color: rgba(34,197,94,.5) !important;
  color: #86efac !important;
  font-weight: 600;
}

/* ================================================================
   CLASSEMENT QUIZ — Section page d'accueil
   ================================================================ */
.ce-lb-section { background: #f8fafc; border-top: 1px solid rgba(0,0,0,.05); }

.ce-lb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: .5rem;
}
@media (max-width: 900px) {
  .ce-lb-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ce-lb-grid { grid-template-columns: 1fr; }
}

.ce-lb-block {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

.ce-lb-head {
  background: linear-gradient(135deg, var(--n), #1a2f45);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ce-lb-mode {
  color: white;
  font-weight: 700;
  font-size: .95rem;
}
.ce-lb-sub {
  color: rgba(255,255,255,.55);
  font-size: .75rem;
}

.ce-lb-table {
  width: 100%;
  border-collapse: collapse;
}
.ce-lb-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background .15s;
}
.ce-lb-table tbody tr:last-child { border-bottom: none; }
.ce-lb-table tbody tr:hover { background: rgba(232,93,4,.04); }

.ce-lb-rank {
  width: 2.5rem;
  text-align: center;
  font-size: 1.25rem;
  padding: .75rem .5rem;
}
.ce-lb-pseudo {
  padding: .75rem .5rem;
  font-weight: 600;
  color: #1e293b;
  font-size: .9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 140px;
}
.ce-lb-score {
  padding: .75rem 1rem .75rem .5rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
}
.ce-lb-pct {
  font-weight: 700;
  font-size: .95rem;
  color: var(--o);
}
.ce-lb-pts {
  font-size: .7rem;
  color: #94a3b8;
}

.ce-lb-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #94a3b8;
  font-size: .875rem;
  font-style: italic;
}

/* ================================================================
   DIAPORAMA M15 — carte équipe
   ================================================================ */
.ce-team-slide {
  position: relative;
  width: 100% !important;
  aspect-ratio: 4/3;
  border-radius: .75rem;
  overflow: hidden;
  background: #0d1b2a;
}
.ce-ts-track {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image .4s ease;
}
.ce-ts-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
  padding: 0;
}
.ce-ts-btn:hover { background: rgba(232,93,4,.8); }
.ce-ts-prev { left: 6px; }
.ce-ts-next { right: 6px; }
.ce-ts-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.ce-ts-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.ce-ts-dot-active {
  background: var(--o, #e85d04);
  transform: scale(1.3);
}

.ce-lb-rank-top { font-size: 1.1rem; }
.ce-lb-table { max-height: 400px; display: block; overflow-y: auto; }
.ce-lb-table thead { display: none; }

.ce-lb-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem;
  background: rgba(232,93,4,.08);
  color: var(--o) !important;
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none !important;
  border-top: 1px solid rgba(232,93,4,.15);
  transition: background .2s;
}
.ce-lb-play:hover {
  background: rgba(232,93,4,.15);
}
::-webkit-scrollbar-thumb:hover { background: #c94e00; }
