/*  REGLAGES GENERAUX................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  background-color: black;
}

main {
  width: 100%;
  flex: 1;
}

/* SCROLL ANCRE CATEGORIES....................................................... */

#teamSponsors,
#ourStory,
#teamMembers,
#teamGallery {
  scroll-margin-top: 100px;
}

/* FONT AWESOME...................................................................................................................... */

@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

/* GOOGLE FONTS...................................................................................................................... */

@font-face {
  font-family: "Lato";
  src: url("../webfonts/lato-v25-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Passion One";
  src: url("../webfonts/passion-one-v20-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Permanent Marker";
  src: url("../webfonts/permanent-marker-v16-latin-regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik Spray Paint";
  src: url("../webfonts/rubik-spray-paint-v1-latin-regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*  HEADER / BARRE NAVIGATION........................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.header-site {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.barre-nav {
  height: 120px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0px 50px;

  background-color: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid rgb(111, 93, 0);

  z-index: 9999;

  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;

  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out,
    background-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.barre-nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.barre-nav.is-scrolling-down {
  background-color: rgba(11, 11, 11, 0.65);
  backdrop-filter: blur(3px);
}

.barre-nav.is-scrolling-up {
  background-color: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(6px);
}

/* LOGO HEADER GAUCHE............................................................ */

.logo-header {
  background: url(.//PICS/logoX.webp) no-repeat;
  background-position: center;
  background-size: 100%;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.2s ease,
    transform 0.3s ease;
}

/* Scroll DOWN → logo discret */
.barre-nav.is-scrolling-down .logo-header {
  opacity: 0;
  transform: translateY(-5px);
}

/* Scroll UP → logo visible */
.barre-nav.is-scrolling-up .logo-header {
  opacity: 1;
  transition: 0.3s ease-in-out;
  transform: translateY(0);
}

/* LIENS HEADER CENTRE........................................................... */

.links-header {
  display: flex;
  align-items: center;
  gap: 80px;
  list-style: none;
  margin-right: 100px;
}

.links-header li {
  position: relative;
  display: flex;
  align-items: center;
}

.links-header li a {
  font-size: 25px;
  text-decoration: none;
  color: white;
  font-family: "Passion One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0px 0px 20px #6f5d00;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  z-index: 9999;
  text-align: center;
}

.links-header li a:hover {
  color: #ebc400;
}

/* LOGO LIENS CENTRE............................................................... */

.logo-story-1 {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/football\ ball.svg);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.logo-story-2 {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  background-image: url(.//SVG/team.svg);
}

.logo-story-3 {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/shirt.svg);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.logo-story-4 {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/galleryLogo.svg);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.links-header li:hover .logo-story-1 {
  opacity: 0.5;
}
.links-header li:hover .logo-story-2 {
  opacity: 0.5;
}

.links-header li:hover .logo-story-3 {
  opacity: 1;
}

.links-header li:hover .logo-story-4 {
  opacity: 0.9;
}

/* BOUTON CTA DROITE................................................................ */

.liens-nav-header {
  display: flex;
  gap: 25px;
  align-items: center;
}
.cta-header {
  background-color: transparent;
  padding: 5px;
  font-size: 18px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: "Passion One", sans-serif;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

.cta-header:hover {
  color: rgb(235, 196, 0);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/*  MAIN ............................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

/*  HERO SITE........................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.hero-site {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 200px 350px 20px 200px;
  position: relative;
  overflow: hidden;
}

.hero-site > * {
  position: relative;
  z-index: 1;
}

.hero-site img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  object-position: center 0%;
}

/* HERO H1......................................................................... */

.hero-h1 {
  font-size: 170px;
  font-family: "Permanent Marker", sans-serif;
  color: rgb(235, 196, 0);
  margin: 0;
  animation: fadeInOnly 2s ease-out forwards;
  animation-delay: 1s, 3s; /* X&3K apparaît après "l'équipe" (3s) */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out;
  line-height: 0; /* Supprime l'espace vertical */
  margin: 70px 0px 70px 250px;
  position: relative;
  text-shadow: 0px 0px 15px black;
}

.hero-h1 strong {
  font-family: "Rubik Spray", sans-serif;
  font-size: 110px;
  position: absolute;
  color: rgba(0, 0, 0, 0.838);
  left: 22%;
  animation: rotateSign 0.8s ease-in-out forwards;
  animation-delay: 3s;
  transition:
    opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out;
  transform-origin: center;
  transform: rotate(0deg);
  text-shadow: 0px 0px 5px #ebc400;
}

.hero-h1-texte {
  font-size: 100px;
  font-family: "Permanent Marker", sans-serif;
  color: white;
  letter-spacing: 3px;
  text-shadow: 0px 0px 10px black;
  animation: stampEffect 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  line-height: 0.8;
  margin-top: -70px;
  animation-delay: 0s;
}

/* HERO INSTRUCTIONS................................................................ */

.scroll-down-instruction {
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-style: italic;
  animation: clignoter 4.5s ease-in-out 2s infinite;
  opacity: 0;
  animation:
    fadeInOnly 1s ease-out 1.5s forwards,
    clignoter 3s ease-in-out 3s infinite;
  text-shadow: 0px 0px 2px white;
  position: absolute;
  bottom: 3%;
  left: 43%;
}

/* HERO RESEAUX INSTAGRAM......................................................... */

.lienReseaux-hero {
  text-decoration: none;
  color: #ebc400;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: bold;
  margin-top: 10px;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 2.5s;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease-in-out,
    transform 0.8s ease-in-out;
  padding: 8px 15px;
  border-radius: 25px;
  margin-left: 550px;
  margin-top: -20px;
}

.lienReseaux-hero:hover {
  transition: 0.2s ease-in-out;
  color: orangered;
}

/*  SECTION BANNIERE OUR STORY (TEXTE)............................................................................................................................... */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.our-story {
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 2px solid rgb(111, 93, 0);
  border-bottom: 2px solid rgb(111, 93, 0);
  background: #6f5d00;
  background: linear-gradient(
    351deg,
    rgba(32, 31, 7, 0.366) 0%,
    rgba(38, 38, 19, 0.6) 47%,
    rgba(38, 36, 12, 0.61) 74%,
    rgba(102, 99, 21, 0.327) 100%
  );
}

.our-story h2 {
  font-size: 50px;
  color: rgb(235, 196, 0);
  font-family: "Passion One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
  text-decoration-color: #6f5d00;
  display: inline-block;
  margin-bottom: 50px;
}

/* CAROUSEL CONTAINER .....................................................*/

.story-carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.story-carousel.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CONTAINER POUR FLÈCHE + TEXTE ...........................................*/

.carousel-arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.carousel-arrow-text {
  color: #ebc400;
  font-family: "Permanent Marker", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 20px;
}

.carousel-content {
  position: relative;
  width: 70%;
  min-height: 300px;
}

.story-slide {
  color: white;
  font-size: 20px;
  font-family: "Lato", sans-serif;
  line-height: 1.8em;
  letter-spacing: 1px;
  text-align: justify;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s 0.4s;
  pointer-events: none;
}

.story-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  padding: 0px 80px;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s;
}

/* STYLES POUR TOUS LES SLIDES (pas seulement .active)..................... */

.story-slide strong {
  color: #ebc400;
}

.story-slide .strongName {
  color: #ebc400;
  font-style: italic;
}

.story-slide em {
  font-style: italic;
}

.story-slide a {
  color: #ebc400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.story-slide a:hover {
  color: rgb(0, 106, 255);
}

/* FLÈCHES DU CAROUSEL...................................................... */

.carousel-arrow {
  width: 50px;
  height: 50px;
  background-color: black;
  border: 2px solid #ebc400;
  border-radius: 50%;
  color: #ebc400;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  transform: scale(1.1);
  background-color: #ebc400;
  color: black;
  box-shadow: 0px 0px 15px #ebc400;
}

.carousel-arrow:active {
  transform: scale(0.95);
}

/* INDICATEURS ...............................................................*/

.carousel-indicators {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease-out 0.3s,
    transform 1s ease-out 0.3s;
}

.carousel-indicators.visible {
  opacity: 1;
  transform: translateY(0);
}

.indicator {
  width: 12px;
  height: 12px;
  background-color: rgba(235, 196, 0, 0.3);
  border: 2px solid #ebc400;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.indicator:hover {
  transform: scale(1.2);
}

.indicator.active {
  background-color: #ebc400;
  box-shadow: 0px 0px 10px #ebc400;
}

/*  SECTION X TEAM (EQUIPE ET STATS)................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.x-team {
  display: flex;
  flex-direction: column;
  padding: 0px 50px 100px 50px;
  position: relative;
  overflow: hidden;
}

.x-team img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.titleSection {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 50px 0px;
  text-shadow: 0px 0px 5px rgb(76, 76, 76);
}

.x-team h2 {
  font-size: 90px;
  color: white;
  font-family: "Passion One", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.legende1 {
  color: white;
  font-size: 20px;
  font-style: italic;
  font-family: "Lato", sans-serif;
  text-shadow: 0px 0px 5px rgb(235, 196, 0);
  animation-duration: 3s;
  animation-name: clignoter;
  animation-iteration-count: infinite;
  transition: none;
  animation-delay: 3s;
}

/* PLAYER GRID (TITRES ET POSITIONS)................................................. */

.positionSection {
  display: flex;
  width: 100%;
  align-items: center;
}

#reserve-team {
  margin: 100px 0px 50px 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  text-transform: lowercase;
  color: rgb(206, 206, 206);
}

.posTitle {
  font-size: 40px;
  color: white;
  font-family: "Permanent Marker", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-style: italic;
}

.posTitle::first-letter {
  font-size: 90px;
  color: rgb(235, 196, 0);
}

/* PLAYER GRID (VIGNETTES JOUEURS).................................................... */

.players-grid {
  display: grid;
  gap: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
}

.img-player-mini {
  height: 150px;
  width: 150px;
  border: 3px solid rgb(235, 196, 0);
  border-radius: 50%;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.img-player-mini:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 15px 0px rgb(235, 196, 0);
}

.position-player-mini {
  color: rgb(235, 196, 0);
  font-size: 20px;
  font-family: "Passion One", sans-serif;
  background-color: rgb(30, 30, 30);
  width: 100%;
  text-align: center;
  padding: 8px;
  border: 1px solid #6f5c0092;
}

/* PLAYER GRID (IMAGES JOUEURS).......................................................................................................................................*/
/* .................................................................................................................................................................. */

/* GOALKEEPER....................................................................... */

/* ...........................................................HICHAM SABIR (NO PIC) */

#joueur1 {
  background: url(.//PICS/HichamSabir.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgb(33, 33, 33);
}

/* DEFENDERS........................................................................ */

/* .......................................................CYRIL JOUSSELIN (NO PIC) */

#joueur2 {
  background: url(.//SVG/person.svg) no-repeat;
  background-position: center;
  background-size: 70%;
  background-color: rgb(33, 33, 33);
}

/* .................................................................RODRIGUE MONGO */

#joueur3 {
  background: url(.//PICS/Vignette3RodrigueMongo.webp) no-repeat;
  background-position-x: 2px;
  background-position-y: 2px;
  background-size: 90%;
  background-position-x: 8px;
  background-color: white;
}

/* .................................................................THIBAULT DUPUIS */

#joueur4 {
  background: url(.//PICS/Vignette4ThibaultDupuis.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 90%;
  background-color: white;
  background-position-y: 0px;
}

/* ...................................................................MARTIN VALERA */

#joueur5 {
  background: url(.//PICS/Vignette5MartinValera.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 75%;
  background-color: white;
  background-position-y: 3px;
}

/* .................................................................RODRIGO BOUABIDA */

#joueur6 {
  background: url(.//PICS/Vignette6RodrigoBouabida.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 79%;
  background-color: white;
  background-position-y: 10px;
}

/* .....................................................................JORY WIELAARD */

#joueur7 {
  background: url(.//PICS/Vignette7joryWielaard.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 90%;
  background-color: white;
  background-position-y: 10px;
  background-position-x: 8px;
}

/* ................................................................AJEL BILAL (NO PIC) */

#joueur8 {
  background: url(.//SVG/person.svg) no-repeat;
  background-position: center;
  background-size: 70%;
  background-color: rgb(33, 33, 33);
}

/* MIDFIELDERS.............................................................. */

/* .................................................................VASYL MAKAROVSKIY */

#joueur9 {
  background: url(.//PICS/Vignette9Vasyl.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 90%;
  background-color: white;
  background-position-y: 10px;
  background-position-x: 7px;
}

/* ..................................................................BALTHAZAR NICOLAS */

#joueur10 {
  background: url(.//PICS/Vignette10NicoB.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 90%;
  background-color: white;
  background-position-y: 10px;
  background-position-x: 7px;
}

/* ......................................................................PASTANT JONAS */

#joueur11 {
  background: url(.//PICS/Vignette11JonasPastant.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 100%;
  background-color: white;
  background-position-y: 10px;
  background-position-x: 0px;
}

/* ATTAQUANTS................................................................................... */

/* ..........................................................PAPAKONKANSTINOU APOSTOLIS */

#joueur12 {
  background: url(.//PICS/Vignette12Apostolis.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 65%;
  background-color: white;
  background-position-y: 12px;
  background-position-x: 24px;
}

/* .......................................................................FILIP RENOVCIV */

#joueur13 {
  background: url(.//PICS/Vignette13Filip.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 85%;
  background-color: white;
  background-position-y: 5px;
  background-position-x: 13px;
}

/* RESERVE...................................................................................... */

/* ..............................................................FRANCO PATROSSO (NO PIC)*/

#joueur14 {
  background: url(.//SVG/person.svg) no-repeat;
  background-position: center;
  background-size: 70%;
  background-color: rgb(33, 33, 33);
}

/* ..............................................................VINCENT NGUYEN (NO PIC) */

#joueur15 {
  background: url(.//PICS/Vincent.webp) no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgb(33, 33, 33);
}

/* POP UP ........................................................................................................................................................... */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

/* POP UP OVERLAY............................................. */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* POPUP CONTAINER............................................. */

.popup-container {
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease;
  width: 90%;
  max-height: 80%;
  padding: 0px 0px;
}

.popup-container.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* POP UP BOUTON FERMER......................................... */

.close-popup {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  background-color: rgb(222, 0, 0);
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  font-size: 25px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.close-popup:hover {
  transform: scale(1.15) rotate(90deg);
  background-color: rgb(255, 50, 50);
}

/* CONTAINER PLAYER LINE........................................ */

.player-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 480px;
  padding: 0px;
  gap: 10px;
  color: white;
  background: transparent;
  background-position: center;
  background-size: cover;
  border: 4px solid transparent;
  border-radius: 10px;
  flex-wrap: wrap;
  transition:
    border-color 0.8s ease-in-out,
    background 0.8s ease-in-out;
  overflow: hidden;
}

.player-line.is-revealed {
  border-color: #ebc400;
  background: rgba(0, 0, 0, 0.668);
  background-image: url(.//PICS/terrainNuitStats.webp);
  background-position: bottom;
  background-size: cover;
  background-blend-mode: darken;
}

/* PLAYER LINE LEFT (IMAGES JOUEUR).................................................................................................................................. */

/* .....................................................HICHAM SABIR */

.pl-left-1 {
  height: 480px;
  width: 30%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//SVG/person.svg);
  background-size: 100%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 120px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* .....................................................CYRIL JOUSSELIN */

.pl-left-2 {
  height: 480px;
  width: 30%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//SVG/person.svg);
  background-size: 100%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 120px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* .....................................................RODRIGUE MONGO */

.pl-left-3 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//PICS/SelfiePlayer3RodrigueMongo.webp);
  background-size: 100%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 30px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* ...................................................THIBAULT DUPUIS */

.pl-left-4 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//PICS/SelfiePlayer4ThibaultDupuis.webp);
  background-size: 100%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 30px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* .....................................................MARTIN VALERA */

.pl-left-5 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//PICS/SelfiePlayer5MartinValera.webp);
  background-size: 80%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 30px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* ..................................................RODRIGO BOUABIDA */

.pl-left-6 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//PICS/SelfiePlayer6RodrigoBouabida.webp);
  background-size: 100%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 30px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* ....................................................WIELAARD JORY */

.pl-left-7 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//PICS/SelfiePlayer7joryWielaard.webp);
  background-size: 120%;
  background-color: transparent;
  background-position-x: 0px;
  background-position-y: 10px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* ........................................................AJEL BILEL */

.pl-left-8 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//SVG/person.svg);
  background-size: 100%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 120px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* .................................................VASYL MAKAROVSKIY */

.pl-left-9 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//PICS/SelfiePlayer9Vasyl.webp);
  background-position: center;
  background-size: 100%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 30px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* ................................................BALTHAZAR NICLOAS */

.pl-left-10 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//PICS/SelfiePlayer10NicoB.webp);
  background-position: center;
  background-size: 100%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 30px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* .....................................................PASTANT JONAS */

.pl-left-11 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//PICS/SelfiePlayer11JonasPastant.webp);
  background-position: center;
  background-size: 110%;
  background-color: transparent;
  background-position-x: 20px;
  background-position-y: 10px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* .........................................................APOSTOLIS */

.pl-left-12 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//PICS/SelfiePlayer12Apostolis.webp);
  background-position: center;
  background-size: 70%;
  background-color: transparent;
  background-position-x: 90px;
  background-position-y: 30px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* ...................................................FILIP REVOCECIV */

.pl-left-13 {
  height: 480px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//PICS/SelfiePlayer13Filip.webp);
  background-position: center;
  background-size: 90%;
  background-color: transparent;
  background-position-x: 55px;
  background-position-y: 10px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* ..........................................................RESERVE */
/* ................................................................. */

/* ..................................................FRANCO PATROSSO */

.pl-left-14 {
  height: 480px;
  width: 30%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//SVG/person.svg);
  background-size: 100%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 120px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

.pl-left-15 {
  height: 480px;
  width: 30%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(.//SVG/person.svg);
  background-size: 100%;
  background-color: transparent;
  background-position-x: 40px;
  background-position-y: 120px;
  background-repeat: no-repeat;
  overflow-y: hidden;
}

/* PLAYER LINE RIGHT (STATS)................................................ */

.pl-right {
  display: flex;
  flex-direction: column;
  width: 67%;
  height: 480px;
}

/* STATS CONTAINER TOP....................................................... */

.plr-top {
  height: 30%;
  align-items: center;
  display: flex;
  gap: 25px;
  justify-content: center;
  position: relative;
}

.playerNumero {
  height: 180px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ebc400;
  font-family: "Passion One", sans-serif;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23050505' height='202px' width='202px' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-36.4 -36.4 527.80 527.80' xml:space='preserve' stroke='%23050505'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%236f5d00' stroke-width='8.19'%3E%3Cpath d='M357.642,32.638l-66.814-15.896c0,0-18.622,32.784-63.328,32.784s-63.328-32.784-63.328-32.784L97.358,32.638L0,119.916 l48.555,75.179l48.803-22.87v266.032h260.284V172.225l48.803,22.87L455,119.916L357.642,32.638z'%3E%3C/path%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M357.642,32.638l-66.814-15.896c0,0-18.622,32.784-63.328,32.784s-63.328-32.784-63.328-32.784L97.358,32.638L0,119.916 l48.555,75.179l48.803-22.87v266.032h260.284V172.225l48.803,22.87L455,119.916L357.642,32.638z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  top: 4%;
  left: 1%;
  z-index: 1;
  opacity: 0.8;
}

.PlayerNumeroContent {
  position: absolute;
  left: 33%;
  top: 28%;
  text-shadow: 0px 0px 5px #ebc40085;
  font-size: 24px;
  opacity: 1;
}

.logo-inside {
  background: url(.//PICS/logoX.webp) no-repeat;
  background-position: center;
  background-size: 100%;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.player-position {
  display: flex;
  gap: 30px;
}

.playerTitleSpecial {
  font-family: "Permanent Marker", sans-serif;
  font-size: 21px;
  letter-spacing: 1px;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #ebc400;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1px solid black;
  box-shadow: 0px 0px 8px 0px #ebc400;
  margin-left: 30px;
}

.playerTitle {
  font-family: "Permanent Marker", sans-serif;
  font-size: 21px;
  letter-spacing: 1px;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: black;
  color: rgb(235, 196, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dotted #ebc4009e;
  box-shadow: 0px 0px 8px 0px #ebc400b6;
}

.playerName {
  margin-left: 30px;
  display: flex;
  gap: 10px;
  color: white;
  z-index: 3;
}

.ply-surname {
  font-family: "Passion One", sans-serif;
  font-size: 42px;
}

.ply-name {
  font-family: "Passion One", sans-serif;
  font-size: 42px;
}

.ply-surname-1 {
  font-family: "Passion One", sans-serif;
  font-size: 30px;
}

.ply-name-1 {
  font-family: "Passion One", sans-serif;
  font-size: 30px;
}

.logo-captain {
  position: absolute;
  bottom: 0;
  left: 28.5%;
  font-family: "Passion One", sans-serif;
  font-size: 26px;
  color: orangered;
  letter-spacing: 1px;
  background-color: #0b0b0b;
  padding: 5px 20px;
  box-shadow: 0px 0px 10px 0px orangered;
  border-radius: 10px;
}

/* STATS CONTAINER BOTTOM.................................................... */

.plr-bottom {
  display: flex;
  padding: 15px 50px;
  height: 70%;
  justify-content: center;
  z-index: 2;
}

/* STATS CONTAINER BOTTOM LEFT............................................... */

.plrb-left {
  background-color: black;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 30%;
  padding: 5px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  border-top: 2px solid #ebc400;
  border-left: 2px solid #ebc400;
  border-bottom: 2px solid #ebc400;
  border-right: 2px solid #6f5d00;
}

.plbr-infos {
  display: flex;
  flex-direction: column;
}

.playerTitle-2 {
  font-family: "Passion One", sans-serif;
  font-size: 25px;
  color: white;
  text-transform: uppercase;
  text-shadow: 0px 0px 1px white;
  opacity: 0.8;
}

.playerTitle-3 {
  font-family: "Passion One", sans-serif;
  font-size: 32px;
  color: rgb(235, 196, 0);
  text-align: end;
  padding-right: 10px;
  z-index: 2;
  padding: 5px 0px;
}

.playerTitle-4 {
  font-family: "Passion One", sans-serif;
  font-size: 40px;
  color: white;
  text-align: end;
  padding-right: 10px;
  z-index: 2;
}

/* STATS CONTAINER BOTTOM RIGHT (SOCIAL GATHERING)................. */

.plrb-right {
  background-color: black;
  width: 70%;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 100%;
  border-top: 2px solid #ebc400;
  border-right: 2px solid #ebc400;
  border-bottom: 2px solid #ebc400;
}

.plrb-right-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  font-size: 25px;
  text-transform: uppercase;
  font-family: "Passion One", sans-serif;
  height: 16%;
  text-shadow: 0px 0px 1px white;
  text-shadow: 0px 0px 1px white;
  opacity: 0.8;
  border-bottom: 1px solid #6f5d00;
}

.socialGathering {
  display: flex;
  width: 100%;
  height: 27%;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-left: 35px;
}

.sg-left {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  position: relative;
  width: 25%;
}

/* STATS CONTAINER BOTTOM (LOGOS).............................................. */

.logo-beer {
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg version='1.0' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='100px' height='100px' viewBox='0 0 64 64' enable-background='new 0 0 64 64' xml:space='preserve' fill='' stroke=''%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath fill='%236f5c0092' d='M16,54.003h44V14.922c2.389-1.385,4-3.963,4-6.922c0-4.418-3.582-8-8-8c-2.386,0-4.521,1.051-5.987,2.707 C48.939,1.077,47.097,0,45,0c-1.93,0-3.642,0.914-4.739,2.33C39.544,2.118,38.786,2,38,2c-1.618,0-3.121,0.484-4.38,1.311 C32.175,1.883,30.191,1,28,1c-2.113,0-4.029,0.826-5.459,2.164C21.548,2.436,20.326,2,19,2c-3.313,0-6,2.687-6,6 c0,1.539,0.584,2.938,1.537,4H4c-2.211,0-4,1.789-4,4v30c0,2.211,1.789,4,4,4h12V54.003z M29,47c0,0.553-0.447,1-1,1s-1-0.447-1-1 V21c0-0.553,0.447-1,1-1s1,0.447,1,1V47z M39,47c0,0.553-0.447,1-1,1s-1-0.447-1-1V21c0-0.553,0.447-1,1-1s1,0.447,1,1V47z M49,47 c0,0.553-0.447,1-1,1s-1-0.447-1-1V21c0-0.553,0.447-1,1-1s1,0.447,1,1V47z M19,4c0.839,0,1.616,0.261,2.26,0.703 c0.594,0.407,1.065,0.975,1.369,1.637c0.327-0.662,0.771-1.25,1.308-1.746C25.006,3.607,26.431,3,28,3 c1.583,0,3.02,0.617,4.092,1.62c0.498,0.466,0.917,1.013,1.233,1.623c0.429-0.532,0.948-0.987,1.532-1.348 C35.772,4.331,36.846,4,38,4c0.445,0,0.878,0.053,1.296,0.145c0.675,0.148,1.305,0.412,1.873,0.768 c0.188-0.66,0.524-1.259,0.996-1.732C42.89,2.451,43.892,2,45,2c1.729,0,3.188,1.104,3.747,2.641 c0.08,0.221,0.145,0.449,0.185,0.684c0.503,0.171,0.978,0.402,1.41,0.693c0.143-0.406,0.326-0.79,0.548-1.15 C51.945,3.149,53.836,2,56,2c3.313,0,6,2.686,6,6c0,3.312-2.687,6-6,6c-1.237,0-2.387-0.375-3.343-1.018 c-0.671-0.451-1.242-1.036-1.685-1.714c-0.055,0.819-0.352,1.563-0.825,2.173C49.416,14.383,48.285,15,47,15 c-0.839,0-1.616-0.261-2.26-0.703c-0.594-0.407-1.065-0.975-1.369-1.635c-0.328,0.659-0.772,1.249-1.309,1.743 C40.993,15.393,39.569,16,38,16c-1.583,0-3.02-0.618-4.092-1.619c-0.498-0.467-0.917-1.014-1.233-1.625 c-0.429,0.533-0.948,0.987-1.532,1.348C30.228,14.668,29.153,15,28,15c-2.048,0-3.854-1.028-4.937-2.595 c-0.412-0.596-0.715-1.271-0.89-1.995c-0.437,0.572-1.015,1.027-1.693,1.299C20.021,11.893,19.524,12,19,12c-2.209,0-4-1.791-4-4 S16.791,4,19,4z M8,42V20h8v22H8z'%3E%3C/path%3E%3Cpath fill='%236f5c0092' d='M16,56.003v4c0,2.211,1.789,4,4,4h36c2.211,0,4-1.789,4-4v-4H16z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  z-index: 1;
}

.logo-food {
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg fill='%236f5c0092' width='100px' height='100px' viewBox='0 -3.84 122.88 122.88' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='enable-background:new 0 0 122.88 115.21' xml:space='preserve'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cpath d='M29.03,100.46l20.79-25.21l9.51,12.13L41,110.69C33.98,119.61,20.99,110.21,29.03,100.46L29.03,100.46z M53.31,43.05 c1.98-6.46,1.07-11.98-6.37-20.18L28.76,1c-2.58-3.03-8.66,1.42-6.12,5.09L37.18,24c2.75,3.34-2.36,7.76-5.2,4.32L16.94,9.8 c-2.8-3.21-8.59,1.03-5.66,4.7c4.24,5.1,10.8,13.43,15.04,18.53c2.94,2.99-1.53,7.42-4.43,3.69L6.96,18.32 c-2.19-2.38-5.77-0.9-6.72,1.88c-1.02,2.97,1.49,5.14,3.2,7.34L20.1,49.06c5.17,5.99,10.95,9.54,17.67,7.53 c1.03-0.31,2.29-0.94,3.64-1.77l44.76,57.78c2.41,3.11,7.06,3.44,10.08,0.93l0.69-0.57c3.4-2.83,3.95-8,1.04-11.34L50.58,47.16 C51.96,45.62,52.97,44.16,53.31,43.05L53.31,43.05z M65.98,55.65l7.37-8.94C63.87,23.21,99-8.11,116.03,6.29 C136.72,23.8,105.97,66,84.36,55.57l-8.73,11.09L65.98,55.65L65.98,55.65z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  z-index: 1;
  left: 0;
}

.logo-fun {
  height: 50px;
  width: 50px;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg fill='%236f5c0092' width='100px' height='100px' viewBox='-8 0 512 512' xmlns='http://www.w3.org/2000/svg' stroke='%236f5d00'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cpath d='M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm20.1 198.1c4-25.2 34.2-42.1 59.9-42.1s55.9 16.9 59.9 42.1c1.7 11.1-11.4 18.3-19.8 10.8l-9.5-8.5c-14.8-13.2-46.2-13.2-61 0L288 217c-8.4 7.4-21.6.3-19.9-10.9zM168 160c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm230.9 146C390 377 329.4 432 256 432h-16c-73.4 0-134-55-142.9-126-1.2-9.5 6.3-18 15.9-18h270c9.6 0 17.1 8.4 15.9 18z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  z-index: 1;
}

/* STATS CONTAINER BOTTOM (ETOILES)............................................. */

.sg-right {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: 50%;
}

.sg-right i {
  font-size: 30px;
  color: rgb(235, 196, 0);
  animation: fadeInRight 0.5s ease-out forwards;
  animation-delay: 0.5s; /* Apparaît après X&3K */
  opacity: 0;
}

/* NATIONALITE JOUEURS............................................................................................................................................... */

/* ................................................(MOROCCO) */

.origins {
  display: flex;
  gap: 10px;
}

.nat-morocco {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/morocco.svg);
  z-index: 999999;
}

/* .................................................(FRANCE) */

.nat-france {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/france.svg);
  z-index: 999999;
}

/* ..............................................(CAMEROON) */

.nat-cameroon {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/cameroon.svg);
  z-index: 999999;
}

/* ................................................(UKRAINE) */

.nat-ukraine {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/ukraine.svg);
  z-index: 999999;
}

/* ...................................................(PERU) */

.nat-peru {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/peru.svg);
  z-index: 999999;
}

/* .................................................(BRAZIL) */

.nat-brazil {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/brazil.svg);
  z-index: 999999;
}

/* ............................................(NETHERLANDS) */

.nat-netherlands {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/netherlands.svg);
  z-index: 999999;
}

/* ................................................(TUNISIA) */

.nat-tunisia {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/tunisia.svg);
  z-index: 999999;
}

/* ................................................(GREECE) */

.nat-greece {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/greece.svg);
  z-index: 999999;
}

/* ................................................(SERBIA) */

.nat-serbia {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/serbia.svg);
  z-index: 999999;
}

/* ..............................................(GERMANY) */

.nat-germany {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/germany.svg);
  z-index: 999999;
}

/* .............................................(ARGENTINA) */

.nat-argentina {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/argentina.svg);
  z-index: 999999;
}

/* ...............................................(VIETNAM) */

.nat-vietnam {
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(.//SVG/vietnam.svg);
  z-index: 999999;
}

/* SPONSORS.......................................................................................................................................................... */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.sponsors-paragraph {
  color: white;
  width: 70%;
  font-size: 20px;
  font-family: "Lato", sans-serif;
  line-height: 1.6em;
  letter-spacing: 1px;
  text-align: justify;
  margin: 0 0 40px 0;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.sponsors-paragraph.visible {
  opacity: 1;
  transform: translateY(0);
}

.sponsors-container {
  display: flex;
  align-items: center;
  padding: 20px 0px;
  justify-content: space-around;
  width: 100%;
  gap: 30px;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1s ease-out 0.3s,
    transform 1s ease-out 0.3s;
}

.sponsors-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.sponsors-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  text-decoration: none;
  color: white;
  letter-spacing: 1px;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-style: italic;
}

/* IMAGES SPONSORS ........................................ */

.img-pronk {
  height: 110px;
  width: 210px;
  background-position: center;
  background-size: cover;
  background: url(.//PICS/Sponsor\ 1.webp) no-repeat;
  box-shadow: 0px 0px 5px 0px white;
  border: 2px solid white;
  border-radius: 10px;
}

.img-iw {
  height: 106px;
  width: 287px;
  background-position: center;
  background-size: cover;
  background: url(.//PICS/Sponsor\ 2.webp) no-repeat;
  box-shadow: 0px 0px 0px 0px white;
  border-radius: 10px;
}

.img-pronk:hover,
.img-iw:hover {
  box-shadow: 0px 0px 5px 0px #ebc400;
  transition: 0.1s ease-in-out;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px white;
}

.sponsors-container a:hover {
  color: #ebc400;
  transition: 0.1s ease-in-out;
}

.sponsors-paragraph a {
  color: #ebc400;
  text-decoration: none;
}

.sponsors-paragraph a:hover {
  color: rgb(0, 106, 255);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* GALLERIE PHOTOS................................................................................................................................................... */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.gallery {
  padding: 100px 20px 50px 20px;
  background: #000000;
  position: relative;
}

.gallery-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-carousel-content {
  position: relative;
  width: 100%;
  overflow: hidden;
  flex: 1;
}

.gallery-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s 0.4s;
  pointer-events: none;
}

.gallery-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s;
}

.photo-gallery {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 250px;
  z-index: 1;
  border-radius: 10px;
  border: 2px solid #6f5d00;
  overflow: hidden;
  cursor: pointer;
}

.photo-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  opacity: 0.55;
  transition: opacity 0.2s ease-in-out;
}

.photo-gallery figcaption {
  height: 50px;
  width: 100%;
  background: linear-gradient(
    351deg,
    rgba(38, 38, 38, 0.897) 0%,
    rgba(38, 38, 19, 0.996) 47%,
    rgba(26, 26, 9, 0.87) 74%,
    rgba(31, 31, 31, 0.87) 100%
  );
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  font-family: "Lato", sans-serif;
  font-weight: bold;
}

.photo-gallery:hover figcaption {
  opacity: 1;
}

.photo-gallery:hover img {
  opacity: 1;
}

/* CAROUSEL ARROWS.............................................. */

.carousel-arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin: 0px 20px;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  background-color: black;
  border: 2px solid #ebc400;
  border-radius: 50%;
  color: #ebc400;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.carousel-arrow:hover {
  transform: scale(1.1);
  background-color: #ebc400;
  color: black;
  box-shadow: 0px 0px 15px #ebc400;
}

.carousel-arrow:active {
  transform: scale(0.95);
}

.carousel-arrow-text {
  color: #ebc400;
  font-family: "Permanent Marker", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 20px;
}

/* POPUP GALLERY................................................. */

.popup-gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.popup-gallery-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-gallery-container {
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  width: calc(100% - 200px);
  height: calc(100% - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.popup-gallery-container.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.popup-gallery-image {
  max-width: 100%;
  max-height: calc(100% - 80px);
  object-fit: contain;
  border-radius: 10px;
}

.popup-gallery-caption {
  color: white;
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
  font-family: "Lato", sans-serif;
}

.close-popup-gallery {
  position: absolute;
  top: -1%;
  right: 21%;
  width: 50px;
  height: 50px;
  background-color: rgb(222, 0, 0);
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.close-popup-gallery:hover {
  transform: scale(1.15) rotate(90deg);
  background-color: rgb(255, 50, 50);
}

/* BOUTON RETOUR EN HAUT ............................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.back-to-top-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.back-to-top-container.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top {
  width: 40px;
  height: 40px;
  background-color: black;
  border: 2px solid #ebc400;
  border-radius: 50%;
  padding: 10px;
  color: #ebc400;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background-color: #ebc400;
  color: black;
  box-shadow: 0px 0px 15px #ebc400;
}

.back-to-top-text {
  color: #ebc400;
  font-family: "Passion One", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* FOOTER............................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

.footer-site {
  width: 100%;
  background-color: rgb(11, 11, 11);
  display: flex;
  padding: 10px 50px;
  position: relative;
  border-top: 2px solid rgb(111, 93, 0);
}

/* FOOTER LEFT......................................................... */

.footer-left {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
  justify-content: space-around;
  width: 20%;
}

.footer-left-title {
  display: flex;
  flex-direction: column;
}

.footer-left-title-1 {
  font-size: 50px;
  font-family: "Permanent Marker", sans-serif;
  color: rgb(235, 196, 0);
  text-shadow: 0px 0px 5px rgb(235, 196, 0);
  margin: 0;
  position: relative;
}

.footer-left-title-1 strong {
  font-family: "Rubik Spray", sans-serif;
  color: rgba(0, 0, 0, 0.838);
  -webkit-text-stroke: 0.5px #ebc400;
  font-size: 40px;
}

.footer-left-title-2 {
  font-size: 35px;
  font-family: "Passion One", sans-serif;
  color: white;
  letter-spacing: 3px;
  text-transform: uppercase;
  -webkit-text-stroke: 0.5px rgb(235, 196, 0);
  text-shadow: 0px 0px 10px rgb(235, 196, 0);
  position: absolute;
  top: 31%;
}

/* FOOTER CENTER....................................................... */

.footer-center {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 60%;
  flex-direction: column;
}

.logo-footer {
  background: url(.//PICS/logoX.webp) no-repeat;
  background-position: center;
  background-size: 100%;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  opacity: 0.3;
  position: absolute;
}

.fc-para {
  text-align: center;
  font-size: 15px;
  font-family: "Lato", sans-serif;
  color: white;
  letter-spacing: 1.5px;
  width: 50%;
  z-index: 999;
  line-height: 1.6em;
}

.fc-para strong {
  color: rgb(235, 196, 0);
}

.fc-copyright {
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 9px;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 2px;
  text-align: justify;
  position: absolute;
  bottom: 6%;
}

.fc-copyright em {
  color: rgb(235, 196, 0);
}

/* FOOTER RIGHT........................................................ */

.footer-right {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  width: 20%;
}

.footer-right-title {
  font-family: "Permanent Marker", sans-serif;
  font-size: 30px;
  color: white;
  text-shadow: 0px 0px 5px rgb(235, 196, 0);
  font-style: italic;
}

.footer-right-title::first-letter {
  font-size: 40px;
  color: rgb(235, 196, 0);
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0px;
}

.footer-link-list li {
  list-style-type: none;
}

.footer-link-list li a {
  color: rgb(190, 190, 190);
  font-family: "Passion One", sans-serif;
  font-size: 19px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-link-list li a:hover {
  color: rgb(235, 196, 0);
  transition: 0.1s all ease-in-out;
}

/*  ANIMATIONS....................................................................................................................................................... */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

/* ÉTATS INITIAUX - Cacher tous les éléments avant animation */

.player-line .pl-left-1,
.player-line .pl-left-2,
.player-line .pl-left-3,
.player-line .pl-left-4,
.player-line .pl-left-5,
.player-line .pl-left-6,
.player-line .pl-left-7,
.player-line .pl-left-8,
.player-line .pl-left-9,
.player-line .pl-left-10,
.player-line .pl-left-11,
.player-line .pl-left-12,
.player-line .pl-left-13,
.player-line .pl-left-14,
.player-line .pl-left-15 {
  opacity: 0;
}

.player-line .playerNumero {
  opacity: 0;
}

.player-line .ply-surname,
.player-line .ply-name {
  opacity: 0;
}

.player-line .playerTitleSpecial {
  opacity: 0;
}

.player-line .playerTitle {
  opacity: 0;
}

.player-line .nat-morocco,
.player-line .nat-france,
.player-line .nat-cameroon,
.player-line .nat-ukraine,
.player-line .nat-peru,
.player-line .nat-brazil,
.player-line .nat-netherlands,
.player-line .nat-tunisia,
.player-line .nat-greece,
.player-line .nat-serbia,
.player-line .nat-germany,
.player-line .nat-argentina,
.player-line .nat-vietnam {
  opacity: 0;
}

.player-line .sg-right i {
  opacity: 0;
}

/* IMPORTANT : Les infos (Year, Height, Weight) sont VISIBLES dès le départ */

.player-line .plbr-infos {
  opacity: 1;
}

/* IMPORTANT : playerTitle-2 est VISIBLE dès le départ */

.player-line .playerTitle-2 {
  opacity: 1;
}

/* playerTitle-3 reste caché au début */

.player-line .playerTitle-3 {
  opacity: 0;
}

.logo-captain {
  opacity: 0;
}

/* CLASSES D'ANIMATION ACTIVÉES */

.player-line.animate .pl-left-1,
.player-line.animate .pl-left-2,
.player-line.animate .pl-left-3,
.player-line.animate .pl-left-4,
.player-line.animate .pl-left-5,
.player-line.animate .pl-left-6,
.player-line.animate .pl-left-7,
.player-line.animate .pl-left-8,
.player-line.animate .pl-left-9,
.player-line.animate .pl-left-10,
.player-line.animate .pl-left-11,
.player-line.animate .pl-left-12,
.player-line.animate .pl-left-13,
.player-line.animate .pl-left-14,
.player-line.animate .pl-left-15 {
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0s;
}

.player-line.animate .playerNumero {
  animation: fadeInUp 0.5s ease-out forwards;
  animation-delay: 0.5s;
}

.player-line.animate .ply-surname,
.player-line.animate .ply-name {
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.8s;
}

.player-line.animate .nat-morocco,
.player-line.animate .nat-france,
.player-line.animate .nat-cameroon,
.player-line.animate .nat-ukraine,
.player-line.animate .nat-peru,
.player-line.animate .nat-brazil,
.player-line.animate .nat-netherlands,
.player-line.animate .nat-tunisia,
.player-line.animate .nat-greece,
.player-line.animate .nat-serbia,
.player-line.animate .nat-germany,
.player-line.animate .nat-argentina,
.player-line.animate .nat-vietnam {
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 1.5s;
}

.player-line.animate .playerTitleSpecial {
  animation:
    fadeIn 0.8s ease-out forwards,
    heartbeat3 3s ease-in-out infinite;
  animation-delay: 2s, 4.3s;
}

.player-line.animate .playerTitle {
  animation: fadeInRight 0.8s ease-out forwards;
}

.player-line.animate .player-position .playerTitle:nth-of-type(2) {
  animation-delay: 2.2s;
}

.player-line.animate .player-position .playerTitle:nth-of-type(3) {
  animation-delay: 2.5s;
}

/* Les infos restent visibles, pas d'animation */
.player-line.animate .plbr-infos {
  opacity: 1;
}

/* playerTitle-2 reste visible */
.player-line.animate .playerTitle-2 {
  opacity: 1;
}

/* Animation UNIQUEMENT pour playerTitle-3 */
.player-line.animate .plbr-infos:nth-of-type(1) .playerTitle-3 {
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 3s;
}

.player-line.animate .plbr-infos:nth-of-type(2) .playerTitle-3 {
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 3.2s;
}

.player-line.animate .plbr-infos:nth-of-type(3) .playerTitle-3 {
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 3.4s;
}

/* Animation des étoiles - géré par JS */
.player-line.animate .sg-right i {
  animation: fadeIn 0.3s ease-out forwards;
}

.player-line.animate .logo-captain {
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 2s;
}

/*  KEYFRAMES........................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

/* ELLIPSE............................................................ */

@keyframes ellipse {
  0%,
  100% {
    border-radius: 50%;
  }
  50% {
    border-radius: 50% 50% 40% 40%;
  }
}

/* FADE IN LEFT........................................................ */

@keyframes fadeinleft {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* FADE IN BOTTOM...................................................... */

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEARTBEAT........................................................... */

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* HEARTBEAT 2......................................................... */

@keyframes heartbeat2 {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* EFFET TAMPON......................................................... */

@keyframes stampEffect {
  0% {
    opacity: 0;
    transform: scale(3);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* CLIGNOTER...................................................... */

@keyframes clignoter {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* FADE IN ONLY................................................... */

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

/* ROTATION....................................................... */

@keyframes rotateSign {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-10deg); /* 360° + 30° = rotation + inclinaison finale */
  }
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  10%,
  30% {
    transform: scale(1.1);
  }
  20%,
  40% {
    transform: scale(1);
  }
}

/* ANIMATIONS KEYFRAMES */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* HEARTBEAT PLAYER TITLE SPECIAL */

@keyframes heartbeat3 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  0% {
    transform: scale(1);
  }
}

/*  RESPONSIVE DESIGN................................................................................................................................................ */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

/* STYLE NON APPLIQUES AU DESKTOP !!!! ...................................... */

@media (min-width: 481px) {
  .gallery-instructions {
    display: none;
  }

  .hamburger-btn {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    position: static;
    width: auto;
    height: auto;
    background: none;
    border: none;
    padding: 0;
  }

  .links-header {
    flex-direction: row;
  }
}

.mobile-contact-btn {
  position: fixed;
  bottom: 20px;
  left: 10px;
  z-index: 9999;
  display: none;
}

/*  RESPONSIVE MOBILE (480 PX)....................................................................................................................................... */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */
/* .................................................................................................................................................................. */

@media (max-width: 480px) {
  /* REGLAGES GLOBAUX.................................................................................................................................................. */
  /* .................................................................................................................................................................. */
  /* .................................................................................................................................................................. */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    display: flex;
    flex-direction: column;
    touch-action: pan-y;
  }

  main {
    width: 100%;
    flex: 1;
  }

  #teamSponsors,
  #ourStory,
  #teamMembers,
  #teamGallery {
    scroll-margin-top: 80px;
  }

  /* HEADER.......................................................................................................................................................... */
  /* ................................................................................................................................................................ */
  /* ................................................................................................................................................................ */

  /* .............................................................BARRE NAV */

  .barre-nav {
    height: 80px;
    padding: 15px;
    justify-content: space-between;
  }

  .logo-header {
    width: 45px;
    height: 45px;
    z-index: 10001;
  }

  /* BOUTON HAMBURGER...................................................... */

  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 23px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
  }

  .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #ebc400;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  /* ANIMATION HAMBURGER............................................ → X */

  .hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }

  .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }

  /* MENU MOBILE (caché par défaut) .....................................*/

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 80vh;
    background-color: #0b0b0b;
    border-bottom: 2px solid #6f5d00;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 10px;
    z-index: 10000;
    transition: right 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  /* LIENS MENU MOBILE */

  .links-header {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-right: 0px;

  }

  .links-header li {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .links-header li a {
    font-size: 22px;
    display: block;
    padding: 14px 0;
  }

  /* CACHE LES ICÔNES SUR MOBILE.................................. */

  .logo-story-1,
  .logo-story-2,
  .logo-story-3,
  .logo-story-4 {
    display: none;
  }

  /* BOUTON CTA MOBILE............................................. */
  .liens-nav-header {
    flex-direction: column;
    gap: 10px;
  }

  .cta-header {
    font-size: 14px;
    padding: 10px 20px;
    text-align: center;
  }

  /* OVERLAY (fond sombre) .........................................*/

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
      min-height: 100vh;   /* fallback */
  min-height: 100dvh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* HERO SITE....................................................................................................................................................... */
  /* ................................................................................................................................................................ */
  /* ................................................................................................................................................................ */

  .hero-site {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    gap: 30px;
    background-color: rgba(0, 0, 0, 0.563);
    background-position-x: 39%;
    background-size: cover;
  }

  /* HERO SITE IMAGE............................................................. */

  .hero-site img {
      object-fit: 50%;   /* 👈 dézoome */

    object-position: center bottom; /* ou center 30% */
    height: 100%;
    width: 100%;
  }

  /* HERO H1.................................................................X&3K */

  .hero-h1 {
    font-size: 100px;
    margin: 0px;
  }

  .hero-h1 strong {
    font-size: 70px;
  }

  /* HERO H1..............................................................LEQUIPE */

  .hero-h1-texte {
    font-size: 80px;
    letter-spacing: 1px;
    margin: 30px 0px 0px 0px;
  }

  /* ...............................................HERO SCROLL DOWN INSTRUCTIONS */

  .scroll-down-instruction {
    font-size: 12px;
    position: absolute;
    bottom: 1%;
    left: 29.2%;
  }

  /* ................................................................HERO RESEAUX */

  .lienReseaux-hero {
    margin-left: 0px;
    margin-top: 0px;
    font-size: 10px;
    font-size: 13px;
  }

  /*  SECTION BANNIERE OUR STORY (TEXTE)............................................................................................................................. */
  /* ................................................................................................................................................................ */
  /* ................................................................................................................................................................ */

  .our-story {
    padding: 50px 10px 20px 10px;
    min-height: 90vh;
    position: relative;
  }

  .our-story h2 {
    font-size: 40px;
    margin-bottom: 40px;
  }

  /* CAROUSEL STORY................................................ */

  .story-carousel {
    flex-direction: column;
    gap: 20px;
  }

  .carousel-arrow-container {
    display: none;
  }

  .carousel-content {
    width: 100%;
    min-height: auto;
    order: 1;
  }

  .story-slide {
    font-size: 16px;
    line-height: 1.8em;
    text-align: justify;
  }

  .story-slide.active {
    padding: 0px 20px;
  }

  .carousel-indicators {
    position: absolute;
    gap: 10px;
    order: 3;
    bottom: 4%;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  /*  SECTION X TEAM (EQUIPE ET STATS)............................... */

  .x-team {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .titleSection {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .x-team h2 {
    font-size: 40px;
    margin: 0px;
  }

  .legende1 {
    font-size: 14px;
  }

  .positionSection {
    margin: 0px 0px;
  }

  .posTitle {
    width: 100%;
    font-size: 22px;
    display: flex;
    justify-content: center;
  }

  /* VIGNETTE JOEURS DISPLAY.............................. */

  #reserve-team {
    margin: 0px;
    color: white;
  }

  #joueur3 {
    background-position-x: 6px;
    background-position-y: 1px;
    background-size: 90%;
    background-color: white;
  }

  #joueur4 {
    background-position-x: 6px;
    background-position-y: -1px;
    background-size: 90%;
    background-color: white;
  }

  #joueur6 {
    background-position-x: 6px;
    background-position-y: -1px;
    background-size: 90%;
    background-color: white;
  }

  #joueur7 {
    background-position-x: 1px;
    background-position-y: 2px;
    background-size: 99%;
    background-color: white;
  }

  #joueur9 {
    background-position-x: 1px;
    background-position-y: -2px;
    background-size: 99%;
    background-color: white;
  }

  #joueur10 {
    background-position-x: 1px;
    background-position-y: -2px;
    background-size: 99%;
    background-color: white;
  }

  #joueur11 {
    background-position-x: -1px;
    background-position-y: 2px;
    background-size: 100%;
    background-color: white;
  }

  #joueur12 {
    background-position-x: 15px;
    background-position-y: 2px;
    background-size: 68%;
    background-color: white;
  }

  #joueur13 {
    background-position-x: 7px;
    background-position-y: -2px;
    background-size: 88%;
    background-color: white;
  }

  /* PLAYER GRID (VIGNETTES JOUEURS)......................... */

  .players-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
  }

  .img-player-mini {
    width: 100px;
    height: 100px;
    border-width: 2px;
  }

  .position-player-mini {
    font-size: 16px;
    padding: 8px 16px;
  }

  /* POP UP............................................... */

  .popup-overlay {
    background-color: rgba(0, 0, 0, 0.95);
    min-height: 100vh;
    min-height: 100dvh;
  }

  /* POPUP CONTAINER...................................... */
  /* ..................................................... */

  .popup-container {
    top: 55%;
    width: 95%;
    max-width: 95%;
    padding: 0px 0px;
  }

  /* BOUTON FERMER .........................................*/

  .close-popup {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 20px;
    border: 2px solid white;
    z-index: 10001;
  }

  /* PLAYER LINE - CONTAINER PRINCIPAL...................... */

  .player-line {
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding: 0;
    gap: 0px;
    border: 2px solid #ebc400;
  }

  .player-line.is-revealed {
    height: 100%;
  }

  /* PHOTO JOUEURS POP UP STATS.......................... */

  .pl-left-1,
  .pl-left-2,
  .pl-left-3,
  .pl-left-4,
  .pl-left-5,
  .pl-left-6,
  .pl-left-7,
  .pl-left-8,
  .pl-left-9,
  .pl-left-10,
  .pl-left-11,
  .pl-left-12,
  .pl-left-13,
  .pl-left-14,
  .pl-left-15 {
    width: 100%;
    height: 180px;
    background-position: right;
    background-size: 40%;
    background-repeat: no-repeat;
    order: 1;
    padding: 20px;
    left: 30%;
    position: sticky;
    top: 17%;
  }

  .pl-left-5 {
    background-size: 33%;
  }

  .pl-left-6 {
    background-size: 36%;
  }

  .pl-left-12 {
    background-size: 28%;
    left: 25%;
    background-position-x: 92%;
  }

  .pl-left-13 {
    background-size: 34%;
  }

  .pl-left-1,
  .pl-left-2,
  .pl-left-8,
  .pl-left-14 {
    bottom: 0;
    background-position-y: 30px;
  }

  /* STATS EN BAS ................................................ */

  .pl-right {
    width: 100%;
    height: auto;
    order: 2;
    padding: 15px 0px;
  }

  /* TOP SECTION (NUMERO, NOM, NATIONALITE, POSITIONS).............*/

  .plr-top {
    height: auto;
    padding: 0px;
    gap: 10px;
    flex-direction: row;
    align-items: center;
  }

  /* NUMERO MAILLOT - En haut à gauche............................ */

  .playerNumero {
    height: 120px;
    width: 120px;
    padding: 0px;
    margin-right: 30px;
    top: -60px;
  }

  .PlayerNumeroContent {
    font-size: 15px;
    left: 30%;
    top: 28%;
    color: #b19400;
  }

  .logo-inside {
    height: 18px;
    width: 18px;
  }

  /* NOM JOUEUR - Centré.................................................... */

  .playerName {
    margin: 0px 10px;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    padding: 0px 0px;
    justify-content: center;
    position: absolute;
    bottom: 160px;
    left: 20px;
  }

  .ply-surname,
  .ply-name {
    font-size: 35px;
    line-height: 1.1;
    width: 100%;
    text-shadow: 0px 0px 10px black;
  }

  .ply-surname-1,
  .ply-name-1 {
    font-size: 27px;
  }

  /* CAPTAIN BADGE - Sous le nom ..............................*/

  .logo-captain {
    font-size: 15px;
    padding: 13px;
    font-weight: normal;
    position: absolute;
    gap: 5px;
    top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 85px;
    border-radius: 25px;
    text-transform: uppercase;
    color: orangered;
    font-weight: bold;
    box-shadow: none;
  }

  /* DRAPEAUX NATIONALITÉ - Centrés................................. */

  .origins {
    gap: 10px;
    justify-content: center;
    flex-direction: row;
  }

  .nat-morocco,
  .nat-france,
  .nat-cameroon,
  .nat-ukraine,
  .nat-peru,
  .nat-brazil,
  .nat-netherlands,
  .nat-tunisia,
  .nat-greece,
  .nat-serbia,
  .nat-germany,
  .nat-argentina,
  .nat-vietnam {
    height: 35px;
    width: 35px;
  }

  /* POSITIONS JOUEUR............................................... */

  .player-position {
    gap: 12px;
    justify-content: center;
  }

  .playerTitleSpecial {
    height: 35px;
    width: 35px;
    font-size: 10px;
    padding: 10px;
    margin-left: 0;
  }

  .playerTitle {
    height: 35px;
    width: 35px;
    font-size: 10px;
    padding: 10px;
  }

  /* BOTTOM SECTION (STATS)............................................*/

  .plr-bottom {
    flex-direction: column;
    padding: 10px;
    height: auto;
    gap: 15px;
  }

  /* MENSURATIONS..................................................... */

  .plrb-left {
    width: 100%;
    padding: 10px 20px;
    gap: 12px;
    border-radius: 8px;
    border: 2px solid #ebc400;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .plbr-infos {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .playerTitle-2 {
    font-size: 14px;
  }

  .playerTitle-3 {
    font-size: 14px;
    padding: 0;
    text-align: right;
    letter-spacing: 3px;
  }

  /* SOCIAL GATHERING........................................... */

  .plrb-right {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #ebc400;
    padding: 0px;
    justify-content: center;
    margin-top: -20px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-top: none;
  }

  .plrb-right-title {
    font-size: 14px;
    height: auto;
    padding: 5px;
    letter-spacing: 2px;
    color: #ebc400;
    opacity: 1;
    border-top: 1px solid #6f5d00;
  }

  .socialGathering {
    height: auto;
    margin-left: 0;
    padding: 5px 0;
    gap: 10px;
  }

  .sg-left {
    padding: 0;
    justify-content: flex-end;
  }

  .playerTitle-4 {
    font-size: 15px;
    letter-spacing: 3px;
  }

  .logo-beer,
  .logo-food,
  .logo-fun {
    height: 20px;
    width: 20px;
    position: inherit;
  }

  .sg-right {
    gap: 6px;
    justify-content: end;
    padding: 5px 0px;
  }

  .sg-right i {
    font-size: 13px;
  }


  /* SECTION SPONSORS................................... */

  .sponsors-paragraph {
    font-size: 16px;
    line-height: 1.8em;
    padding: 0px 20px;
    width: 100%;
  }

  .sponsors-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0px;
  }

  .sponsors-container a {
    font-size: 16px;
  }

  .img-pronk,
  .img-iw {
    transform: scale(0.7);
  }

  /* GALLERIE PHOTOS .....................................*/

  .gallery {
    padding: 40px 20px 40px 20px;
  }

  .gallery-carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
  }

  .gallery-carousel-content {
    width: 100%;
    order: 1;
    position: relative;
    min-height: 500px;
  }

  .gallery-instructions {
    color: white;
    font-family: "Lato", sans-serif;
    font-size: 13px;
    font-style: italic;
    text-shadow: 0px 0px 2px white;
    animation-duration: 5s;
    animation-name: clignoter;
    animation-iteration-count: infinite;
    transition: none;
    opacity: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  /* Les deux flèches côte à côte.................... */

  .gallery .carousel-arrow-container:nth-child(1) {
    display: none;
  }

  .gallery .carousel-arrow-container:nth-child(3) {
    display: none;
  }

  .gallery-slide {
    gap: 15px;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gallery-slide.active {
    display: flex;
    position: relative;
    opacity: 1;
  }

  .photo-gallery {
    width: 100%;
    max-width: 350px;
    height: 220px;
    flex-shrink: 0;
  }

  .photo-gallery img {
    height: 170px;
    object-fit: cover;
  }

  .photo-gallery figcaption {
    height: 50px;
    font-size: 11px;
    opacity: 1;
  }

  /* INDICATORS GALLERY...................................... */

  .carousel-indicators-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
    order: 3;
    margin-top: 20px;
  }

  .indicator-gallery {
    width: 12px;
    height: 12px;
    background-color: rgba(235, 196, 0, 0.3);
    border: 2px solid #ebc400;
    border-radius: 50%;
    cursor: pointer;
    transition:
      background-color 0.3s ease,
      transform 0.3s ease;
  }

  .indicator-gallery:hover {
    transform: scale(1.2);
  }

  .indicator-gallery.active {
    background-color: #ebc400;
    box-shadow: 0px 0px 10px #ebc400;
  }

  .gallery .carousel-indicators-gallery:nth-child(1) {
    margin-top: -15px;
    padding: 20px 0px;
    margin-bottom: 25px;
  }

  /* POPUP GALLERY...................................... */

  .popup-gallery-container {
    width: calc(100% - 40px);
    height: calc(100% - 100px);
  }

  .popup-gallery-image {
    max-height: calc(100% - 100px);
  }

  .popup-gallery-caption {
    font-size: 14px;
    margin-top: 15px;
  }

  .close-popup-gallery {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  /* BOUTON RETOUR EN HAUT................................. */

  .back-to-top-container {
    bottom: 20px;
    right: 15px;
    z-index: 998;

  }

  .back-to-top {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .back-to-top-text {
    font-size: 11px;
    padding: 5px 10px;
  }

  /* FOOTER ..........................................................................................................................*/

  .footer-site {
    flex-direction: column;
    padding: 30px 20px 20px 20px;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .footer-left {
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
  }

  .footer-left-title-1 {
    font-size: 50px;
    margin-top: 20px;
  }

  .footer-left-title-1 strong {
    font-size: 35px;
  }

  .footer-left-title-2 {
    font-size: 40px;
    position: absolute;
    top: 4%;
    left: 34%;
  }

  .footer-center {
    gap: 20px;
    width: 100%;
    z-index: 2;
    position: relative;
  }

  .logo-footer {
    height: 400px;
    width: 400px;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
  }

  .fc-para {
    font-size: 14px;
    line-height: 1.8em;
    width: 90%;
    text-align: center;
  }

  .fc-copyright {
    font-size: 9px;
    padding: 0px 30px;
    text-align: center;
    font-style: italic;
    position: inherit;
    margin-bottom: 10px;
    line-height: 1.8em;
  }

  .footer-right {
    gap: 5px;
    width: 100%;
    z-index: 2;
    position: relative;
  }

  .footer-right-title {
    font-size: 25px;
  }

  .footer-link-list {
    gap: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .footer-link-list li {
    padding: 10px 0px;
    width: 100%;
  }

  .footer-link-list li a {
    font-size: 17px;
    letter-spacing: 2px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* REGLER LE PETIT DECALAGE EN MOBILE................................... */

@media (max-width: 420px) {
  .hero-site {
    padding: 120px 20px 40px;
  }
}
