body {
  margin: 0;
  font-family: Arimo, Arial, sans-serif;
  overflow-x: hidden;
  color: #333;
}

::selection {
  background-color: #a12222;
  color: rgb(255, 255, 255);
}

::-webkit-scrollbar {
  width: auto;
  background-color: rgb(241, 241, 241);
}

/* Barre de Scroll à droite*/
::-webkit-scrollbar-thumb {
  border: 1px solid rgb(241, 241, 241);
  background-color: var(--mainColor);
}

:root {
  --mainColor: #252428;
  --secondColor: #312f36;
  --textColor: #000000;
  --BackgroundColor: #555555;
}



#Copyright {
  font-size: 18px;
  padding: 20px 35px;
  margin: auto;
  line-height: 22px;
  color: rgba(12, 12, 12, 0.7);
  text-align: center;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
  transition: all 0.3s ease;
}

.navbar.expanded {
  height: 120px;
}

.navbar-item {
  text-align: center;
  color: white;
}

.navbar-item a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: font-size 0.3s ease;
}

.navbar-item span {
  display: block;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar.expanded .navbar-item span {
  opacity: 1;
  font-size: 1.2rem;
}

.navbar-item a:hover {
  font-size: 2.5rem;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000000d0;
}

.header video {
  width: 50%;
  height: 50%;
  object-fit: cover;
}


.overlay{
    margin-left: 5%;
    color: #9c9c9c;
    font-family: Helvetica;
    margin: auto;
    font-size: 1.2em;
}

.overlay h1{
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.section:nth-child(odd) {
  flex-direction: row;
}

.section:nth-child(even) {
  flex-direction: row-reverse;
}

.section img {
  max-width: 50%;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.5s ease-in-out forwards;
}

.section .text {
  max-width: 50%;
  padding: 2rem;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1.5s ease-in-out forwards;
  animation-delay: 0.5s;
}

.download {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background: #f4f4f4;
}

.download a {
  padding: 1rem 3rem;
  background: #0071e3;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: bold;
  transition: 0.3s ease;
}

.download a:hover {
  background: #005bb5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.media {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.media-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.media-item {
  width: 300px;
  border: 2px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  background: white;
  padding: 1rem;

  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.media-item img,
.media-item video {
  width: 100%;
  border-radius: 8px;
}

/* Avis des joueurs */
.feedback {
  padding: 4rem 2rem;
  background: #222;
  color: white;
  text-align: center;
}

.feedback h2 {
  margin-bottom: 2rem;
}

.feedback-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.feedback-item {
  max-width: 600px;
  font-size: 1.2rem;
  font-style: italic;
  border-left: 4px solid #a12222;
  padding-left: 1rem;
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
