
    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Outfit', sans-serif;
      background: #050A0F;
      color: #E8E0D0;
      overflow-x: hidden;
      cursor: none;
    }

    /* ===== CUSTOM CURSOR ===== */
    .cursor {
      width: 12px; height: 12px;
      background: #C9A84C;
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease;
    }
    .cursor-follower {
      width: 36px; height: 36px;
      border: 1px solid rgba(201,168,76,0.5);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%, -50%);
      transition: all 0.18s ease;
    }
    .cursor.expanded { transform: translate(-50%, -50%) scale(2.5); background: rgba(201,168,76,0.4); }

    /* ===== CSS VARIABLES ===== */
    :root {
      --gold: #C9A84C;
      --gold-light: #E8C96A;
      --gold-dim: rgba(201,168,76,0.15);
      --dark: #050A0F;
      --dark-2: #0A1520;
      --dark-3: #0F1F2E;
      --accent-green: #1A6B3C;
      --text: #E8E0D0;
      --text-muted: #8A8070;
    }

    /* ===== NOISE OVERLAY ===== */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 1; opacity: 0.4;
    }

    /* ===== NAVBAR ===== */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 5%;
      height: 80px;
      display: flex; align-items: center; justify-content: space-between;
      background: linear-gradient(to bottom, rgba(5,10,15,0.95), transparent);
      transition: background 0.4s;
    }
    nav.scrolled {
      background: rgba(5,10,15,0.96);
      border-bottom: 1px solid rgba(201,168,76,0.15);
      backdrop-filter: blur(12px);
    }
    .logo {
      display: flex; align-items: center; gap: 6px;
      text-decoration: none;
    }
    .logo-icon {
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-text {
      display: flex; flex-direction: column; line-height: 1;
    }
    .logo-text span:first-child {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px; color: var(--gold); letter-spacing: 2px;
    }
    .logo-text span:last-child {
      font-size: 9px; letter-spacing: 4px; color: var(--text-muted);
      text-transform: uppercase; margin-top: 3px;
    }
    .nav-links {
      display: flex; gap: 40px; list-style: none;
    }
    .nav-links a {
      color: var(--text-muted); text-decoration: none;
      font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--gold);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--gold); color: #050A0F !important;
      padding: 10px 24px; font-weight: 700 !important;
      border: none;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--gold-light) !important; color: #050A0F !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 28px; height: 2px; background: var(--gold); transition: all 0.3s; display: block; }

    /* ===== HERO ===== */
    .hero {
      position: relative; height: 100vh;
      display: flex; align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 60% 50%, rgba(26,107,60,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%),
        linear-gradient(135deg, #050A0F 0%, #0A1520 100%);
    }
    .hero-img {
      position: absolute; right: -5%; top: 0; bottom: 0;
      width: 55%; overflow: hidden;
    }
    .hero-img img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      filter: saturate(0.8) brightness(0.6);
      mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 40%, transparent 100%);
      -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 40%, transparent 100%);
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, #050A0F 30%, transparent 70%);
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 5%; max-width: 720px;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 24px;
      opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
    }
    .hero-tag::before {
      content: ''; width: 32px; height: 1px; background: var(--gold);
    }
    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(64px, 9vw, 130px);
      line-height: 0.92; letter-spacing: 2px;
      margin-bottom: 24px;
      opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
    }
    .hero-title em {
      display: block; color: var(--gold); font-style: normal;
      text-shadow: 0 0 60px rgba(201,168,76,0.3);
    }
    .hero-subtitle {
      font-size: 18px; line-height: 1.7;
      color: var(--text-muted); max-width: 460px;
      margin-bottom: 40px;
      opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
    }
    .hero-actions {
      display: flex; gap: 16px; flex-wrap: wrap;
      opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
    }
    .btn-primary {
      background: var(--gold); color: #050A0F;
      padding: 16px 36px; font-weight: 700;
      font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
      border: none; cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 10px;
      transition: all 0.3s; font-family: 'Outfit', sans-serif;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(201,168,76,0.35);
    }
    .btn-outline {
      background: transparent; color: var(--text);
      padding: 15px 36px; font-weight: 600;
      font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
      border: 1px solid rgba(232,224,208,0.3); cursor: pointer;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 10px;
      transition: all 0.3s; font-family: 'Outfit', sans-serif;
    }
    .btn-outline:hover {
      border-color: var(--gold); color: var(--gold);
      transform: translateY(-2px);
    }
    .hero-stats {
      position: absolute; bottom: 60px; left: 5%;
      display: flex; gap: 48px; z-index: 2;
      opacity: 0; animation: fadeUp 0.8s 1s forwards;
    }
    .stat-item { display: flex; flex-direction: column; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 44px; color: var(--gold); line-height: 1;
    }
    .stat-label {
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--text-muted); margin-top: 4px;
    }
    .scroll-indicator {
      position: absolute; bottom: 30px; right: 5%;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--text-muted); font-size: 10px; letter-spacing: 3px;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .scroll-indicator::after {
      content: ''; width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
    }

    /* ===== ABOUT SECTION ===== */
    .about {
      padding: 100px 5%;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 50px; align-items: center;
      max-width: 1400px; margin: 0 auto;
    }
    .about-images {
      position: relative; height: 600px;
    }
    .about-img-main {
      position: absolute; left: 0; top: 0;
      width: 75%; height: 85%;
      overflow: hidden;
    }
    .about-img-main img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(0.85);
      transition: transform 0.6s ease;
    }
    .about-img-main:hover img { transform: scale(1.04); }
    .about-img-secondary {
      position: absolute; right: 0; bottom: 0;
      width: 55%; height: 60%;
      overflow: hidden;
      border: 3px solid var(--dark);
    }
    .about-img-secondary img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(0.85);
      transition: transform 0.6s ease;
    }
    .about-img-secondary:hover img { transform: scale(1.04); }
    .about-badge {
      position: absolute; top: 40px; right: 20px;
      background: var(--gold); color: #050A0F;
      padding: 16px 20px; text-align: center;
      z-index: 3;
    }
    .about-badge strong {
      display: block;
      font-family: 'Bebas Neue', sans-serif; font-size: 36px; line-height: 1;
    }
    .about-badge span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
    .section-tag {
      font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(36px, 4vw, 54px);
      line-height: 1.15; margin-bottom: 24px;
      color: var(--text);
    }
    .section-title em { color: var(--gold); font-style: italic; }
    .about-text p {
      color: var(--text-muted); font-size: 16px; line-height: 1.8;
      margin-bottom: 20px;
    }
    .features-list {
      list-style: none; margin-top: 32px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }
    .features-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: var(--text-muted);
    }
    .features-list li::before {
      content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0;
    }

    /* ===== SERVICES ===== */
    .services {
      padding: 120px 5%;
      background: var(--dark-2);
      position: relative; overflow: hidden;
    }
    .services::before {
      content: 'SERVICES';
      position: absolute; top: 40px; right: -20px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 180px; color: rgba(255,255,255,0.02);
      pointer-events: none; white-space: nowrap;
    }
    .services-header {
      text-align: center; margin-bottom: 70px;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 18px; max-width: 1400px; margin: 0 auto;
    }
    .service-card {
      background: var(--dark-3);
      padding: 48px 36px;
      position: relative; overflow: hidden;
      transition: all 0.4s;
      cursor: pointer;
    }
    .service-card::before {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { background: #132030; transform: translateY(-4px); }
    .service-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 64px; color: var(--gold-dim);
      line-height: 1; margin-bottom: 20px;
      transition: color 0.3s;
    }
    .service-card:hover .service-num { color: rgba(201,168,76,0.3); }
    .service-icon { font-size: 32px; margin-bottom: 16px; }
    .service-name {
      font-size: 20px; font-weight: 700;
      margin-bottom: 14px; color: var(--text);
    }
    .service-desc { font-size: 18px; color: var(--text-muted); line-height: 1.7; }

    /* ===== PLAYERS ===== */
    .players {
      padding: 120px 5%;
      max-width: 1400px; margin: 0 auto;
    }
    .players-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 60px;
    }
    .players-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 3px;
    }
    .player-card {
      position: relative; overflow: hidden;
      background: var(--dark-3);
    }
    .player-card.featured {
      grid-row: 1 / 3;
    }
    .player-card img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: top center;
      display: block;
      min-height: 280px;
      filter: saturate(0.75) brightness(0.75);
      transition: all 0.6s ease;
    }
    .player-card.featured img { min-height: 560px; }
    .player-card:hover img {
      filter: saturate(0.9) brightness(0.85);
      transform: scale(1.04);
    }
    .player-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 24px 20px 20px;
      background: linear-gradient(to top, rgba(5,10,15,0.95) 0%, transparent 100%);
      transform: translateY(10px); opacity: 0.85;
      transition: all 0.4s;
    }
    .player-card:hover .player-info { transform: translateY(0); opacity: 1; }
    .player-flag { font-size: 20px; margin-bottom: 6px; }
    .player-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
    .player-card.featured .player-name { font-size: 26px; }
    .player-pos {
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold);
    }
    .player-club {
      font-size: 12px; color: var(--text-muted); margin-top: 4px;
    }

    /* ===== AFRICA MAP SECTION ===== */
    .africa-section {
      padding: 120px 5%;
      background: var(--dark-2);
      position: relative; overflow: hidden;
    }
    .africa-inner {
      max-width: 1400px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .africa-visual {
      position: relative; display: flex; justify-content: center;
    }
    .africa-svg {
      width: 100%; max-width: 480px;
      filter: drop-shadow(0 0 40px rgba(201,168,76,0.15));
    }
    .countries-list {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 14px; margin-top: 32px;
    }
    .country-item {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: var(--text-muted);
      padding: 10px 14px;
      background: rgba(201,168,76,0.05);
      border-left: 2px solid var(--gold);
      transition: all 0.3s;
    }
    .country-item:hover {
      background: rgba(201,168,76,0.1);
      color: var(--text);
    }

    /* ===== TESTIMONIALS ===== */
    .card-img {
    width: 100%;
    height: 370px;
    object-fit: cover; /* évite la déformation */
    }
    .testimonials {
      padding: 120px 5%;
      max-width: 1400px; margin: 0 auto;
    }
    .testimonials-header { text-align: center; margin-bottom: 60px; }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--dark-3);
      padding: 40px 32px;
      position: relative;
      border-top: 2px solid var(--gold);
    }
    .quote-mark {
      font-family: 'DM Serif Display', serif;
      font-size: 72px; color: var(--gold-dim);
      line-height: 0.6; margin-bottom: 20px;
    }
    .testimonial-text {
      font-size: 15px; line-height: 1.75; color: var(--text-muted);
      font-style: italic; margin-bottom: 28px;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 14px;
    }
    .author-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--gold-dim); border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
    }
    .author-name { font-weight: 700; font-size: 18px; margin-bottom: 3px; margin-top: 20px; }
    .author-role { font-size: 14px; color: var(--gold); letter-spacing: 1px; }

    /* ===== PARTNERS ===== */
    .partners {
      padding: 80px 5%;
      background: var(--dark-2);
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .partners-inner { max-width: 1400px; margin: 0 auto; }
    .partners-label {
      text-align: center;
      font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 40px;
    }
    .partners-logos {
      display: flex; justify-content: center; align-items: center;
      gap: 60px; flex-wrap: wrap;
    }
    .partner-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px; letter-spacing: 3px;
      color: rgba(232,224,208,0.2);
      transition: color 0.3s;
    }
    .partner-logo:hover { color: var(--gold); }

    /* ===== CONTACT ===== */
    .contact {
      padding: 120px 5%;
      position: relative; overflow: hidden;
    }
    .contact::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 0% 100%, rgba(26,107,60,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
    }
    /* .contact-inner {
      max-width: 1400px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 80px; position: relative;
    } */
  
    .contact-inner {
      max-width: 800px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr;  /* ← une seule colonne */
      gap: 48px; position: relative;
    }
    .contact-info .section-title { margin-bottom: 20px; }
    .contact-desc {
      color: var(--text-muted); font-size: 16px; line-height: 1.8;
      margin-bottom: 40px;
    }
    .contact-details { display: flex; flex-direction: column; gap: 20px; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 16px;
    }
    .contact-icon {
      width: 44px; height: 44px; background: var(--gold-dim);
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .contact-item-label {
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 4px;
    }
    .contact-item-value { font-size: 15px; color: var(--text-muted); }
    .contact-form { display: flex; flex-direction: column; gap: 20px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group label {
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--text-muted);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--dark-3);
      border: 1px solid rgba(232,224,208,0.1);
      color: var(--text); padding: 14px 18px;
      font-family: 'Outfit', sans-serif; font-size: 15px;
      outline: none; transition: border-color 0.3s;
      width: 100%;
    }
    .form-group select option { background: var(--dark-3); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(138,128,112,0.6); }

    /* ===== FOOTER ===== */
    footer {
      background: #030709;
      padding: 80px 5% 32px;
      border-top: 1px solid rgba(201,168,76,0.15);
    }
    .footer-inner {
      max-width: 1400px; margin: 0 auto;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px; margin-bottom: 60px;
    }
    .footer-brand p {
      font-size: 14px; color: var(--text-muted);
      line-height: 1.8; margin-top: 20px; max-width: 280px;
    }
    .footer-col h4 {
      font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 24px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col a {
      font-size: 14px; color: var(--text-muted);
      text-decoration: none; transition: color 0.3s;
    }
    .footer-col a:hover { color: var(--text); }
    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom p { font-size: 13px; color: var(--text-muted); }
    .social-links { display: flex; gap: 14px; }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; color: var(--text-muted); text-decoration: none;
      transition: all 0.3s;
    }
    .social-link:hover {
      border-color: var(--gold); color: var(--gold);
      background: var(--gold-dim);
    }

    /* ===== MOBILE NAV ===== */
    .mobile-nav {
      position: fixed; inset: 0;
      background: rgba(5,10,15,0.97);
      z-index: 200;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center; gap: 32px;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      backdrop-filter: blur(20px);
    }
    .mobile-nav.open { transform: translateX(0); }
    .mobile-nav a {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px; letter-spacing: 4px;
      color: var(--text); text-decoration: none;
      transition: color 0.3s;
    }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-close {
      position: absolute; top: 28px; right: 5%;
      font-size: 32px; color: var(--gold); cursor: pointer;
      background: none; border: none;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* HERO */
/* .flyer {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  margin: 10px;
} */

/* IMAGE */
/* .flyer-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* évite déformation */
  /* top: 0;
  left: 0;
  z-index: 0;
}  */

/* OVERLAY */
/* .flyer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 102, 0, 0.6),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
} */

/* CONTENT */
/* .flyer-content {
  position: relative;
  z-index: 2;
  height: 100%;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  text-align: center;
  padding: 20px;

  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.15; margin-bottom: 24px;
  color: var(--text);
}
.flyer-content em { color: var(--gold); font-style: italic; } */


/* TITRE */
/* .flyer-content h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
} */

/* TEXTE */
/* .flyer-content p {
  max-width: 600px;
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
} */

/* BOUTON
.flyer-btn {
  background: #ff6600;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.flyer-btn:hover {
  background: #e65c00;
  transform: translateY(-2px);  
} */
 
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-img {
    width: 100%;
    opacity: 1;
    top: -15;
    bottom: -5;
    height: 55%;
    right: 0;
  }
  .hero-img img {
    mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.85) 30%, transparent 100%);
    object-position: center top;
    filter: saturate(0.8) brightness(0.55);
  }
  .hero-overlay {
    background: linear-gradient(to bottom, #050A0F 35%, rgba(5,10,15,0.4) 70%, transparent 100%);
  }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  .players-grid { grid-template-columns: 1fr 1fr; }
  .players-grid .player-card.featured { grid-column: 1 / 3; }
  .africa-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .players-header { flex-direction: column; gap: 16px; align-items: flex-start; }
}
 
/* ===== HERO MOBILE — image à droite du texte ===== */
@media (max-width: 768px) {
  .hero {
    align-items: center;
  }
  .hero-content {
    padding: 0 4%;
    max-width: 55%;
    z-index: 2;
  }
  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }
  .hero-subtitle {
    font-size: 15px;
    line-height: 2.0;
  }
  .hero-img {
    width: 42%;
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    right: 0;
    opacity: 1;
  }
  .hero-img img {
    mask-image: linear-gradient(to left, rgba(0,0,0,0.95) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.95) 50%, transparent 100%);
    object-position: center top;
    filter: saturate(0.85) brightness(0.6);
  }
  .hero-overlay {
    background: linear-gradient(to right, #050A0F 40%, transparent 80%);
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary,
  .btn-outline {
    padding: 12px 20px;
    font-size: 11px;
    text-align: center;
    justify-content: center;
  }
  .hero-stats {
    bottom: 20px;
    gap: 16px;
  }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 9px; }
}
 
@media (max-width: 768px) {
  .flyer {
    height: auto;
    margin: 20px;
  }

  .flyer-content h1 {
    font-size: 28px;
  }

  .flyer-content p {
    font-size: 14px;
  }

  .flyer-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
} 

/* ===== LIGHTBOX ===== */
.lightbox-trigger {
  cursor: zoom-in;
  transition: opacity 0.3s;
}
.lightbox-trigger:hover { opacity: 0.85; }

.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.25s ease;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: zoomIn 0.3s ease;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 32px;
  cursor: pointer; line-height: 1;
  opacity: 0.7; transition: opacity 0.2s;
  z-index: 10000;
}
.lightbox-close:hover { opacity: 1; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}