/* ==========================================================================
   MARBEL FUTSAL — Design System
   "Brussels Black Edition"
   Premium · Institutional · Sport
   ========================================================================== */

/* -------------------------
   1. FONTS
   ------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700&display=swap');

/* -------------------------
   2. RESET
   ------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

img,
picture,
video,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* -------------------------
   3. TOKENS
   ------------------------- */
:root {
  /* Colors — Brussels Black Edition */
  --bg: #0a0a0b;
  --bg-elev-1: #111114;
  --bg-elev-2: #17171b;
  --bg-elev-3: #1f1f24;
  --bg-light: #f6f5f0;

  --text: #fafaf7;
  --text-soft: #c7c7c2;
  --text-mute: #8a8a85;
  --text-dim: #55555a;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --accent: #00d26a;          /* Marbel green */
  --accent-hover: #00ea7a;
  --accent-dim: rgba(0, 210, 106, 0.12);
  --danger: #e63946;          /* Marbel red (tactical use) */

  /* Typography */
  --font-display: 'Anton', 'Archivo Black', sans-serif;
  --font-ui: 'Archivo', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 600ms;

  /* Shadow */
  --shadow-glow: 0 0 0 1px rgba(0, 210, 106, 0.3), 0 0 32px rgba(0, 210, 106, 0.15);
  --shadow-elev: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

/* -------------------------
   4. UTILITIES
   ------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section--tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
}

.section-num {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--accent);
}

/* Typography */
.display,
h1.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 8.5rem);
}

.title-xl {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2,
.title-lg {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: 0;
}

h3,
.title-md {
  font-family: var(--font-ui);
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.01em;
}

h4,
.title-sm {
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.125rem;
  letter-spacing: -0.005em;
}

.overline {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.accent {
  color: var(--accent);
}

.italic {
  font-style: italic;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 60ch;
}

.text-soft {
  color: var(--text-soft);
}

.text-mute {
  color: var(--text-mute);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(0, 210, 106, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--dur) var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

.btn-sm {
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
}

/* Link */
.link {
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: all var(--dur) var(--ease);
}

.link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* -------------------------
   5. HEADER / NAV
   ------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10, 10, 11, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 0.75rem 0;
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
  transition: opacity var(--dur) var(--ease);
}

.brand:hover {
  opacity: 0.8;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name span {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
}

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

.nav a {
  padding: 0.625rem 1rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav a.active::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.125rem;
  height: 2px;
  background: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.lang-switcher button {
  padding: 0.375rem 0.625rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.lang-switcher button:hover {
  color: var(--text);
}

.lang-switcher button.active {
  background: var(--accent);
  color: #000;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 100vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    background: var(--bg-elev-1);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav a.active::after {
    display: none;
  }

  .nav a.active {
    color: var(--accent);
  }
}

/* -------------------------
   6. HERO
   ------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(0, 210, 106, 0.08), transparent 60%),
    radial-gradient(800px 400px at 10% 80%, rgba(230, 57, 70, 0.04), transparent 60%),
    linear-gradient(180deg, #000 0%, var(--bg) 60%, var(--bg) 100%);
}

/* Grid lines overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

/* Grain */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.hero-top .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-dim); }
  50% { box-shadow: 0 0 0 8px rgba(0, 210, 106, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 13vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp 1.2s var(--ease) forwards;
}

.hero-title .line:nth-child(2) span {
  animation-delay: 0.15s;
  color: var(--text);
  -webkit-text-stroke: 1px var(--text);
  color: transparent;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: end;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-meta > div .overline {
  margin-bottom: 0.5rem;
}

.hero-meta > div p {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-tagline {
  font-family: var(--font-ui);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-soft);
  max-width: 40ch;
}

/* -------------------------
   7. PAGE HEADER (non-home)
   ------------------------- */
.page-header {
  position: relative;
  padding: clamp(8rem, 15vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 80% 100%, rgba(0, 210, 106, 0.06), transparent 60%);
  z-index: -1;
}

.page-header-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}

@media (min-width: 768px) {
  .page-header-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-mute);
  transition: color var(--dur) var(--ease);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  color: var(--text-dim);
}

/* -------------------------
   8. CARDS / BLOCKS
   ------------------------- */
.card {
  position: relative;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
}

.card:hover {
  background: var(--bg-elev-2);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.card-num {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* -------------------------
   9. GRIDS / LAYOUTS
   ------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split--40-60 {
    grid-template-columns: 2fr 3fr;
  }

  .split--60-40 {
    grid-template-columns: 3fr 2fr;
  }
}

/* -------------------------
   10. STATS / KPI
   ------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.stat {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-strong);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.stat-num sup {
  font-size: 0.4em;
  color: var(--accent);
  top: -1.5em;
  margin-left: 0.15em;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* -------------------------
   11. MARQUEE (sponsors)
   ------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev-1);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-track > * {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4rem;
  transition: color var(--dur) var(--ease);
}

.marquee-track > *:hover {
  color: var(--text);
}

.marquee-track > *::after {
  content: '◆';
  color: var(--accent);
  font-size: 0.6em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------------------------
   12. PLAYER CARDS
   ------------------------- */
.players-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all var(--dur) var(--ease);
}

.filter-btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.filter-btn.active {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.player-card {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  isolation: isolate;
}

.player-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.player-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-elev-2) 0%, var(--bg-elev-1) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.player-photo svg {
  width: 85%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  transition: filter var(--dur) var(--ease), transform var(--dur-slow) var(--ease);
}

.player-card:hover .player-photo svg {
  filter: grayscale(0) contrast(1);
  transform: scale(1.03);
}

.player-number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.9;
  color: var(--text);
  -webkit-text-stroke: 1px var(--text);
  color: transparent;
  opacity: 0.9;
  pointer-events: none;
  z-index: 2;
  transition: all var(--dur) var(--ease);
}

.player-card:hover .player-number {
  color: var(--accent);
  -webkit-text-stroke: 0;
  opacity: 1;
}

.player-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.25rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.95) 50%);
  z-index: 2;
}

.player-pos {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.375rem;
}

.player-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.player-name .first {
  color: var(--text-soft);
  font-weight: 400;
  display: block;
  font-size: 0.7em;
  margin-bottom: 2px;
}

/* Position group header */
.position-group {
  margin-bottom: 4rem;
}

.position-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.position-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
}

.position-count {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
}

/* -------------------------
   13. PLAYER MODAL
   ------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

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

.modal-inner {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-elev-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  transform: translateY(40px);
  transition: transform var(--dur) var(--ease);
}

.modal.active .modal-inner {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.25rem;
  z-index: 3;
  transition: all var(--dur) var(--ease);
}

.modal-close:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 760px) {
  .modal-grid {
    grid-template-columns: 5fr 6fr;
  }
}

.modal-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev-3));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.modal-photo svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-photo .player-number {
  top: 1.25rem;
  right: 1.5rem;
  font-size: 6rem;
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.modal-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.modal-pos {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.modal-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.modal-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.modal-stat-label {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.25rem;
}

.modal-stat-val {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.modal-bio {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* -------------------------
   14. SPONSOR GRID
   ------------------------- */
.sponsor-tier {
  margin-bottom: 4rem;
}

.sponsor-tier-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.sponsor-grid--lg {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.sponsor-logo {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-mute);
  transition: all var(--dur) var(--ease);
}

.sponsor-grid--lg .sponsor-logo {
  font-size: 1.5rem;
}

.sponsor-logo:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--bg-elev-2);
  transform: translateY(-2px);
}

/* -------------------------
   15. SPONSOR PACKS
   ------------------------- */
.packs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.pack {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all var(--dur) var(--ease);
}

.pack:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  background: var(--bg-elev-2);
}

.pack--featured {
  background: linear-gradient(180deg, rgba(0, 210, 106, 0.06), var(--bg-elev-2) 60%);
  border-color: var(--accent);
}

.pack--featured::before {
  content: 'RECOMMANDÉ';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 0.875rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--accent);
  color: #000;
  border-radius: 999px;
  white-space: nowrap;
}

.pack-tier {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.pack-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.pack--bronze .pack-name {
  color: #c88a4e;
}

.pack--silver .pack-name {
  color: #d4d4d4;
}

.pack--gold .pack-name {
  color: #e6c166;
}

.pack-desc {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pack-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex: 1;
}

.pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.pack-features li::before {
  content: '→';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* -------------------------
   16. MATCHES / CALENDAR
   ------------------------- */
.tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 1rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
}

.tab:hover {
  color: var(--text);
}

.tab.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s var(--ease);
}

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

/* Next match */
.next-match {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, var(--bg-elev-2), var(--bg-elev-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.next-match::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

@media (min-width: 768px) {
  .next-match {
    grid-template-columns: auto 1fr auto;
  }
}

.match-date {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-right: clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--border);
}

@media (max-width: 767px) {
  .match-date {
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

.match-day {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.9;
}

.match-month {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.match-vs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex: 1;
  min-width: 0;
}

.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
  flex: 1;
}

.match-team-logo {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-soft);
}

.match-team-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.match-separator {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-mute);
}

.match-time-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.match-time {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.match-venue {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Match list */
.match-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.match-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
}

.match-row:hover {
  background: var(--bg-elev-2);
  border-color: var(--border-strong);
}

.match-row-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 1rem;
  border-right: 1px solid var(--border);
  min-width: 64px;
}

.match-row-date .day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.match-row-date .month {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 2px;
}

.match-row-teams {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex-wrap: wrap;
}

.match-row-team {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9375rem;
}

.match-row-team.us {
  color: var(--accent);
}

.match-row-score {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  padding: 0.375rem 0.75rem;
  background: var(--bg-elev-3);
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.match-row-time {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-soft);
}

.match-row-result {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.match-row-result.win { background: rgba(0, 210, 106, 0.12); color: var(--accent); }
.match-row-result.loss { background: rgba(230, 57, 70, 0.12); color: var(--danger); }
.match-row-result.draw { background: rgba(255, 255, 255, 0.08); color: var(--text-soft); }

/* Standings table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev-1);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  min-width: 600px;
}

.table th {
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev-2);
}

.table th.num,
.table td.num {
  text-align: center;
  width: 56px;
}

.table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr.us {
  background: rgba(0, 210, 106, 0.05);
}

.table tr.us td {
  color: var(--text);
  font-weight: 600;
}

.table .pos {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1rem;
}

.table .pts {
  font-weight: 700;
  color: var(--text);
}

/* -------------------------
   17. GALLERY
   ------------------------- */
.gallery-grid {
  columns: 1;
  column-gap: 1rem;
}

@media (min-width: 600px) { .gallery-grid { columns: 2; } }
@media (min-width: 900px) { .gallery-grid { columns: 3; } }
@media (min-width: 1200px) { .gallery-grid { columns: 4; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-elev-1);
  transition: transform var(--dur) var(--ease);
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item svg {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item::after {
  content: '+';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

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

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.25rem;
  transition: all var(--dur) var(--ease);
}

.lightbox-close:hover {
  background: var(--accent);
  color: #000;
}

/* -------------------------
   18. FORMS
   ------------------------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.875rem 1rem;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  font-family: var(--font-body);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-elev-2);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-dim);
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-mute);
}

/* Newsletter inline */
.newsletter {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, var(--bg-elev-2), var(--bg-elev-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 860px) {
  .newsletter {
    grid-template-columns: 1fr auto;
  }
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.875rem 1.125rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

/* -------------------------
   19. TIMELINE
   ------------------------- */
.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 6px);
  top: 0.5rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.timeline-item h4 {
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* -------------------------
   20. VALUE BLOCKS
   ------------------------- */
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 700px) {
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
}

.value:hover {
  background: var(--bg-elev-1);
}

@media (min-width: 700px) {
  .value:nth-child(2n) { border-right: none; }
}

@media (min-width: 1024px) {
  .value:nth-child(2n) { border-right: 1px solid var(--border); }
  .value:nth-child(3n) { border-right: none; }
}

.value-num {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.value h4 {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0;
}

.value p {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* -------------------------
   21. STAFF
   ------------------------- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.staff-card {
  padding: 1.5rem;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
}

.staff-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.staff-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-elev-3), var(--bg-elev-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-mute);
}

.staff-role {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.375rem;
}

.staff-name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
}

/* -------------------------
   22. CONTACT
   ------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  padding: 1.25rem;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-item-label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.5rem;
}

.contact-item-value {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text);
}

.contact-item a {
  color: var(--text);
  transition: color var(--dur) var(--ease);
}

.contact-item a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--dur) var(--ease);
}

.social-btn:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

/* -------------------------
   23. FOOTER
   ------------------------- */
.footer {
  background: var(--bg-elev-1);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  position: relative;
}

.footer-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  -webkit-text-stroke: 1px var(--border-strong);
  color: transparent;
  margin-bottom: 3rem;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-col--brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col--brand { grid-column: auto; }
}

.footer-col h5 {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col a {
  font-size: 0.9375rem;
  color: var(--text-soft);
  transition: color var(--dur) var(--ease);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col--brand p {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 1rem 0;
  max-width: 32ch;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* -------------------------
   24. ANIMATIONS
   ------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal-stagger].in > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.19s; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.26s; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.33s; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.4s; }
[data-reveal-stagger].in > *:nth-child(7) { transition-delay: 0.47s; }
[data-reveal-stagger].in > *:nth-child(8) { transition-delay: 0.54s; }

/* -------------------------
   25. SELECTION + SCROLLBAR
   ------------------------- */
::selection {
  background: var(--accent);
  color: #000;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elev-3);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-strong);
}

/* -------------------------
   26. MISC / HELPERS
   ------------------------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.center { text-align: center; }

.no-scroll { overflow: hidden; }

.eyebrow {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(3rem, 15vw, 5rem); }
  .footer-big { font-size: 20vw; }
  .hero-meta { grid-template-columns: 1fr; text-align: left; }
}

.split { align-items: center; }
.socials--center { align-self: center; justify-content: flex-end; }

.footer-col a { display: block; }

.social-btn--sm svg { width: 18px; height: 18px; }


/* ===== FOOTER PRO ALIGNMENT ===== */
.footer-grid {
  align-items: start;
  gap: 4rem 3rem;
}
.footer-col h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00D26A;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(250, 250, 247, 0.08);
}
.footer-col a {
  display: block;
  padding: 0.35rem 0;
  color: rgba(250, 250, 247, 0.7);
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a:hover {
  color: #FAFAF7;
  transform: translateX(3px);
}
.footer-col--brand p {
  max-width: 320px;
  line-height: 1.6;
}
.footer-col--brand .socials {
  margin-top: 1.5rem;
}
.social-btn--sm {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 250, 247, 0.12);
  border-radius: 10px;
  transition: all 0.2s ease;
}
.social-btn--sm:hover {
  border-color: #00D26A;
  color: #00D26A;
  transform: translateY(-2px);
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 247, 0.08);
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.5);
}

.social-btn--sm {
  width: 44px;
  height: 44px;
  padding: 0 !important;
  gap: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(250, 250, 247, 0.12);
  border-radius: 10px;
  transition: all 0.2s ease;
}
.social-btn--sm:hover {
  border-color: #00D26A;
  color: #00D26A;
  transform: translateY(-2px);
  background: transparent;
}
.social-btn--sm svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hero-cta {
  align-items: center;
  justify-content: center;
}
.hero-cta .btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Placeholder joueurs — visible avant photos réelles */
.player-card {
  background: linear-gradient(180deg, #111114 0%, #0A0A0B 100%);
  border: 1px solid rgba(250, 250, 247, 0.08);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.player-card:hover {
  border-color: #00D26A;
  transform: translateY(-4px);
}
.player-photo {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: radial-gradient(ellipse at bottom, rgba(0, 210, 106, 0.08) 0%, transparent 60%);
  min-height: 240px;
  position: relative;
}
.player-photo svg {
  width: 70%;
  height: 90%;
  display: block;
  opacity: 0.35;
}
.player-info {
  padding: 1rem;
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(250, 250, 247, 0.06);
}
.player-number {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: #00D26A;
  line-height: 1;
}
.player-pos {
  font-family: 'Archivo', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.5);
  margin: 0.25rem 0;
}
.player-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  color: #FAFAF7;
  font-size: 0.95rem;
  line-height: 1.2;
}
.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.position-group {
  margin-bottom: 3rem;
}

/* Force player cards visible (bypass reveal observer) */
#playersContainer [data-reveal-stagger] > .player-card,
#playersContainer .player-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
#playersContainer .position-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(250, 250, 247, 0.08);
}
#playersContainer .position-header h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  color: #FAFAF7;
  text-transform: uppercase;
  margin: 0;
}
#playersContainer .position-count {
  font-family: 'Archivo', sans-serif;
  font-size: 0.8rem;
  color: #00D26A;
  letter-spacing: 0.15em;
}

/* ===== CONTACT PAGE — DESIGN PRO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Cartes info contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(250, 250, 247, 0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #00D26A;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.contact-item:hover {
  border-color: rgba(0, 210, 106, 0.3);
  background: rgba(0, 210, 106, 0.03);
  transform: translateX(4px);
}
.contact-item:hover::before {
  transform: scaleY(1);
}
.contact-item-label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00D26A;
  display: block;
  margin-bottom: 0.35rem;
}
.contact-item-value {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FAFAF7;
  letter-spacing: -0.01em;
}

/* Formulaire premium */
.form {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(250, 250, 247, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-field {
  margin-bottom: 1.5rem;
}
.form-field label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.6);
  display: block;
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(10, 10, 11, 0.6);
  border: 1px solid rgba(250, 250, 247, 0.1);
  border-radius: 10px;
  color: #FAFAF7;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #00D26A;
  background: rgba(10, 10, 11, 0.9);
  box-shadow: 0 0 0 4px rgba(0, 210, 106, 0.08);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
}
.form button[type="submit"] {
  width: 100%;
  padding: 1.15rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

/* Section réseaux */
.socials--lg {
  gap: 0.75rem;
  flex-wrap: wrap;
}
.socials--lg .social-btn {
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(250, 250, 247, 0.1);
  transition: all 0.25s ease;
}
.socials--lg .social-btn:hover {
  background: rgba(0, 210, 106, 0.08);
  border-color: #00D26A;
  color: #00D26A;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form {
    padding: 1.75rem;
  }
}


/* ============================================
   ============================================
   RESPONSIVE COMPLET — TABLETTE & MOBILE
   ============================================
   ============================================ */

/* ============ TABLETTE (≤ 1024px) ============ */
@media (max-width: 1024px) {
  /* Header */
  .header-inner {
    padding: 1rem 1.25rem;
  }
  .brand-name {
    font-size: 0.95rem;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
    padding: 6rem 0 3rem;
  }
  .hero-title {
    font-size: clamp(4rem, 15vw, 8rem) !important;
    line-height: 0.9;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .hero-meta-item {
    min-width: calc(50% - 0.75rem);
  }

  /* Sections */
  .section {
    padding: 4rem 0;
  }
  .container {
    padding: 0 1.5rem;
  }

  /* Titres */
  .title-xl {
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
  }
  .title-lg {
    font-size: clamp(1.75rem, 5vw, 2.75rem) !important;
  }

  /* Grids */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split-cta {
    justify-self: flex-start;
  }

  /* Stats */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .stat-num {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  /* Values */
  .values {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Packs sponsors */
  .packs {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .pack--featured {
    transform: none !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
  }
  .footer-big {
    font-size: clamp(3rem, 12vw, 7rem);
  }

  /* Team players */
  .players-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  /* Staff */
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Sponsors */
  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .sponsor-grid--lg {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Page header */
  .page-header {
    padding: 6rem 0 3rem;
  }
  .page-header-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Match tabs */
  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabs::-webkit-scrollbar {
    display: none;
  }
  .tab {
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Standings table — scroll horizontal */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table {
    min-width: 700px;
  }
}

/* ============ TABLETTE PORTRAIT / MOBILE LARGE (≤ 768px) ============ */
@media (max-width: 768px) {
  /* Hero */
  .hero {
    padding: 5rem 0 2rem;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(3.5rem, 18vw, 6rem) !important;
  }
  .hero-top {
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .hero-top-sep {
    display: none;
  }
  .hero-tagline {
    font-size: 1rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-meta {
    gap: 1rem;
  }
  .hero-meta-item {
    min-width: 100%;
  }

  /* Grids passent en 1 colonne */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Section padding */
  .section {
    padding: 3rem 0;
  }
  .section--tight {
    padding: 2rem 0;
  }

  /* Container */
  .container {
    padding: 0 1.25rem;
  }
  .container-narrow {
    padding: 0 1.25rem;
  }

  /* Cards */
  .card {
    padding: 1.5rem;
  }

  /* Lead / typography */
  .lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  .footer-col--brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    align-items: center;
  }
  .footer-big {
    font-size: clamp(2.5rem, 15vw, 5rem);
    letter-spacing: -0.02em;
  }

  /* Newsletter form */
  .newsletter {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .newsletter-form input {
    width: 100%;
  }
  .newsletter-form button {
    width: 100%;
  }

  /* Sponsors */
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sponsor-grid--lg {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .sponsor-tier-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Team players — 2 colonnes */
  .players-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }
  .player-info {
    padding: 0.75rem;
  }
  .player-name {
    font-size: 0.85rem;
  }
  .player-number {
    font-size: 1.25rem;
  }

  /* Staff */
  .staff-grid {
    grid-template-columns: 1fr;
  }

  /* Player Modal */
  .modal-inner {
    padding: 1.5rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .modal-photo {
    max-width: 200px;
    margin: 0 auto;
  }
  .modal-name {
    font-size: 2rem;
  }
  .modal-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Match rows */
  .match-row {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;
  }
  .match-row-date {
    order: 1;
  }
  .match-row-teams {
    order: 2;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .match-row-result,
  .match-row-time {
    order: 3;
    margin-left: auto;
  }
  .match-row-score {
    font-size: 1.5rem;
  }

  /* Next match */
  .next-match {
    padding: 1.5rem;
  }
  .match-teams {
    flex-direction: column;
    gap: 1rem;
  }
  .match-vs {
    font-size: 1.5rem;
  }

  /* Players filter */
  .players-filter {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }
  .players-filter::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Timeline */
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .timeline-year {
    font-size: 2rem;
  }

  /* Page header */
  .breadcrumb {
    font-size: 0.75rem;
  }

  /* Form */
  .form {
    padding: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* CTA block */
  .cta-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }

  /* Socials large */
  .socials--lg {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .socials--lg .social-btn {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  /* Contact items */
  .contact-item {
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  }

  /* Marquee — plus rapide sur mobile */
  .marquee-track {
    animation-duration: 15s;
  }
}

/* ============ MOBILE (≤ 480px) ============ */
@media (max-width: 480px) {
  .header-inner {
    padding: 0.75rem 1rem;
  }
  .brand-name {
    font-size: 0.85rem;
  }
  .lang-switcher button {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2.75rem, 20vw, 5rem) !important;
    letter-spacing: -0.02em;
  }
  .hero-tagline {
    font-size: 0.95rem;
  }

  /* Stats en 1 colonne */
  .stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: left;
  }

  /* Sponsors */
  .sponsor-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Player cards en 1 colonne pour très petits écrans */
  .players-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Match row — compact */
  .match-row-team-name {
    font-size: 0.85rem;
  }

  /* Buttons */
  .btn {
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
  }

  /* Container padding */
  .container,
  .container-narrow {
    padding: 0 1rem;
  }

  /* Cards */
  .card {
    padding: 1.25rem;
  }
  .card-num {
    font-size: 0.85rem;
  }

  /* Values */
  .value {
    padding: 1.25rem;
  }
  .value-num {
    font-size: 0.85rem;
  }

  /* Modal */
  .modal-inner {
    padding: 1.25rem;
    margin: 1rem;
  }
  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  /* Footer icons sociaux */
  .social-btn--sm {
    width: 40px;
    height: 40px;
  }

  /* Gallery */
  .gallery-grid {
    columns: 1;
  }

  /* Section labels un peu plus petits */
  .section-label {
    font-size: 0.7rem;
  }
}

/* ============ TRÈS PETITS ÉCRANS (≤ 360px) ============ */
@media (max-width: 360px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  .title-xl {
    font-size: 1.75rem !important;
  }
  .title-lg {
    font-size: 1.5rem !important;
  }
  .footer-big {
    font-size: 2rem;
  }
}

/* ============ OPTIMISATIONS TOUCH ============ */
@media (hover: none) and (pointer: coarse) {
  /* Désactive les hovers sur tactile pour éviter les états "collés" */
  .card:hover,
  .value:hover,
  .player-card:hover,
  .pack:hover,
  .contact-item:hover,
  .social-btn:hover,
  .btn:hover {
    transform: none;
  }

  /* Augmente les zones cliquables */
  .nav a,
  .filter-btn,
  .tab,
  .btn {
    min-height: 44px;
  }

  /* Meilleur défilement */
  html {
    -webkit-overflow-scrolling: touch;
  }
}

/* ============ ORIENTATION LANDSCAPE MOBILE ============ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 5rem 0 2rem;
  }
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem) !important;
  }
  .nav {
    padding: 4rem 2rem 2rem;
    overflow-y: auto;
  }
}


.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 480px) {
  .brand-mark { width: 34px; height: 34px; }
}

/* Hero — fond noir simple */
.hero-bg {
  background: var(--bg) !important;
}
.hero-bg::before,
.hero-bg::after {
  display: none !important;
}


a.sponsor-logo {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
a.sponsor-logo:hover {
  border-color: #00D26A;
  color: #00D26A;
  transform: translateY(-3px);
}

/* Sponsor avec capture du site */
a.sponsor-logo { cursor: pointer; text-decoration: none; transition: all .25s ease; }
a.sponsor-logo:hover { border-color: #00D26A; transform: translateY(-3px); }

.sponsor-logo.has-img {
  position: relative;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
}
.sponsor-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  filter: grayscale(35%) brightness(.75);
  transition: all .4s ease;
}
.sponsor-logo.has-img:hover .sponsor-img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
}
.sponsor-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
  background: linear-gradient(180deg, rgba(10,10,11,.25) 0%, rgba(10,10,11,.85) 100%);
  transition: background .3s ease;
}
.sponsor-logo.has-img:hover .sponsor-overlay {
  background: rgba(10,10,11,.72);
}
.sponsor-overlay-name {
  font-family: 'Anton', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #FAFAF7;
}
.sponsor-overlay-cta {
  font-family: 'Archivo', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: #00D26A;
  padding: .5rem 1rem;
  border: 1px solid rgba(0,210,106,.4);
  border-radius: 999px;
  opacity: 0; transform: translateY(8px);
  transition: all .3s ease;
}
.sponsor-logo.has-img:hover .sponsor-overlay-cta {
  opacity: 1; transform: translateY(0);
}
@media (hover: none) {
  .sponsor-overlay-cta { opacity: 1; transform: none; }
}