/* ============================================
   FIFB - Fédération Ivoirienne de Floorball
   Styles principaux - Design moderne
   ============================================ */

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

:root {
  /* Brand */
  --primary:       #F26522;
  --primary-dark:  #D4521A;
  --primary-light: #FF8040;
  --primary-bg:    #FFF4EE;

  /* Light theme surfaces */
  --bg:            #F8F9FA;
  --bg-card:       #FFFFFF;
  --bg-card2:      #F1F3F5;
  --bg-dark:       #1a1a2e;

  /* Text */
  --text:          #111827;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;

  /* Borders */
  --border:        #E5E7EB;
  --border-dark:   #D1D5DB;

  /* Legacy aliases (keep for backward compat) */
  --orange:        #F26522;
  --orange-dark:   #D4521A;
  --dark:          #1a1a2e;
  --dark-2:        #252B35;
  --dark-3:        #333B48;
  --white:         #FFFFFF;
  --gray:          #6B7280;
  --gray-light:    #9CA3AF;
  --gray-lighter:  #F3F4F6;
  --border-light:  #E5E7EB;

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-accent:  'Rajdhani', sans-serif;

  /* Shadows */
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.14);
  --shadow-orange: 0 6px 24px rgba(242,101,34,0.25);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Transitions */
  --transition:      all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.6s cubic-bezier(0.4,0,0.2,1);
  --orange-light: #FF8040;
  --green:        #2E8B4A;
  --green-dark:   #1E6B3A;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-accent); font-weight: 700; line-height: 1.2; }

.display-font { font-family: var(--font-display); letter-spacing: 2px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  padding: 6px 16px;
  border: 1px solid rgba(242,101,34,0.3);
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.section-title span { color: var(--orange); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  box-shadow: var(--shadow-orange);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1;
}

.nav-logo-text .sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--font-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: var(--primary-bg);
}

.nav-link.active { color: var(--orange); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-dropdown a:hover { color: var(--orange); background: rgba(242,101,34,0.1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-btn {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.nav-btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.nav-btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.nav-btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: var(--shadow-orange);
}
.nav-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(242,101,34,0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO / SLIDER
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(242,101,34,0.1) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 60px;
  padding-top: 80px;
}

.slide-content-inner {
  max-width: 700px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 16px;
  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.4);
  border-radius: 100px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}

.slide.active .slide-tag { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease 0.4s;
}

.slide.active .slide-title { opacity: 1; transform: translateY(0); }

.slide-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin: 20px 0 36px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.6s;
}

.slide.active .slide-subtitle { opacity: 1; transform: translateY(0); }

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.8s;
}

.slide.active .slide-actions { opacity: 1; transform: translateY(0); }

/* Slider Controls */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  width: 32px;
  background: var(--orange);
}

.slider-arrows {
  position: absolute;
  right: 60px;
  bottom: 30px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-arrow {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  font-size: 18px;
}

.slider-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-accent);
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%, 100% { top: 6px; opacity: 1; }
  80% { top: 18px; opacity: 0; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(242,101,34,0.45);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
}

.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 18px 40px; font-size: 15px; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(242,101,34,0.3);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(242,101,34,0.15);
}

/* News Card */
.news-card { text-decoration: none; color: inherit; display: block; }

.news-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-card:hover .news-card-image img { transform: scale(1.08); }

.news-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--orange);
  color: white;
}

.news-card-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 13px;
}

.news-card-body { padding: 20px; }

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.news-card-meta .dot {
  width: 3px; height: 3px;
  background: var(--gray);
  border-radius: 50%;
}

.news-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:hover .news-card-title { color: var(--orange); }

.news-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.news-card-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
}

.news-card-readmore {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   FEATURED NEWS (Big)
   ============================================ */
.news-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  height: 500px;
}

.news-featured-bg {
  position: absolute;
  inset: 0;
}

.news-featured-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.news-featured:hover .news-featured-bg img { transform: scale(1.05); }

.news-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.news-featured-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
}

.news-featured-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--orange);
  color: white;
  margin-bottom: 12px;
}

.news-featured-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.news-featured:hover .news-featured-title { color: var(--orange); }

.news-featured-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-accent);
  font-weight: 600;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::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='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
}

/* ============================================
   MATCHES SECTION
   ============================================ */
.match-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.match-card:hover {
  border-color: rgba(242,101,34,0.3);
  background: var(--bg-card);
}

.match-team {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.match-team.away { flex-direction: row-reverse; text-align: right; }

.match-team-logo {
  width: 48px; height: 48px;
  background: var(--bg-card);
  border-radius: 50%;
  border: 2px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--orange);
}

.match-team-logo img { width: 100%; height: 100%; object-fit: contain; }

.match-team-name {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.match-team-city {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

.match-score {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.match-score-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: var(--primary);
  min-width: 40px;
  text-align: center;
}

.match-score-sep {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray);
}

.match-status {
  text-align: center;
}

.match-status-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.badge-scheduled { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge-live { background: rgba(239,68,68,0.2); color: #f87171; animation: livePulse 2s ease-in-out infinite; }
.badge-finished { background: rgba(107,114,128,0.2); color: var(--text-muted); }

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.match-date {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
}

.match-competition {
  font-size: 10px;
  color: var(--gray);
  font-family: var(--font-accent);
  margin-top: 4px;
}

/* ============================================
   STANDINGS TABLE
   ============================================ */
.standings-table {
  width: 100%;
  border-collapse: collapse;
}

.standings-table thead th {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.standings-table thead th:first-child,
.standings-table thead th:nth-child(2) { text-align: left; }

.standings-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.standings-table tbody tr:hover { background: var(--bg); }

.standings-table tbody tr.highlight-gold { background: rgba(255,193,7,0.05); }
.standings-table tbody tr.highlight-promotion { background: rgba(59,130,246,0.05); }
.standings-table tbody tr.highlight-relegation { background: rgba(239,68,68,0.05); }

.standings-table tbody td {
  padding: 12px 16px;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
}

.standings-table tbody td:first-child { text-align: left; }
.standings-table tbody td:nth-child(2) { text-align: left; }

.standings-rank {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gray);
  width: 32px;
}

.standings-rank.gold { color: #fbbf24; }
.standings-rank.silver { color: #94a3b8; }
.standings-rank.bronze { color: #d97706; }

.standings-club-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.standings-club-logo {
  width: 32px; height: 32px;
  background: var(--bg-card2);
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: var(--font-display);
  color: var(--orange);
  flex-shrink: 0;
}

.standings-club-name {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.standings-club-city {
  font-size: 11px;
  color: var(--gray);
}

.standings-points {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--orange) !important;
}

.form-badge {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  font-family: var(--font-accent);
}

.form-w { background: rgba(16,185,74,0.2); color: #34d399; }
.form-d { background: rgba(251,191,36,0.2); color: #fbbf24; }
.form-l { background: rgba(239,68,68,0.2); color: #f87171; }

/* ============================================
   CLUB CARDS
   ============================================ */
.club-card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.club-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242,101,34,0.4);
  box-shadow: var(--shadow-md), var(--shadow-orange);
}

.club-card-cover {
  height: 120px;
  background: linear-gradient(135deg, var(--bg-card2), var(--border));
  position: relative;
  overflow: hidden;
}

.club-card-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.club-card-cover-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(242,101,34,0.05) 10px,
    rgba(242,101,34,0.05) 20px
  );
}

.club-card-body {
  padding: 20px;
  text-align: center;
}

.club-card-logo {
  width: 72px; height: 72px;
  background: var(--bg-card2);
  border-radius: 50%;
  border: 3px solid var(--bg-card);
  margin: -40px auto 12px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.club-card-logo img { width: 100%; height: 100%; object-fit: contain; }

.club-card-name {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.club-card-city {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
  font-family: var(--font-accent);
}

.club-card-division {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
}

.div-d1 { background: rgba(242,101,34,0.15); color: var(--orange); border: 1px solid rgba(242,101,34,0.3); }
.div-d2 { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.div-d3 { background: rgba(107,114,128,0.15); color: var(--text-muted); border: 1px solid rgba(107,114,128,0.3); }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 90px 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

/* ============================================
   PARALLAX ABOUT
   ============================================ */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -50%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.2);
}

.parallax-content {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.about-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image-frame:hover img { transform: scale(1.05); }

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-orange);
}

.about-image-badge .number {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 2px;
  color: white;
  line-height: 1;
}

.about-image-badge .label {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-highlight-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.about-highlight-item:hover {
  border-color: rgba(242,101,34,0.3);
  transform: translateY(-2px);
}

.about-highlight-icon {
  width: 44px; height: 44px;
  background: rgba(242,101,34,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.about-highlight-title {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.about-highlight-text {
  font-size: 12px;
  color: var(--gray);
}

/* ============================================
   SCORERS / TOP PLAYERS
   ============================================ */
.scorer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.scorer-item:last-child { border-bottom: none; }
.scorer-item:hover { background: var(--bg); }

.scorer-rank {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gray);
  width: 28px;
  flex-shrink: 0;
}

.scorer-rank.top1 { color: #fbbf24; }
.scorer-rank.top2 { color: #94a3b8; }
.scorer-rank.top3 { color: #d97706; }

.scorer-photo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 2px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.scorer-info { flex: 1; }

.scorer-name {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.scorer-club {
  font-size: 11px;
  color: var(--gray);
}

.scorer-stats {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.scorer-stat {
  text-align: center;
}

.scorer-stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--orange);
  line-height: 1;
}

.scorer-stat-label {
  font-size: 9px;
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--orange-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'FIFB';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20rem;
  letter-spacing: -10px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 3px;
  color: white;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #050507;
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 500;
}

.footer-links a::before {
  content: '→';
  color: var(--orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
  font-size: 11px;
}

.footer-links a:hover { color: var(--orange); }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-newsletter input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-body);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--bg-card2);
}

.footer-newsletter input::placeholder { color: var(--gray); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: var(--gray);
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ============================================
   TABS
   ============================================ */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--bg-card);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(242,101,34,0.15), rgba(242,101,34,0.08));
  color: var(--orange);
  border: 1px solid rgba(242,101,34,0.2);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding: 140px 0 60px;
  background: var(--bg-card2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.page-header-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(242,101,34,0.15) 1px, transparent 0);
  background-size: 32px 32px;
}

.page-header-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--gray); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--orange); }

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 3px;
  color: var(--text);
  line-height: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-actions .nav-btn-ghost { display: none; }
  .slide-content { padding: 0 32px; padding-top: 80px; }
  .slider-nav { left: 32px; }
  .slider-arrows { right: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { order: -1; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-title { font-size: 2.5rem; }
  .slide-content { padding: 0 24px; padding-top: 80px; }
  .slider-nav, .slider-arrows { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-highlights { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================================
   MISC UTILITIES
   ============================================ */
.text-orange { color: var(--orange); }
.text-gray { color: var(--gray); }
.text-center { text-align: center; }
.text-right { text-align: right; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.badge-orange { background: rgba(242,101,34,0.15); color: var(--orange); border: 1px solid rgba(242,101,34,0.3); }
.badge-green { background: rgba(46,139,74,0.15); color: #4ade80; border: 1px solid rgba(46,139,74,0.3); }
.badge-blue { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.badge-gray { background: rgba(107,114,128,0.15); color: var(--text-muted); border: 1px solid rgba(107,114,128,0.3); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-card);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--bg-card);
  border-radius: 50%;
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: var(--transition);
}

.mobile-menu-close:hover { background: var(--orange); border-color: var(--orange); }

.mobile-menu-links { list-style: none; }

.mobile-menu-links li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-menu-links a:hover { color: var(--primary); padding-left: 12px; }

/* ============================================================
   PAGES SUPPLÉMENTAIRES — Actualités, Clubs, Calendrier, etc.
   ============================================================ */

/* Page Hero */
.page-hero { position:relative; padding:80px 0 60px; overflow:hidden; }
.page-hero-md { padding:120px 0 80px; }
.page-hero-sm { padding:80px 0 56px; }
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(15,15,35,.85),rgba(242,101,34,.4)); }
.page-hero-content { position:relative; z-index:2; }
.page-hero-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(40px,7vw,80px); color:#fff; line-height:1; margin:0 0 12px; }
.page-hero-sub { color:rgba(255,255,255,.75); font-size:1.1rem; margin:0; }
.hero-badge { display:inline-block; background:var(--primary); color:#fff; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:2px; padding:5px 14px; border-radius:20px; margin-bottom:12px; }
.article-hero-meta { display:flex; gap:20px; color:rgba(255,255,255,.7); font-size:14px; margin-top:10px; }

/* Breadcrumb */
.breadcrumb { font-size:13px; color:var(--text-muted); margin-bottom:24px; }
.breadcrumb a { color:var(--primary); text-decoration:none; }
.breadcrumb.light a { color:rgba(255,255,255,.8); }
.breadcrumb.light { color:rgba(255,255,255,.6); margin-bottom:8px; }

/* News List Page */
.section-news-list { padding:60px 0; }
.news-layout { display:grid; grid-template-columns:1fr 300px; gap:40px; align-items:start; }
@media(max-width:900px) { .news-layout { grid-template-columns:1fr; } .news-sidebar { display:none; } }
.news-filters { margin-bottom:32px; }
.search-form { display:flex; gap:8px; margin-bottom:16px; }
.search-input { flex:1; padding:10px 16px; border:1px solid var(--border); border-radius:6px; background:var(--bg-card); color:var(--text); font-size:14px; }
.search-btn { padding:10px 16px; background:var(--primary); color:#fff; border:none; border-radius:6px; cursor:pointer; }
.cat-filter-tabs { display:flex; flex-wrap:wrap; gap:8px; }
.cat-tab { padding:6px 14px; border-radius:20px; border:1px solid var(--border); color:var(--text); text-decoration:none; font-size:13px; transition:.2s; }
.cat-tab:hover,.cat-tab.active { background:var(--primary); border-color:var(--primary); color:#fff; }
.news-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:24px; margin-bottom:40px; }
.news-card { background:var(--bg-card); border-radius:12px; overflow:hidden; border:1px solid var(--border); transition:.3s; }
.news-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.15); }
.news-card-img-link { display:block; position:relative; aspect-ratio:16/9; overflow:hidden; background:var(--bg-card2); }
.news-card-img-link img { width:100%; height:100%; object-fit:cover; transition:.4s; }
.news-card:hover .news-card-img-link img { transform:scale(1.05); }
.news-card-no-img { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:40px; }
.news-badge { position:absolute; top:10px; left:10px; padding:4px 10px; border-radius:4px; font-size:11px; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:1px; }
.news-card-body { padding:20px; }
.news-meta { display:flex; justify-content:space-between; margin-bottom:10px; font-size:12px; color:var(--text-muted); }
.news-card-title { font-size:16px; font-weight:700; margin:0 0 10px; line-height:1.4; }
.news-card-title a { color:var(--text); text-decoration:none; }
.news-card-title a:hover { color:var(--primary); }
.news-card-excerpt { font-size:13px; color:var(--text-muted); margin:0 0 12px; line-height:1.6; }
.news-read-more { color:var(--primary); font-size:13px; font-weight:600; text-decoration:none; }
.pagination-bar { display:flex; flex-wrap:wrap; gap:6px; justify-content:center; margin-top:40px; }
.page-btn { padding:8px 14px; border:1px solid var(--border); border-radius:6px; color:var(--text); text-decoration:none; font-size:14px; transition:.2s; }
.page-btn.active,.page-btn:hover { background:var(--primary); border-color:var(--primary); color:#fff; }
.empty-results { text-align:center; padding:80px 20px; color:var(--text-muted); }
.empty-icon { font-size:60px; margin-bottom:16px; }
.empty-results h3 { font-size:22px; margin-bottom:8px; }
.btn-primary-link { display:inline-block; margin-top:16px; color:var(--primary); font-weight:600; text-decoration:none; }

/* News Sidebar */
.sidebar-widget { background:var(--bg-card); border-radius:12px; padding:24px; border:1px solid var(--border); margin-bottom:24px; }
.widget-title { font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--primary); margin:0 0 16px; padding-bottom:10px; border-bottom:1px solid var(--border); }
.category-list { list-style:none; padding:0; margin:0; }
.category-list li { padding:4px 0; }
.category-list a { display:flex; align-items:center; gap:8px; text-decoration:none; color:var(--text); font-size:14px; padding:6px 8px; border-radius:6px; transition:.2s; }
.category-list a:hover,.category-list a.active { background:rgba(242,101,34,.1); color:var(--primary); }
.cat-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.cat-count { margin-left:auto; font-size:12px; color:var(--text-muted); }
.recent-news { display:flex; flex-direction:column; gap:12px; }
.recent-news-item { display:flex; gap:10px; text-decoration:none; color:var(--text); align-items:center; }
.recent-news-item img { width:56px; height:42px; object-fit:cover; border-radius:6px; flex-shrink:0; }
.recent-news-no-img { width:56px; height:42px; background:var(--bg-card2); border-radius:6px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.recent-news-info { display:flex; flex-direction:column; gap:2px; }
.recent-news-title { font-size:13px; line-height:1.4; font-weight:500; }
.recent-news-item:hover .recent-news-title { color:var(--primary); }

/* Article Page */
.section-article { padding:60px 0 80px; }
.article-layout { display:grid; grid-template-columns:1fr 300px; gap:40px; align-items:start; }
@media(max-width:900px) { .article-layout { grid-template-columns:1fr; } }
.article-header { margin-bottom:30px; }
.article-excerpt { font-size:18px; font-weight:500; line-height:1.7; color:var(--text-muted); margin-bottom:16px; border-left:3px solid var(--primary); padding-left:16px; }
.article-meta-bar { display:flex; flex-wrap:wrap; align-items:center; gap:16px; font-size:13px; color:var(--text-muted); }
.article-date { display:flex; align-items:center; gap:6px; }
.article-tags { display:flex; flex-wrap:wrap; gap:6px; }
.tag-link { display:inline-block; padding:3px 10px; background:rgba(242,101,34,.1); color:var(--primary); border-radius:12px; font-size:12px; text-decoration:none; }
.article-main-image { border-radius:12px; overflow:hidden; margin-bottom:32px; }
.article-main-image img { width:100%; display:block; }
.article-content { line-height:1.8; font-size:16px; }
.article-content h2,.article-content h3 { color:var(--text); margin:32px 0 12px; }
.article-content p { margin:0 0 20px; color:var(--text-muted); }
.article-content img { max-width:100%; border-radius:8px; margin:16px 0; }
.article-share { display:flex; align-items:center; gap:12px; margin:40px 0; padding:20px; background:var(--bg-card); border-radius:10px; border:1px solid var(--border); }
.share-btn { padding:7px 16px; border-radius:6px; font-size:13px; font-weight:600; text-decoration:none; }
.share-fb { background:#1877f2; color:#fff; }
.share-tw { background:#1da1f2; color:#fff; }
.share-wa { background:#25d366; color:#fff; }
.article-related { margin-top:48px; }
.article-related h3 { font-size:18px; font-weight:700; margin-bottom:20px; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
@media(max-width:640px) { .related-grid { grid-template-columns:1fr; } }
.related-card { display:flex; flex-direction:column; gap:8px; text-decoration:none; color:var(--text); }
.related-card img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:8px; }
.related-card-no-img { aspect-ratio:16/9; background:var(--bg-card2); border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:28px; }
.related-card span { font-size:14px; font-weight:600; line-height:1.4; }
.related-card:hover span { color:var(--primary); }
.related-card small { color:var(--text-muted); font-size:12px; }.sidebar-match-card { text-align:center; }
.sm-date { font-size:12px; color:var(--text-muted); margin-bottom:12px; }
.sm-teams { display:flex; align-items:center; justify-content:center; gap:12px; margin-bottom:16px; }
.sm-team { display:flex; flex-direction:column; align-items:center; gap:6px; font-size:13px; font-weight:600; }
.sm-team img { width:36px; height:36px; object-fit:contain; }
.sm-vs { font-weight:900; color:var(--primary); font-size:16px; }
.btn-sm-primary { display:inline-block; padding:8px 18px; background:var(--primary); color:#fff; border-radius:6px; text-decoration:none; font-size:13px; font-weight:600; }

/* Clubs Page */
.section-clubs-page { padding:60px 0; }
.division-tabs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:40px; }
.div-tab { padding:8px 20px; border-radius:20px; border:1px solid var(--border); color:var(--text); text-decoration:none; font-size:14px; font-weight:500; transition:.2s; }
.div-tab.active,.div-tab:hover { background:var(--primary); border-color:var(--primary); color:#fff; }
.division-section { margin-bottom:60px; }
.division-title { display:flex; align-items:center; gap:12px; font-size:20px; font-weight:800; margin-bottom:24px; padding-bottom:12px; border-bottom:2px solid var(--border); }
.div-badge { width:36px; height:36px; background:var(--primary); color:#fff; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:900; flex-shrink:0; }
.div-count { margin-left:auto; font-size:14px; font-weight:400; color:var(--text-muted); }
.clubs-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:24px; }
.club-card-full { display:block; text-decoration:none; color:var(--text); background:var(--bg-card); border-radius:12px; overflow:hidden; border:1px solid var(--border); transition:.3s; }
.club-card-full:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.15); }
.club-card-cover { position:relative; height:100px; background:linear-gradient(135deg,var(--primary),var(--primary-dark)); overflow:hidden; }
.club-card-cover img { width:100%; height:100%; object-fit:cover; }
.club-card-overlay { position:absolute; inset:0; background:rgba(0,0,0,.2); }
.club-card-logo-wrap { display:flex; justify-content:center; margin:-30px 0 0; position:relative; z-index:2; }
.club-card-logo { width:60px; height:60px; object-fit:contain; background:#fff; border-radius:50%; border:3px solid var(--bg-card); padding:4px; }
.club-card-logo-placeholder { width:60px; height:60px; background:var(--bg-card); border-radius:50%; border:3px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:24px; }
.club-card-info { padding:12px 16px 20px; text-align:center; }
.club-card-name { font-size:15px; font-weight:700; margin:0 0 4px; }
.club-card-city { font-size:12px; color:var(--text-muted); margin:0; }
.club-card-year { font-size:12px; color:var(--text-muted); margin:0; }

/* Club Detail */
.club-hero { position:relative; padding:0; }
.club-hero-cover { position:relative; height:300px; overflow:hidden; }
.club-hero-cover img { width:100%; height:100%; object-fit:cover; }
.club-hero-default-bg { width:100%; height:100%; background:linear-gradient(135deg,var(--primary),#1a1a2e); }
.club-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,.2)); }
.club-hero-content { position:relative; z-index:2; display:flex; align-items:flex-end; gap:24px; padding:0 0 32px; margin-top:-80px; }
.club-hero-logo { width:100px; height:100px; background:#fff; border-radius:16px; border:4px solid rgba(255,255,255,.3); display:flex; align-items:center; justify-content:center; flex-shrink:0; overflow:hidden; padding:8px; }
.club-hero-logo img { width:100%; height:100%; object-fit:contain; }
.club-logo-placeholder { font-size:40px; }
.club-hero-name { font-family:'Bebas Neue',sans-serif; font-size:clamp(32px,5vw,60px); color:#fff; margin:0 0 8px; line-height:1; }
.club-hero-meta { display:flex; flex-wrap:wrap; gap:16px; color:rgba(255,255,255,.75); font-size:14px; }
.club-div-badge { display:inline-block; background:var(--primary); color:#fff; padding:4px 12px; border-radius:4px; font-weight:700; font-size:12px; }
.section-club-detail { padding:40px 0 80px; }
.club-detail-layout { display:grid; grid-template-columns:1fr 280px; gap:40px; align-items:start; }
@media(max-width:900px) { .club-detail-layout { grid-template-columns:1fr; } .club-hero-content { flex-direction:column; align-items:flex-start; padding:0 0 24px; } }
.club-section-card { background:var(--bg-card); border-radius:12px; padding:28px; border:1px solid var(--border); margin-bottom:24px; }
.club-section-title { font-size:18px; font-weight:800; margin:0 0 20px; padding-bottom:12px; border-bottom:2px solid var(--primary); display:inline-block; }
.club-description { line-height:1.7; color:var(--text-muted); }
.club-stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
@media(max-width:640px) { .club-stats-grid { grid-template-columns:repeat(2,1fr); } }
.cs-item { text-align:center; padding:16px; background:var(--bg); border-radius:8px; }
.cs-highlight { background:rgba(242,101,34,.1); }
.cs-val { font-size:28px; font-weight:900; color:var(--primary); }
.cs-lbl { font-size:11px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-top:4px; }
.club-matches-list { display:flex; flex-direction:column; gap:8px; }
.club-match-row { display:grid; grid-template-columns:60px 1fr; gap:12px; align-items:center; padding:12px; background:var(--bg); border-radius:8px; }
.cmr-date { text-align:center; font-size:11px; color:var(--text-muted); }
.cmr-day { display:block; font-size:18px; font-weight:800; }
.cmr-teams { display:flex; align-items:center; justify-content:space-between; gap:8px; }
.cmr-home,.cmr-away { font-size:13px; font-weight:600; }
.cmr-current { color:var(--primary); }
.cmr-score { text-align:center; font-weight:900; }
.cmr-vs { color:var(--text-muted); font-size:12px; }
.cmr-live { color:#e53e3e; font-size:10px; font-weight:700; background:rgba(229,62,62,.1); padding:3px 8px; border-radius:4px; }
.players-group { margin-bottom:32px; }
.players-group-title { font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--primary); margin-bottom:16px; padding-bottom:8px; border-bottom:1px solid var(--border); }
.players-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(90px,1fr)); gap:16px; }
.player-card-mini { text-align:center; }
.pcm-photo { position:relative; width:70px; height:70px; margin:0 auto 8px; }
.pcm-photo img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.pcm-no-photo { width:100%; height:100%; background:var(--bg); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:28px; }
.pcm-number { position:absolute; bottom:0; right:0; background:var(--primary); color:#fff; font-size:10px; font-weight:700; width:20px; height:20px; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.pcm-name { font-size:12px; font-weight:600; line-height:1.3; }
.club-info-card { background:var(--bg-card); border-radius:12px; padding:20px; border:1px solid var(--border); margin-bottom:16px; }
.club-info-title { font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--primary); margin:0 0 16px; }
.club-info-list { display:flex; flex-direction:column; gap:10px; }
.club-info-list dt { font-size:11px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); }
.club-info-list dd { font-size:14px; font-weight:500; margin:2px 0 0; }
.club-info-list dd a { color:var(--primary); text-decoration:none; }
.club-socials { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.social-btn { padding:6px 12px; border:1px solid var(--border); border-radius:6px; font-size:12px; font-weight:600; text-decoration:none; color:var(--text); transition:.2s; }
.social-btn:hover { background:var(--primary); border-color:var(--primary); color:#fff; }
.btn-outline-block { display:block; text-align:center; padding:12px; border:1px solid var(--border); border-radius:10px; text-decoration:none; color:var(--text); font-size:14px; transition:.2s; }
.btn-outline-block:hover { border-color:var(--primary); color:var(--primary); }

/* Calendrier */
.section-calendrier { padding:60px 0; }
.cal-filters { display:flex; flex-wrap:wrap; gap:16px; align-items:center; margin-bottom:40px; }
.view-tabs { display:flex; background:var(--bg-card); border-radius:8px; border:1px solid var(--border); overflow:hidden; }
.view-tab { padding:9px 18px; text-decoration:none; color:var(--text); font-size:14px; font-weight:500; border-right:1px solid var(--border); transition:.2s; }
.view-tab:last-child { border-right:none; }
.view-tab.active { background:var(--primary); color:#fff; }
.month-group { margin-bottom:48px; }
.month-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; padding-bottom:12px; border-bottom:2px solid var(--primary); }
.month-title { font-family:'Bebas Neue',sans-serif; font-size:28px; color:var(--text); margin:0; }
.month-count { font-size:13px; color:var(--text-muted); }
.matches-month-list { display:flex; flex-direction:column; gap:8px; }
.match-row-full { display:grid; grid-template-columns:80px 130px 1fr 160px; gap:16px; align-items:center; padding:16px 20px; background:var(--bg-card); border-radius:10px; border:1px solid var(--border); transition:.2s; }
@media(max-width:900px) { .match-row-full { grid-template-columns:60px 1fr; gap:12px; } .mrf-comp,.mrf-status { display:none; } }
.match-live { border-color:var(--primary); background:rgba(242,101,34,.05); }
.mrf-date { text-align:center; }
.mrf-day { display:block; font-size:26px; font-weight:900; line-height:1; }
.mrf-weekday { display:block; font-size:12px; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; }
.mrf-time { display:block; font-size:12px; color:var(--primary); font-weight:600; margin-top:2px; }
.mrf-comp { font-size:12px; color:var(--text-muted); }
.mrf-match { display:flex; align-items:center; gap:12px; justify-content:center; }
.mrf-team { display:flex; align-items:center; gap:8px; font-size:15px; font-weight:600; }
.mrf-home { justify-content:flex-end; flex:1; }
.mrf-away { justify-content:flex-start; flex:1; }
.mrf-logo { width:26px; height:26px; object-fit:contain; }
.mrf-score-box { display:flex; align-items:center; gap:4px; min-width:80px; justify-content:center; }
.mrf-score { font-size:22px; font-weight:900; }
.mrf-dash { color:var(--text-muted); }
.mrf-vs { font-size:14px; font-weight:700; color:var(--text-muted); }
.mrf-live-badge { background:var(--primary); color:#fff; font-size:11px; font-weight:700; padding:4px 10px; border-radius:4px; animation:pulse 2s infinite; }
.mrf-status { text-align:right; }
.match-status-badge { display:inline-block; padding:4px 10px; border-radius:4px; font-size:11px; font-weight:700; text-transform:uppercase; }
.status-scheduled { background:rgba(99,179,237,.15); color:#63b3ed; }
.status-live { background:rgba(229,62,62,.15); color:#e53e3e; }
.status-finished { background:rgba(72,187,120,.15); color:#48bb78; }
.status-postponed { background:rgba(242,101,34,.15); color:var(--primary); }
.mrf-venue { display:block; font-size:11px; color:var(--text-muted); margin-top:4px; }

/* Classement */
.section-classement { padding:60px 0; }
.classement-selectors { margin-bottom:32px; }
.standings-table-wrap { background:var(--bg-card); border-radius:12px; border:1px solid var(--border); overflow:hidden; }
.standings-table { width:100%; border-collapse:collapse; }
.standings-table th { padding:12px 16px; font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); border-bottom:1px solid var(--border); text-align:center; font-weight:600; }
.th-rank { width:60px; }
.th-club { text-align:left; }
.th-pts { color:var(--text); }
.standings-table td { padding:12px 16px; text-align:center; border-bottom:1px solid rgba(255,255,255,.05); font-size:14px; }
.standings-table tr:last-child td { border-bottom:none; }
.rank-1 td { background:rgba(255,215,0,.06); }
.rank-2 td { background:rgba(192,192,192,.05); }
.rank-3 td { background:rgba(205,127,50,.05); }
.relegation td { background:rgba(229,62,62,.05); }
.relegation td:first-child { border-left:3px solid rgba(229,62,62,.5); }
.td-rank { text-align:center; }
.medal { font-size:20px; }
.rank-num { font-weight:700; color:var(--text-muted); }
.td-club { text-align:left; }
.club-name-link { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); font-weight:600; }
.club-logo-sm { width:28px; height:28px; object-fit:contain; }
.club-logo-sm-placeholder { width:28px; height:28px; }
.club-name-link:hover { color:var(--primary); }
.td-pts strong { font-size:16px; font-weight:900; color:var(--primary); }
.positive { color:#48bb78; font-weight:700; }
.negative { color:#e53e3e; font-weight:700; }
.standings-legend { display:flex; gap:24px; padding:12px 16px; border-top:1px solid var(--border); font-size:12px; color:var(--text-muted); }
.legend-item { display:flex; align-items:center; gap:6px; }
.legend-dot { width:12px; height:12px; border-radius:50%; }
.legend-dot.gold { background:#ffd700; }
.legend-dot.relegation-dot { background:rgba(229,62,62,.5); }.section-title-centered { font-family:'Bebas Neue',sans-serif; font-size:36px; text-align:center; margin:0 0 28px; }
.scorers-table-wrap { background:var(--bg-card); border-radius:12px; border:1px solid var(--border); overflow:hidden; }
.scorers-table { width:100%; border-collapse:collapse; }
.scorers-table th { padding:12px 16px; font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); border-bottom:1px solid var(--border); font-weight:600; }
.scorers-table td { padding:12px 16px; border-bottom:1px solid rgba(255,255,255,.05); font-size:14px; }
.scorers-table tr:last-child td { border-bottom:none; }
.mt-5 { margin-top:48px; }

/* Contact */
.section-contact { padding:60px 0 80px; }
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
@media(max-width:900px) { .contact-layout { grid-template-columns:1fr; gap:40px; } }
.contact-info-title { font-family:'Bebas Neue',sans-serif; font-size:32px; margin:0 0 16px; }
.contact-info-text { color:var(--text-muted); line-height:1.7; margin-bottom:32px; }
.contact-cards { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.contact-card { display:flex; align-items:center; gap:16px; padding:16px; background:var(--bg-card); border-radius:10px; border:1px solid var(--border); }
.contact-card-icon { font-size:24px; flex-shrink:0; }
.contact-card-label { font-size:11px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); }
.contact-card-value { font-size:15px; font-weight:600; color:var(--text); text-decoration:none; display:block; margin-top:2px; }
.contact-card-value:hover { color:var(--primary); }
.contact-socials-title { font-weight:600; margin-bottom:12px; }
.social-links { display:flex; flex-wrap:wrap; gap:10px; }
.social-link-btn { padding:8px 16px; border-radius:8px; font-size:13px; font-weight:600; text-decoration:none; color:#fff; transition:.2s; }
.social-link-btn.facebook { background:#1877f2; }
.social-link-btn.instagram { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-link-btn.twitter { background:#1da1f2; }
.social-link-btn.youtube { background:#ff0000; }
.contact-form-card { background:var(--bg-card); border-radius:16px; padding:36px; border:1px solid var(--border); }
.contact-form-title { font-size:22px; font-weight:800; margin:0 0 28px; }
.btn-block { width:100%; }
.btn-lg { padding:14px 28px; font-size:16px; }
.flash { padding:12px 16px; border-radius:8px; margin-bottom:20px; font-size:14px; }
.flash-success { background:rgba(72,187,120,.15); color:#48bb78; border:1px solid rgba(72,187,120,.3); }
.flash-error { background:rgba(229,62,62,.15); color:#e53e3e; border:1px solid rgba(229,62,62,.3); }

/* À propos */
.about-stats-bar { background:var(--primary); padding:40px 0; }
.about-stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
@media(max-width:640px) { .about-stats-row { grid-template-columns:repeat(2,1fr); } }.as-number { font-family:'Bebas Neue',sans-serif; font-size:48px; color:#fff; line-height:1; }
.as-label { font-size:12px; color:rgba(255,255,255,.75); text-transform:uppercase; letter-spacing:1px; margin-top:4px; }
.section-about-main { padding:80px 0; }
.about-layout { display:grid; grid-template-columns:1fr 420px; gap:60px; align-items:center; }
@media(max-width:900px) { .about-layout { grid-template-columns:1fr; } }
.section-title-left { font-family:'Bebas Neue',sans-serif; font-size:clamp(32px,4vw,48px); margin:0 0 24px; }
.about-text { color:var(--text-muted); line-height:1.8; margin-bottom:32px; }
.about-text p { margin:0 0 16px; }
.about-highlights { display:flex; flex-direction:column; gap:20px; }
.ah-item { display:flex; gap:16px; align-items:flex-start; }
.ah-icon { font-size:28px; flex-shrink:0; }
.ah-item strong { display:block; font-weight:700; margin-bottom:4px; }
.ah-item p { margin:0; font-size:14px; color:var(--text-muted); }
.about-main-image { width:100%; border-radius:16px; display:block; }
.about-image-col { position:relative; }
.about-iff-badge { position:absolute; bottom:-20px; left:-20px; background:var(--primary); border-radius:12px; padding:14px 18px; }
.iff-badge-content { display:flex; align-items:center; gap:12px; }
.iff-icon { font-size:24px; }
.iff-badge-content strong { display:block; color:#fff; font-size:14px; }
.iff-badge-content small { display:block; color:rgba(255,255,255,.7); font-size:11px; }
.section-mission { padding:80px 0; background:var(--bg-card); }
.mission-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
@media(max-width:700px) { .mission-cards { grid-template-columns:1fr; } }
.mission-card { text-align:center; padding:32px 24px; }
.mc-icon { font-size:48px; margin-bottom:16px; }
.mission-card h3 { font-size:20px; font-weight:800; margin:0 0 12px; }
.mission-card p { color:var(--text-muted); line-height:1.7; margin:0; }
.section-clubs-map { padding:80px 0; }
.about-clubs-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(100px,1fr)); gap:20px; }
.about-club-item { display:flex; flex-direction:column; align-items:center; gap:8px; text-decoration:none; color:var(--text); padding:16px; border-radius:10px; border:1px solid var(--border); background:var(--bg-card); transition:.2s; }
.about-club-item:hover { border-color:var(--primary); transform:translateY(-2px); }
.about-club-item img { width:48px; height:48px; object-fit:contain; }
.about-club-placeholder { width:48px; height:48px; display:flex; align-items:center; justify-content:center; font-size:28px; }
.about-club-name { font-size:12px; font-weight:700; text-align:center; }
.about-club-div { font-size:10px; color:var(--text-muted); }
.section-about-cta { padding:80px 0; }
.about-cta-box { background:linear-gradient(135deg,var(--primary),#c0521b); border-radius:20px; padding:60px; text-align:center; }
.about-cta-box h2 { font-family:'Bebas Neue',sans-serif; font-size:40px; color:#fff; margin:0 0 12px; }
.about-cta-box p { color:rgba(255,255,255,.85); margin-bottom:28px; font-size:16px; }
.about-cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.btn-white { background:#fff; color:var(--primary); padding:12px 28px; border-radius:8px; text-decoration:none; font-weight:700; }
.btn-outline-white { border:2px solid rgba(255,255,255,.6); color:#fff; padding:12px 28px; border-radius:8px; text-decoration:none; font-weight:700; transition:.2s; }
.btn-outline-white:hover { background:rgba(255,255,255,.1); }

/* Galerie */
.section-galerie { padding:60px 0; }
.gallery-type-tabs { display:flex; gap:12px; margin-bottom:32px; }
.type-tab { padding:8px 20px; border-radius:8px; border:1px solid var(--border); text-decoration:none; color:var(--text); font-size:14px; transition:.2s; }
.type-tab.active,.type-tab:hover { background:var(--primary); border-color:var(--primary); color:#fff; }
.albums-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:24px; }
.album-card-public { display:block; text-decoration:none; color:var(--text); border-radius:12px; overflow:hidden; border:1px solid var(--border); background:var(--bg-card); transition:.3s; }
.album-card-public:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.15); }
.album-cover { position:relative; aspect-ratio:16/9; overflow:hidden; background:var(--bg-card2); }
.album-cover img { width:100%; height:100%; object-fit:cover; transition:.4s; }
.album-card-public:hover .album-cover img { transform:scale(1.05); }
.album-cover-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:48px; }
.album-overlay { position:absolute; inset:0; background:rgba(0,0,0,.4); display:flex; align-items:flex-end; padding:12px; opacity:0; transition:.2s; }
.album-card-public:hover .album-overlay { opacity:1; }
.album-count { color:#fff; font-size:13px; font-weight:600; }
.album-info { padding:16px; }
.album-info h3 { font-size:16px; font-weight:700; margin:0 0 6px; }
.album-info p { font-size:13px; color:var(--text-muted); margin:0 0 8px; }
.album-info small { font-size:12px; color:var(--text-muted); }
.gallery-nav { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; }
.back-link { color:var(--primary); text-decoration:none; font-weight:600; }
.gallery-masonry { columns:4; column-gap:12px; }
@media(max-width:900px) { .gallery-masonry { columns:3; } }
@media(max-width:640px) { .gallery-masonry { columns:2; } }
.gallery-photo-link { display:block; margin-bottom:12px; border-radius:8px; overflow:hidden; position:relative; break-inside:avoid; }
.gallery-photo-link img { width:100%; display:block; transition:.3s; }
.gallery-photo-link:hover img { transform:scale(1.03); }
.photo-caption { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(transparent,rgba(0,0,0,.7)); color:#fff; font-size:12px; padding:20px 10px 8px; opacity:0; transition:.2s; }
.gallery-photo-link:hover .photo-caption { opacity:1; }

/* Admin extra CSS for stat-mini */
.stats-row { display:flex; gap:16px; margin-bottom:24px; }
.stat-mini { background:var(--bg-card); border-radius:10px; padding:16px 20px; border:1px solid var(--border); flex:1; }
.stat-mini-value { font-size:28px; font-weight:900; color:var(--primary); }
.stat-mini-label { font-size:12px; color:var(--text-muted); }

/* Misc */
.ml-1 { margin-left:4px; }
.mt-2 { margin-top:8px; }
.mt-3 { margin-top:12px; }
.mt-4 { margin-top:16px; }
.mb-3 { margin-bottom:12px; }
.mb-4 { margin-bottom:16px; }
.text-muted { color:var(--text-muted) !important; }

/* ============================================================
   LIGHT THEME OVERRIDES — comprehensive reset
   ============================================================ */

/* ── General surfaces ── */
.section-news,
.section-matches,
.section-standings,
.section-clubs,
.section-about,
.section-cta,
.stats-section,
.section-partners { background: var(--bg); }

.section-news-alt,
.section-scorers { background: var(--bg-card2); }

/* ── Cards ── */
.news-card,
.match-card,
.club-card,
.result-card,
.stat-card,
.scorer-item,
.partner-card,
.about-highlight {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.news-card:hover,
.match-card:hover,
.club-card:hover { box-shadow: var(--shadow-md); }

/* ── Text overrides ── */
.section-title,
.card-title,
.news-card-title a,
.club-card-name,
.match-team-name { color: var(--text); }

.section-subtitle,
.news-meta,
.card-meta,
.news-excerpt,
.match-venue { color: var(--text-muted); }

/* ── Stats bar ── */
.stats-bar { background: var(--primary); }
.stat-number, .stat-label { color: #fff; }

/* ── Standings table ── */
.standings-table th { background: var(--bg-card2); color: var(--text); border-bottom: 2px solid var(--border); }
.standings-table tr:nth-child(even) td { background: var(--bg); }
.standings-table tr:nth-child(odd) td { background: var(--bg-card); }
.standings-table td { color: var(--text); border-bottom: 1px solid var(--border); }
.standings-table tr:hover td { background: var(--primary-bg); }
.rank-1 td { background: rgba(255,215,0,0.08) !important; }
.rank-2 td { background: rgba(192,192,192,0.07) !important; }
.rank-3 td { background: rgba(205,127,50,0.07) !important; }
.relegation td { background: rgba(239,68,68,0.05) !important; }

/* ── Match tabs ── */
.match-tab { background: var(--bg-card2); color: var(--text-muted); border: 1px solid var(--border); }
.match-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Section tags ── */
.section-tag { color: var(--primary); border-color: var(--primary); background: var(--primary-bg); }

/* ── Footer stays dark ── */
#footer { background: var(--bg-dark); color: #fff; }
#footer .footer-links a { color: rgba(255,255,255,0.65); }
#footer .footer-links a:hover { color: var(--primary); }
#footer .footer-heading { color: #fff; }

/* ── Navbar initial state (before scroll = transparent over hero) ── */
#navbar { background: transparent; }
#navbar .nav-link { color: rgba(255,255,255,0.9); }
#navbar .nav-link:hover,
#navbar .nav-link.active { color: #fff; background: rgba(255,255,255,0.15); }
#navbar .nav-logo-text .title { color: #fff; }
#navbar .nav-logo-text .sub { color: rgba(255,255,255,0.6); }
#navbar .nav-btn-ghost { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
#navbar .nav-btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* Navbar scrolled = white with dark text */
#navbar.scrolled .nav-link { color: var(--text-muted); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active { color: var(--primary); background: var(--primary-bg); }
#navbar.scrolled .nav-logo-text .title { color: var(--text); }
#navbar.scrolled .nav-logo-text .sub { color: var(--text-muted); }
#navbar.scrolled .nav-btn-ghost { color: var(--text); border-color: var(--border); }
#navbar.scrolled .nav-btn-ghost:hover { background: var(--bg); }
#navbar.scrolled .hamburger span { background: var(--text); }

/* Hamburger initial (over hero) */
.hamburger span { background: #fff; }

/* ── Mobile menu light ── */
.mobile-menu { background: #fff; }
.mobile-menu-close { color: var(--text); }
.mobile-menu-links a { color: var(--text); border-bottom-color: var(--border); }
.mobile-menu-links a:hover { color: var(--primary); background: var(--primary-bg); }

/* ── CTA section ── */
.section-cta { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.section-cta h2, .section-cta p { color: #fff; }

/* ── About section ── */
.about-badge { background: var(--primary-bg); color: var(--primary); border: 1px solid rgba(242,101,34,0.2); }
.about-text { color: var(--text-muted); }
.about-stat-number { color: var(--primary); }
.about-stat-label { color: var(--text-muted); }

/* ── Club cards ── */
.club-card-name { color: var(--text); }
.club-card-city, .club-card-year { color: var(--text-muted); }
.club-div-badge { background: var(--primary); color: #fff; }

/* ── Scroll reveal ── */
.scroll-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Form controls in light theme ── */
.search-input, .form-control { background: #fff; border-color: var(--border); color: var(--text); }
.search-input::placeholder { color: var(--text-light); }
.search-input:focus, .form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(242,101,34,0.1); }

/* ── Page hero overlay lighter ── */
.page-hero-overlay { background: linear-gradient(135deg, rgba(26,26,46,0.75), rgba(242,101,34,0.3)); }

/* ── Sidebar widget ── */
.sidebar-widget { background: var(--bg-card); border-color: var(--border); }
.widget-title { color: var(--primary); border-bottom-color: var(--border); }
.category-list a { color: var(--text); }
.category-list a:hover, .category-list a.active { background: var(--primary-bg); color: var(--primary); }

/* ── Article ── */
.article-content p { color: var(--text-muted); }
.article-content h2, .article-content h3 { color: var(--text); }
.article-meta-bar { color: var(--text-muted); }
.breadcrumb { color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }

/* ── Calendrier ── */
.match-row-full { background: var(--bg-card); border-color: var(--border); }
.match-row-full:hover { box-shadow: var(--shadow-sm); }
.month-title { color: var(--text); }
.mrf-day { color: var(--text); }
.mrf-weekday { color: var(--text-muted); }
.mrf-team { color: var(--text); }
.mrf-score { color: var(--primary); }

/* ── Contact ── */
.contact-card { background: var(--bg-card); border-color: var(--border); }
.contact-form-card { background: var(--bg-card); border-color: var(--border); }
.contact-card-value { color: var(--text); }

/* ── Empty states ── */
.empty-results { color: var(--text-muted); }

/* ── Pagination ── */
.page-btn { border-color: var(--border); color: var(--text); background: var(--bg-card); }
.page-btn:hover, .page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Flash messages ── */
.flash-success { background: rgba(16,185,129,0.08); color: #059669; border-color: rgba(16,185,129,0.2); }
.flash-error   { background: rgba(239,68,68,0.08); color: #dc2626; border-color: rgba(239,68,68,0.2); }


/* ── Mobile menu light overrides ── */
.mobile-menu {
  display: flex !important;
  flex-direction: column;
  background: #fff;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  border-radius: 6px;
}
.mobile-menu-close:hover { background: var(--bg); }
.mobile-menu-links { padding: 12px; flex: 1; overflow-y: auto; }
.mobile-menu-links li { list-style: none; }
.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu-links a:hover,
.mobile-menu-links a.active { background: var(--primary-bg); color: var(--primary); }
.mobile-menu-links a span { font-size: 18px; opacity: 0.4; }
.mobile-menu-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
