/* ==========================================================================
   CENTRE DE FORMATION MOUSSA KANDJOURA DIARRA (CF – MKD) - STYLES
   Modern Athletic Theme, Glassmorphism & High-Performance Design
   ========================================================================== */

/* --- ROOT VARIABLES & DESIGN TOKENS --- */
:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Color Palette */
  --color-bg-main: #0a0e17;
  --color-bg-surface: #111827;
  --color-bg-card: rgba(17, 24, 39, 0.75);
  --color-bg-card-hover: rgba(30, 41, 59, 0.85);
  --color-bg-alt: #070a10;
  
  /* Brand Accents */
  --color-primary: #2563eb;
  --color-primary-light: #3b82f6;
  --color-primary-dark: #1d4ed8;
  --color-primary-glow: rgba(37, 99, 235, 0.35);

  --color-gold: #f59e0b;
  --color-gold-light: #fbbf24;
  --color-gold-dark: #d97706;
  --color-gold-glow: rgba(245, 158, 11, 0.35);

  /* Mali National Colors */
  --mali-green: #10b981;
  --mali-yellow: #f59e0b;
  --mali-red: #ef4444;

  /* Neutrals & Text */
  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-glow: rgba(59, 130, 246, 0.3);

  /* UI Utilities */
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px var(--color-primary-glow);
  --shadow-gold: 0 0 30px var(--color-gold-glow);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.bg-darker {
  background-color: var(--color-bg-alt);
}

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

/* --- TOP ANNOUNCEMENT BAR --- */
.top-bar {
  background: linear-gradient(90deg, #09101f 0%, #172554 50%, #09101f 100%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 0.825rem;
  padding: 0.45rem 0;
  position: relative;
  z-index: 100;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mali-flag-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  padding: 0.15rem 0.5rem;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: 0.75rem;
}

.top-bar-text {
  color: #f1f5f9;
  font-weight: 600;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-social-link {
  color: #38bdf8;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-social-link:hover {
  color: #ffffff;
}

.top-contact-item {
  color: #cbd5e1;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-contact-item:hover {
  color: var(--color-gold-light);
}

.lang-switch-container {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-border);
  padding: 0.2rem 0.5rem;
  border-radius: var(--border-radius-full);
  gap: 0.4rem;
}

.lang-btn {
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.15rem 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  background: var(--color-primary);
  color: #ffffff;
}

.lang-divider {
  color: var(--color-text-dim);
  font-size: 0.7rem;
}

/* --- MAIN NAVBAR --- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 14, 23, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  z-index: 99;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(10, 14, 23, 0.96);
  box-shadow: var(--shadow-md);
  border-bottom-color: rgba(59, 130, 246, 0.25);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 46px;
  height: 46px;
  border-radius: var(--border-radius-full);
  object-fit: cover;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 12px var(--color-gold-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.nav-highlight {
  color: var(--color-gold-light);
  font-weight: 700;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link.nav-btn {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: var(--color-primary-light);
  padding: 0.4rem 0.95rem;
  border-radius: var(--border-radius-full);
}

.nav-link.nav-btn::after {
  display: none;
}

.nav-link.nav-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-facebook-header {
  width: 38px;
  height: 38px;
  border-radius: var(--border-radius-full);
  background: rgba(24, 119, 242, 0.15);
  border: 1px solid rgba(24, 119, 242, 0.35);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.btn-facebook-header:hover {
  background: #1877f2;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25d366;
  color: #0b1c11;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: var(--border-radius-full);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: all var(--transition-fast);
}

.btn-whatsapp-header:hover {
  background: #20ba5a;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  font-size: 1.15rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.825rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px var(--color-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-primary-glow);
  filter: brightness(1.1);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #0b101d;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px var(--color-gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-gold-glow);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--color-primary-light);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: var(--color-primary-light);
  color: #ffffff;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(30, 58, 138, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
              linear-gradient(to bottom, #0a0e17, #0d1322);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: var(--border-radius-full);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.2);
  top: 10%;
  right: 10%;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.12);
  bottom: 10%;
  left: 5%;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--color-gold-light);
  padding: 0.4rem 0.95rem;
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-badge .star-group {
  letter-spacing: 2px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.highlight-gradient {
  background: linear-gradient(135deg, #ffffff 30%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title-sub {
  color: var(--color-gold-light);
  font-size: 2.3rem;
  font-weight: 800;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.hero-event-callout {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.15) 0%, rgba(16, 185, 129, 0.15) 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1.15rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}

.callout-icon {
  width: 36px;
  height: 36px;
  background: var(--color-gold);
  color: #0b101d;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.callout-text {
  font-size: 0.875rem;
  color: #ffffff;
}

.callout-text strong {
  color: var(--color-gold-light);
  display: inline;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.stat-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 1rem 0.75rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stat-icon {
  font-size: 1.1rem;
  color: var(--color-primary-light);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  display: inline;
}

.stat-suffix {
  display: inline;
  font-size: 1.05rem;
  color: var(--color-gold);
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Hero Visual / Crest Showcase */
.crest-showcase-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.crest-backdrop-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(245, 158, 11, 0.2) 60%, transparent 80%);
  filter: blur(40px);
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}

.crest-card {
  position: relative;
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2rem 2rem 1.5rem;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(37, 99, 235, 0.25);
  backdrop-filter: blur(16px);
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.crest-stars {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-gold);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px var(--color-gold-glow));
}

.crest-main-img {
  width: 190px;
  height: auto;
  margin: 0 auto 1.25rem;
  border-radius: var(--border-radius-md);
  border: 2px solid rgba(245, 158, 11, 0.4);
  box-shadow: var(--shadow-md);
}

.crest-caption h4 {
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: #93c5fd;
  margin-bottom: 0.2rem;
}

.crest-caption p {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.8px;
}

.mali-ribbon {
  display: flex;
  height: 4px;
  width: 80px;
  margin: 0.85rem auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.mali-ribbon .m-green { flex: 1; background-color: var(--mali-green); }
.mali-ribbon .m-yellow { flex: 1; background-color: var(--mali-yellow); }
.mali-ribbon .m-red { flex: 1; background-color: var(--mali-red); }

/* --- SECTION HEADERS --- */
.section-header {
  margin-bottom: 3.5rem;
}

.sub-badge {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: var(--border-radius-full);
  margin-bottom: 0.75rem;
}

.sub-badge.gold-badge {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--color-gold-light);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- TOURNAMENT SECTION (TOURNOI VACANCE U17) --- */
.tournament-main-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.poster-card-box {
  background: var(--color-bg-card);
  border: 2px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(245, 158, 11, 0.12);
  margin-bottom: 1.5rem;
}

.poster-date-ribbon {
  background: var(--color-gold);
  color: #0b101d;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  padding: 0.45rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.tournament-poster-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.tournament-poster-img:hover {
  transform: scale(1.02);
}

.poster-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.85rem;
  background: #0f172a;
}

.president-callout-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pres-mini-avatar {
  width: 54px;
  height: 54px;
  border-radius: var(--border-radius-full);
  border: 2px solid var(--color-gold);
  object-fit: cover;
  flex-shrink: 0;
}

.president-callout-box strong {
  font-size: 0.95rem;
  color: #ffffff;
  display: block;
}

.president-callout-box p {
  font-size: 0.775rem;
  color: var(--color-text-muted);
}

.pres-quote {
  font-size: 0.775rem;
  color: var(--color-gold-light);
  font-style: italic;
  display: block;
  margin-top: 0.2rem;
}

/* Tournament Facts Grid */
.t-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.t-fact-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  backdrop-filter: blur(8px);
}

.fact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.t-fact-card small {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 0.15rem;
}

.t-fact-card strong {
  font-size: 1.05rem;
  color: #ffffff;
  display: block;
}

.fact-note {
  font-size: 0.75rem;
  color: var(--color-gold-light);
  display: block;
  margin-top: 0.2rem;
}

.highlight-fee-card {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, rgba(17, 24, 39, 0.8) 100%);
}

.highlight-fee-card .fact-icon {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--mali-green);
}

.highlight-fee-card-ext {
  border-color: rgba(245, 158, 11, 0.35);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, rgba(17, 24, 39, 0.8) 100%);
}

.highlight-fee-card-ext .fact-icon {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--color-gold);
}

.fee-val {
  font-family: var(--font-heading);
  font-size: 1.35rem !important;
  color: var(--color-gold-light) !important;
}

.fact-note-bold {
  font-size: 0.75rem;
  color: #34d399;
  font-weight: 700;
  display: block;
  margin-top: 0.2rem;
}

/* Articles Accordion / Summary */
.tournament-articles-container {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.articles-heading {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold-light);
}

.articles-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
}

.art-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-gold-light);
  padding: 0.2rem 0.5rem;
  border-radius: var(--border-radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.article-pill strong {
  font-size: 0.875rem;
  color: #ffffff;
  display: block;
  margin-bottom: 0.15rem;
}

.article-pill p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.highlight-rewards {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
}

.tournament-action-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tournament-contact-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.tournament-contact-footer strong {
  color: #ffffff;
}

/* --- MISSION & OBJECTIVES (a, b, c, d, e) --- */
.mission-objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.mission-objective-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 2.25rem 1.75rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.mission-objective-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: var(--shadow-md);
}

.mission-objective-card.highlight-mission {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, rgba(17, 24, 39, 0.8) 100%);
}

.mission-objective-card.highlight-tournament {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, rgba(17, 24, 39, 0.8) 100%);
  grid-column: span 2;
}

.obj-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.obj-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--color-primary-light);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.highlight-mission .obj-icon {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
  color: var(--mali-green);
}

.highlight-tournament .obj-icon {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--color-gold);
}

.mission-objective-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.mission-objective-card p {
  color: var(--color-text-muted);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.obj-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.highlight-tag {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.gold-tag {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--color-gold-light);
}

.highlight-gold-tag {
  background: var(--color-gold) !important;
  color: #0b101d !important;
  font-weight: 800 !important;
}

/* Statement Box */
.purpose-statement-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  box-shadow: var(--shadow-md);
}

.statement-icon {
  font-size: 2.25rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.statement-text h4 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.statement-text p {
  color: #cbd5e1;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
}

/* --- LEADERSHIP & STAFF SECTION --- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.staff-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.staff-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow-md);
}

.staff-card.president-card {
  border-color: rgba(245, 158, 11, 0.4);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, rgba(17, 24, 39, 0.85) 100%);
}

.staff-card.highlight-coach {
  border-color: rgba(37, 99, 235, 0.4);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(17, 24, 39, 0.85) 100%);
}

.staff-card.doctor-card {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, rgba(17, 24, 39, 0.85) 100%);
}

.staff-role-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--border-radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.president-card .staff-role-badge {
  background: var(--color-gold);
  color: #0b101d;
}

.head-badge {
  background: var(--color-primary);
  color: #ffffff;
}

.doc-badge {
  background: var(--mali-green);
  color: #062413;
}

.staff-avatar {
  width: 76px;
  height: 76px;
  border-radius: var(--border-radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.85rem;
  color: var(--color-primary-light);
  overflow: hidden;
}

.pres-avatar-real {
  width: 86px;
  height: 86px;
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 20px var(--color-gold-glow);
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.president-card .staff-avatar:not(.pres-avatar-real) {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 16px var(--color-gold-glow);
}

.highlight-coach .staff-avatar {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
  box-shadow: 0 0 16px var(--color-primary-glow);
}

.doctor-card .staff-avatar {
  border-color: var(--mali-green);
  color: var(--mali-green);
}

.staff-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #ffffff;
}

.staff-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: 0.75rem;
}

.staff-bio {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- PROGRAMS GRID (5 Categories) --- */
.programs-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.coach-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.coach-head {
  color: var(--color-gold-light);
}

.program-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  position: relative;
  transition: all var(--transition-normal);
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow-md);
}

.program-card.highlight-program {
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(30, 41, 59, 0.7);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  right: 15px;
  background: var(--color-gold);
  color: #0b101d;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
}

.program-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.category-tag {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-light);
}

.program-card.highlight-program .category-tag {
  color: var(--color-gold-light);
}

.age-badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.55rem;
  border-radius: var(--border-radius-full);
  color: var(--color-text-muted);
}

.program-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.program-body p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.program-features li {
  font-size: 0.8rem;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.program-features li i {
  color: var(--mali-green);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.program-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 0.85rem;
}

.sessions-info {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--color-text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- GALLERY SECTION --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.5rem 1.15rem;
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 10px var(--color-primary-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.gallery-item {
  transition: all var(--transition-normal);
}

.gallery-item.hidden {
  display: none;
}

.gallery-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 23, 0.95) 0%, rgba(10, 14, 23, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  align-self: flex-start;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: var(--border-radius-full);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.gallery-overlay h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.zoom-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.85rem;
}

/* --- SUPPORT SECTION --- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.support-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow-md);
}

.support-card.highlight-support {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(17, 24, 39, 0.9) 100%);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.1);
}

.support-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--color-primary-light);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.support-card.highlight-support .support-icon {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--color-gold);
}

.support-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.support-card p {
  color: var(--color-text-muted);
  font-size: 0.925rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

/* --- CONTACT SECTION --- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-info-panel {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
}

.info-crest-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-logo {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-full);
  border: 2px solid var(--color-gold);
}

.info-crest-header h3 {
  font-size: 1.3rem;
}

.info-crest-header p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.contact-panel-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.detail-item strong {
  display: block;
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.detail-item p, .detail-item a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.detail-item a:hover {
  color: var(--color-primary-light);
}

.contact-action-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-whatsapp-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366;
  color: #081a0e;
  font-weight: 700;
  padding: 0.85rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.btn-whatsapp-full:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

.btn-whatsapp-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  font-weight: 700;
  padding: 0.8rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.btn-whatsapp-secondary:hover {
  background: #25d366;
  color: #081a0e;
}

/* Contact Form */
.contact-form-panel {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10, 14, 23, 0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #0f172a;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.btn-submit {
  width: 100%;
  padding: 0.95rem;
}

.form-feedback-message {
  margin-top: 1.25rem;
  padding: 0.85rem;
  border-radius: var(--border-radius-md);
  font-size: 0.9rem;
  display: none;
  text-align: center;
}

.form-feedback-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

/* --- FOOTER --- */
.site-footer {
  background: #05080e;
  border-top: 1px solid var(--color-border);
  padding: 5rem 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-full);
  border: 2px solid var(--color-gold);
}

.footer-brand h3 {
  font-size: 1.15rem;
}

.footer-brand p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-contact-fast {
  font-size: 0.8rem;
  color: var(--color-gold-light);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-col ul a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-staff-list li {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.35rem;
}

.footer-staff-list small {
  color: var(--color-text-dim);
}

.mali-footer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
  text-align: center;
}

.mali-flag-graphic {
  display: flex;
  height: 24px;
  width: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mali-flag-graphic .flag-stripe {
  flex: 1;
}

.f-green { background-color: var(--mali-green); }
.f-yellow { background-color: var(--mali-yellow); }
.f-red { background-color: var(--mali-red); }

.mali-footer-card strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.mali-footer-card span {
  font-size: 0.75rem;
  color: var(--color-gold);
}

.mali-impact-tag {
  font-size: 0.75rem;
  color: #34d399;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  font-size: 0.825rem;
  color: var(--color-text-dim);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.dev-credits {
  color: var(--color-text-muted);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrapper {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  background: #0f172a;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-image-wrapper img {
  max-height: 65vh;
  width: auto;
  object-fit: contain;
  background: #000000;
}

.lightbox-caption {
  padding: 1.25rem 1.75rem;
  background: #0f172a;
}

.lightbox-caption h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.lightbox-caption p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: #ef4444;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--color-primary);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all var(--transition-fast);
  animation: floatPulse 3s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: #20ba5a;
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.floating-whatsapp:hover .floating-tooltip {
  opacity: 1;
}

@keyframes floatPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
  .programs-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.7rem;
  }
  .hero-title-sub {
    font-size: 2rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-event-callout {
    justify-content: center;
    text-align: left;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tournament-main-grid {
    grid-template-columns: 1fr;
  }
  .mission-objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-objective-card.highlight-tournament {
    grid-column: span 2;
  }
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    z-index: 98;
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .whatsapp-label {
    display: none;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-title-sub {
    font-size: 1.6rem;
  }
  .t-facts-grid {
    grid-template-columns: 1fr;
  }
  .mission-objectives-grid {
    grid-template-columns: 1fr;
  }
  .mission-objective-card.highlight-tournament {
    grid-column: span 1;
  }
  .staff-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid-5 {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .lightbox-nav {
    display: none;
  }
}
