    /* LOADER */

#loader {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100vh;

  background: #000;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  z-index: 999999;

  transition: opacity 1s ease;
}

/* LOGO */

.loader-logo {

  width: 210px;

  animation:
  pulse 2.2s infinite ease-in-out,

  glow 2s infinite alternate;

  filter:
  drop-shadow(0 0 15px #d4af37);

  object-fit: contain;
}

/* TEXTE */

#loader h1 {

  margin-top: 25px;

  color: #d4af37;

  font-size: 52px;

  font-weight: bold;

  letter-spacing: 6px;

  text-shadow:
  0 0 15px #d4af37,
  0 0 30px rgba(212,175,55,0.4);
}

/* ANIMATION TAILLE */

@keyframes pulse {

  0% {

    transform: scale(1);
  }

  50% {

    transform: scale(1.12);
  }

  100% {

    transform: scale(1);
  }
}

/* GLOW */

@keyframes glow {

  from {

    filter:
    drop-shadow(0 0 12px #d4af37);
  }

  to {

    filter:
    drop-shadow(0 0 32px #d4af37);
  }
}

    body {

      margin: 0;

      font-family: Arial, sans-serif;

      background-color: #0d0d0d;

      color: white;

      overflow-x: hidden;
    }

    /* NAVBAR */

  nav {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  box-sizing: border-box;

  padding: 25px 40px;

  display: flex;

  justify-content: space-between; 

  align-items: center;

  z-index: 1000;

  transition: 0.4s;

  background: transparent;

  border-bottom: 1px solid transparent;
}

/* NAVBAR ACTIVE */

nav.active {

  background: rgba(0,0,0,0.92);

  backdrop-filter: blur(8px);

  border-bottom: 2px solid #d4af37;

  box-shadow:
  0 0 20px rgba(212,175,55,0.15);
}

    .gauche {

      display: flex;

      align-items: center;

      gap: 20px;
    }

    .logo {

      width: 60px;

      height: 60px;

      border-radius: 10px;
    }

    .nom-serveur {

      font-size: 40px;

      font-weight: bold;

      color: #d4af37;
    }

    .joueurs {

      border-left: 2px solid rgba(255,255,255,0.2);

      padding-left: 20px;

      font-size: 14px;

      text-transform: uppercase;

      color: #ccc;
    }

    .joueurs span {

      display: block;

      font-size: 22px;

      font-weight: bold;

      color: #d4af37;

      margin-top: 5px;
    }

    .menu {

      display: flex;

      gap: 25px;
    }

    .menu a {

      color: white;

      text-decoration: none;

      font-size: 15px;

      font-weight: bold;

      text-transform: uppercase;

      letter-spacing: 1px;

      transition: 0.3s;
    }

    .menu a:hover {

      color: #d4af37;
    }

    /* HEADER */

    header {

      position: relative;

      height: 90vh;

      background:
      linear-gradient(
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.1)
      ),

      url("../Images/fondsansdiscord.png");

      background-size: cover;

      background-position: center;
    }

    /* TEXTE */

    .indication {

      position: absolute;

      bottom: 52px;

      left: 33%;

      font-size: 28px;

      font-weight: bold;

      color: white;

      text-shadow:
      0 0 10px black,
      0 0 20px black;

      animation: gaucheDroite 1.5s infinite;
    }

    /* BOUTON */

    .connexion-btn {

      position: absolute;

      bottom: 3%;

      left: 50%;

      transform: translateX(-50%);

      background: linear-gradient(to right, #d4af37, #f5d76e);

      animation: pulseBtn 1.8s infinite ease-in-out;

      color: black;

      padding: 16px 55px;

      text-decoration: none;

      font-size: 18px;

      font-weight: bold;

      border-radius: 16px;

      border: 2px solid rgba(255,255,255,0.2);

      box-shadow:
      0 0 12px rgba(212,175,55,0.25),
      0 0 25px rgba(212,175,55,0.1);

      transition: 0.3s;

      text-transform: uppercase;

      letter-spacing: 2px;
    }

    .connexion-btn:hover {

      transform: translateX(-50%) scale(1.08);

      background: white;

      box-shadow:
      0 0 18px rgba(255,255,255,0.2),
      0 0 35px rgba(212,175,55,0.15);
    }

    /* SECTION */

    section {

      padding: 100px 20px;

      text-align: center;
    }

    h2 {

      color: #d4af37;

      font-size: 50px;

      margin-bottom: 40px;
    }

    section p {

      max-width: 900px;

      margin: auto;

      font-size: 22px;

      line-height: 1.7;

      color: #ddd;
    }

    /* FOOTER */

    footer {

      background-color: black;

      padding: 30px;

      text-align: center;

      color: gray;

      border-top: 2px solid #d4af37;
    }

    /* SCROLLBAR */

::-webkit-scrollbar {

  width: 10px;
}

::-webkit-scrollbar-track {

  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {

  background: #d4af37;

  border-radius: 10px;

  border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {

  background: #f5d76e;
}

#music-btn {

  position: fixed;

  bottom: 25px;

  right: 25px;

  width: 60px;

  height: 60px;

  border-radius: 50%;

  border: 2px solid #d4af37;

  background: rgba(0,0,0,0.85);

  color: #d4af37;

  font-size: 24px;

  cursor: pointer;

  z-index: 9999;

  transition: 0.3s;

  box-shadow:
  0 0 15px rgba(212,175,55,0.25);

}

#music-btn:hover {

  transform: scale(1.08);

  background: #111;

}

@keyframes pulseBtn {

  0% {

    transform: translateX(-50%) scale(1);
  }

  50% {

    transform: translateX(-50%) scale(1.08);
  }

  100% {

    transform: translateX(-50%) scale(1);
  }

}

.reglement-btn {

  padding: 12px 28px;

  border-radius: 14px;

  background:
  linear-gradient(to right,
  #d4af37,
  #f5d76e);

  color: black;

  text-decoration: none;

  font-weight: bold;

  font-size: 14px;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition: 0.3s;

  border: 2px solid rgba(255,255,255,0.15);

  box-shadow:
  0 0 15px rgba(212,175,55,0.25);

  margin-left: 20px;

}

.reglement-btn:hover {

  transform: scale(1.06);

  background: white;

  box-shadow:
  0 0 25px rgba(212,175,55,0.4);

}