    #icone-le_player {
      position: fixed;
      bottom: 15px;
      right:auto;
	  left: auto;
      width: 40px;
	  height: auto;
      cursor: pointer;
      z-index: 1000;
	  transition:  transform 0.2s ease;
	  transform: translatex(-100px);
    }

	#icone-le_player:hover {
	  transform: translatex(-100px) scale(1.2);
	}

    #icone-le_player img {
      width: 100%;
      height: auto;
    }

/* MENU */
#social-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
}

/* HAMBURGER */
#hamburger-button {
  width: 40px;
  height: 40px;

  background: #FAF8EC;
  border-radius: 50%;

  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  box-shadow: 0 2px 8px rgba(0,0,0,0.25);

  transition: transform 0.2s ease;
}

#hamburger-button:hover {
  transform: scale(1.1);
}

/* BARRES */
#hamburger-button span {
  width: 24px;
  height: 4px;
  background: #0C385F;
  border-radius: 3px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

/* MENU DÉROULANT */
#social-links {
  position: absolute;
  top: 55px;
  right: 6px;
  display: grid;
  grid-template-columns: repeat(2, 40px);
  justify-content: center;
  gap: 17px;
  padding: 14px;
  background: rgba(250, 248, 236, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}

/* MENU OUVERT */
#social-links.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ICÔNES */
.social-link {
  width: 40px;
  height: 40px;

  margin-bottom: 1px;

  cursor: pointer;

  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: scale(1.2);
}

.social-link img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-height: 760px) {

  #social-menu,
  #hamburger-button,
  #social-links {
    display: none !important;
  }

}

/* Animation hamburger -> croix */

/* Barre du haut */
#hamburger-button.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

/* Barre du milieu */
#hamburger-button.open span:nth-child(2) {
  opacity: 0;
}

/* Barre du bas */
#hamburger-button.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}