body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
  transition: background-color 0.5s, color 0.5s;
}

body.night {
  background-color: #121212;
  color: white;
}

.background-video {
  transition: background-color 0.5s, color 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;

  /* Bordure intérieure grise */
}
iframe {
  transition: background-color 0.5s, color 0.5s;
  position: fixed; /* Position absolue pour s'ajuster à l'écran */

  width: 130%; /* Ajuste l'iframe à 100% de la largeur */
  height: 110%; /* Ajuste l'iframe à 100% de la hauteur */
  pointer-events: none; /* Désactive les interactions si nécessaire */
}

/* Overlay */
.overlay {
  transition: background-color 0.5s, color 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Fond plus sombre */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.enter-button {
  background-color: #ffffff;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.enter-button:hover {
  background-color: #f0f0f0;
}

.content {
  display: none;
  position: fixed;
  top: 45%;
  left: 59%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.profile-frame {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  display: inline-block;
  border: 1px solid #fcfcfc9f;

  /* Animation de fondu */
  opacity: 0; /* Départ invisible */
  transform: scale(0.95); /* Optionnel : léger zoom-out au départ */
  animation: fadeIn 1s ease forwards; /* Animation qui démarre automatiquement */
}

/* Animation @keyframes */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}



.profile-frame img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.profile-frame .pseudo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.profile-frame p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: lightgray;
}

.controls button {
  background-color: #ffffff;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.controls button:hover {
  background-color: #f0f0f0;
}

.theme-toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #ffffff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.theme-toggle:hover {
  background-color: #f0f0f0;
}

.blur-band {
  position: fixed;
  z-index: 1;
  backdrop-filter: blur(15px); /* Augmentation du flou */
  pointer-events: none;
}

.top-blur {
  top: 0;
  width: 100%;
  height: 75px; /* Augmentation de l'épaisseur */
}

.bottom-blur {
  bottom: 0;
  width: 100%;
  height: 75px; /* Augmentation de l'épaisseur */
}

.left-blur {
  left: 0;
  top: 75px; /* Commence sous la bande du haut */
  width: 75px; /* Augmentation de l'épaisseur */
  height: calc(100% - 150px); /* Hauteur ajustée pour ne pas chevaucher les bandes haute et basse */
}

.right-blur {
  right: 0;
  top: 75px; /* Commence sous la bande du haut */
  width: 75px; /* Augmentation de l'épaisseur */
  height: calc(100% - 150px); /* Hauteur ajustée pour ne pas chevaucher les bandes haute et basse */
}


/* From Uiverse.io by neerajbaniwal */ 
.btn-shine {
  position: static;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 48px;
  color: #fff;
  background: linear-gradient(to right, #9f9f9f 0, #fff 10%, #868686 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}
@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 180px;
  }
  100% {
    background-position: 180px;
  }
}

/* From Uiverse.io by tiagoadag1203 */ 
.input {
  max-width: 190px;
  background-color: #424242;
  border: none;
  padding: 10px;
  border-radius: 10px;
  outline: none;
  color: white;
}

.input:focus {
  animation: rotateShadow 5s infinite linear;
}

@keyframes rotateShadow {
  0% {
    box-shadow: -2px -2px 8px 1px #0427f0, 2px 2px 8px 1px #020c68;
  }
  25% {
    box-shadow: -2px 2px 8px 1px #0b0286, 2px -2px 8px 1px #0604b3;
  }
  50% {
    box-shadow: 2px 2px 8px 1px #4505da, -2px -2px 8px 1px #03ddb918;
  }
  75% {
    box-shadow: 2px -2px 8px 1px #2802b1, -2px 2px 8px 1px #2e08b6;
  }
  100% {
    box-shadow: -2px -2px 8px 1px #0421ca, 2px 2px 8px 1px #1634e0;
  }
}

/* From Uiverse.io by Shoh2008 */ 
.loader {
  margin: 10px;
  width: 45px;
  height: 40px;
  background: linear-gradient(#0000 calc(1*100%/6),#fff 0 calc(3*100%/6),#0000 0),
            linear-gradient(#0000 calc(2*100%/6),#fff 0 calc(4*100%/6),#0000 0),
            linear-gradient(#0000 calc(3*100%/6),#fff 0 calc(5*100%/6),#0000 0);
  background-size: 10px 400%;
  background-repeat: no-repeat;
  animation: matrix 1s infinite linear;
}

@keyframes matrix {
  0% {
    background-position: 0% 100%, 50% 100%, 100% 100%
  }

  100% {
    background-position: 0% 0%, 50% 0%, 100% 0%
  }
}



/* From Uiverse.io by AqFox */ 
.spinner {
  margin-top: 25px;
  margin-bottom: 39px;
  margin-inline: 100px;

  width: 44px;
  height: 44px;
  animation: spinner-y0fdc1 7s infinite ease;
  transform-style: preserve-3d;
 }
 
 .spinner > div {
  background-color: rgba(159, 160, 161, 0.13);
  height: 100%;
  position: absolute;
  width: 100%;
  border: 2px solid #fcfcfc9f;
 }
 
 .spinner div:nth-of-type(1) {
  transform: translateZ(-22px) rotateY(180deg);
 }
 
 .spinner div:nth-of-type(2) {
  transform: rotateY(-270deg) translateX(50%);
  transform-origin: top right;
 }
 
 .spinner div:nth-of-type(3) {
  transform: rotateY(270deg) translateX(-50%);
  transform-origin: center left;
 }
 
 .spinner div:nth-of-type(4) {
  transform: rotateX(90deg) translateY(-50%);
  transform-origin: top center;
 }
 
 .spinner div:nth-of-type(5) {
  transform: rotateX(-90deg) translateY(50%);
  transform-origin: bottom center;
 }
 
 .spinner div:nth-of-type(6) {
  transform: translateZ(22px);
 }
 
 @keyframes spinner-y0fdc1 {
  0% {
   transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
  }
 
  50% {
   transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
  }
 
  100% {
   transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
  }
 }

 
 @keyframes convolution {
  0% {
    filter: blur(0px);
  }
  50% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0px);
  }
}

body.convolution-effect {
  animation: convolution 0.5s ease-in-out;
}


.mute-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #444;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mute-button:hover {
  background-color: #555;
}
/* From Uiverse.io by milegelu */ 
.container {
  padding-bottom: 18px;
  padding-top: 17px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #00000011;
  --gap: 5em;
  --line: 1px;
  --color: rgba(255, 255, 255, 0.199);

  background-image: linear-gradient(
      -90deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 2px),
      var(--color) var(--gap)
    ),
    linear-gradient(
      0deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap)
    );
  background-size: var(--gap) var(--gap);
}

/* From Uiverse.io by vinodjangid07 */ 
.tooltip-container {
  margin: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.164);
  padding: 11px 10px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(211, 211, 211, 0.158);
}

.text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}
.svgIcon {
  width: 16px;
  height: auto;
}
.tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3em 0.6em;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  color: rgb(34, 34, 34);
}

.tooltip::before {
  position: absolute;
  content: "";
  height: 0.6em;
  width: 0.6em;
  bottom: -0.2em;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  background-color: rgb(255, 255, 255);
}

.tooltip-container:hover .tooltip {
  top: -100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Rectangle flottant */
.floating-rectangle {
  z-index: 1;
  width: 23.33%; /* Un tiers de la largeur */
  height: 100vh; /* Hauteur de la fenêtre */
  background-color: #131212;
  border-radius: 20px; /* Bords arrondis */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Effet d'ombre */
  padding: 20px; /* Espacement interne */
  box-sizing: border-box;
  position: fixed; /* Position flottante */
  left: 0;
  top: 0;
  border: 3px solid rgba(255, 255, 255, 0.158);

  /* Ajout du défilement si nécessaire */
  overflow-y: auto; /* Active le défilement vertical */
  overflow-x: hidden; /* Empêche le défilement horizontal */
  scrollbar-width: thin; /* Barres de défilement fines (Firefox) */
  scrollbar-color: #555 transparent; /* Couleur personnalisée (Firefox) */
}

/* Styles spécifiques pour les barres de défilement sur Webkit (Chrome, Edge, Safari) */
.floating-rectangle::-webkit-scrollbar {
  width: 8px; /* Largeur de la barre de défilement */
}

.floating-rectangle::-webkit-scrollbar-thumb {
  background-color: #555; /* Couleur de la barre */
  border-radius: 4px; /* Arrondi de la barre */
}

.floating-rectangle::-webkit-scrollbar-track {
  background: transparent; /* Couleur de l'arrière-plan */
}


/* Contenu principal */
.main-content {
  margin-left: 33.33%; /* Décalage pour éviter le chevauchement */
  padding: 20px;
}

/* From Uiverse.io by Bastiennnn */
.card {
  margin-top: 17px;
  width: 100%; /* Occupe toute la largeur disponible */
  max-width: 600px; /* Limite la largeur maximale de la carte */
  height: auto; /* Hauteur ajustable */
  background-color: #ffffff13;
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0px 10px 10px rgba(137, 136, 138, 0.062);
  transition: 0.5s;
  overflow: hidden; /* Empêche le débordement */
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0px 10px 10px black;
}

.top {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.circle {
  padding: 0 4px;
}

.circle2 {
  display: inline-block;
  align-items: center;
  width: 10px;
  height: 10px;
  padding: 1px;
  border-radius: 5px;
}

.red {
  background-color: #ff605c;
}

.yellow {
  background-color: #ffbd44;
}

.green {
  background-color: #00ca4e;
}

.header {
  margin: 5px;
  margin-top: 5px;
  border-radius: 5px;
}

#title2 {
  color: white;
  padding-left: 50px;
  font-size: 15px;
}

/* Code container styles */
.code-container {
  margin-bottom: 20px;
  width: 100%;
  height: auto; /* Ajuste la hauteur automatiquement en fonction de l'image */
  text-align: center;
  display: flex; /* Centrer les contenus */
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Empêche l'affichage des barres de défilement */
}

.code-container .image {
  max-width: 90%; /* Empêche le débordement horizontal */
  height: auto; /* Préserve le ratio de l'image */
  border-radius: 8px;
}

/* Textarea styles */
#code {
  width: 100%; /* S'adapte au conteneur */
  max-width: 340px; /* Limite la largeur du textarea */
  height: 70px;
  resize: none;
  background-color: rgba(71, 69, 71, 0.253);
  border-radius: 5px;
  border: none;
  color: white;
  padding: 5px;
  margin: auto;
  overflow: hidden; /* Cache les barres de défilement dans le textarea */
}

#code:focus {
  outline: none !important;
}


/* From Uiverse.io by ilkhoeri */ 
.Acard {
  --border: 4px;
  --rounded: 15px;
  --quantity: 12;
  --w-card: 450px;
  --h-card: 400px;
  margin: 0;
  width: var(--w-card);
  height: var(--h-card);
  max-width: 80%;
  max-height: 80%;
  border-radius: var(--rounded);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--border);
  /* box-shadow: 0px 0px 16px 0px #cfecff; */
}
.Acard::before,
.Acard::after {
  content: "";
  z-index: -1;
  position: absolute;
  will-change: auto;
  --size: calc(100%);
  --size-old: calc(100% - calc(var(--border) * 2));
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  border-radius: var(--rounded);
  background-size: 400% 400%;
  animation: bg-spin 3s linear 0s infinite normal none running;
  background-image: radial-gradient(
      circle farthest-side at 0 100%,
      #00ccb1,
      transparent
    ),
    radial-gradient(circle farthest-side at 100% 0, #5ddcff, transparent),
    radial-gradient(circle farthest-side at 100% 100%, #3c67e3, transparent),
    radial-gradient(circle farthest-side at 0 0, #4e00c2, #0000);
}

.Acard::after {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  animation-delay: 0.5s;
  filter: blur(24px);
  opacity: 0.7;
}
@keyframes bg-spin {
  25% {
    background-position: right 20% bottom 40%;
  }
  75% {
    background-position: left 45% top 20%;
  }
}

.points_wrapper {
  position: absolute;
  overflow: hidden;
  width: calc(100% - (var(--border) * 4));
  height: calc(100% - (var(--border) * 4));
  border-radius: calc(var(--rounded) - 4px);
  pointer-events: none;
  z-index: 80;
}

.points_wrapper .point {
  --sz-point: 4px;
  top: -8px;
  position: absolute;
  animation: floating-points infinite ease-in-out;
  pointer-events: none;
  width: var(--sz-point);
  height: var(--sz-point);
  background-color: #5ddcff;
  border-radius: 9999px;
}
@keyframes floating-points {
  0% {
    transform: translate(0, 0);
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--h-card) / 1.75), calc(var(--h-card) / 1.5));
  }
}
.points_wrapper .point:nth-child(1) {
  left: 10%;
  opacity: 1;
  animation-duration: 2.35s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(2) {
  left: 30%;
  opacity: 0.7;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}
.points_wrapper .point:nth-child(3) {
  left: 25%;
  opacity: 0.8;
  animation-duration: 2.2s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(4) {
  left: 44%;
  opacity: 0.6;
  animation-duration: 2.05s;
}
.points_wrapper .point:nth-child(5) {
  left: 50%;
  opacity: 1;
  animation-duration: 1.9s;
}
.points_wrapper .point:nth-child(6) {
  left: 75%;
  opacity: 0.5;
  animation-duration: 1.5s;
  animation-delay: 1.5s;
}
.points_wrapper .point:nth-child(7) {
  left: 88%;
  opacity: 0.9;
  animation-duration: 2.2s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(8) {
  left: 58%;
  opacity: 0.8;
  animation-duration: 2.25s;
  animation-delay: 0.2s;
}
.points_wrapper .point:nth-child(9) {
  left: 98%;
  opacity: 0.6;
  animation-duration: 2.6s;
  animation-delay: 0.1s;
}
.points_wrapper .point:nth-child(10) {
  left: 65%;
  opacity: 1;
  animation-duration: 2.5s;
  animation-delay: 0.2s;
}

.Acontent {
  position: absolute;
  width: calc(100% - (var(--border) * 4));
  height: calc(100% - (var(--border) * 4));
  border-radius: calc(var(--rounded) - 4px);
  overflow: hidden;
  z-index: 7;
  background-color: #000000;
}

.f-frame {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 1px;
  backdrop-filter: blur(10px);
  display: inline-block;
}

.f-frame img {
  width: 250px;
  height: 210px;
  border-radius: 10%;
  margin-bottom: 10px;
}

.floating-button {
  position: fixed;
  top: 10px;
  left: 28%;
  transform: translateX(-50%);
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.floating-button:hover {
  background-color: #0056b3;
}



/* From Uiverse.io by StealthWorm */ 
.btn {
  position: absolute;
  top: 120px;
  right: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  overflow: hidden;
  height: 3rem;
  background-size: 300% 300%;
  cursor: pointer;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
  transition: 0.5s;
  animation: gradient_301 50s ease infinite;
  border: double 2px transparent;
  background-image: linear-gradient(#00000000, #000000),
    linear-gradient(
      137.48deg,
      #0f47c0 10%,
      #141414 45%,
      #515153 67%,
      #093dc0 87%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
}

#container-stars {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.5s;
  backdrop-filter: blur(1rem);
  border-radius: 5rem;
}

strong {
  z-index: 2;
  font-size: 12px;
  letter-spacing: 5px;
  color: #ffffff;
  text-shadow: 0 0 4px white;
}

#glow {
  position: absolute;
  display: flex;
  width: 12rem;
}

.Acircle {
  width: 100%;
  height: 30px;
  filter: blur(2rem);
  animation: pulse_3011 4s infinite;
  z-index: -1;
}

.Acircle:nth-of-type(1) {
  background: rgb(238, 238, 238);
}

.Acircle:nth-of-type(2) {
  background: rgba(225, 221, 230, 0);
}

.btn:hover #container-stars {
  z-index: 1;
  background-color: #000000;
}

.btn:hover {
  transform: scale(1.1);
}

.btn:active {
  border: double 4px #ece4e9;
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: none;
}

.btn:active .circle {
  background: #fcf3f8;
}

#stars {
  position: relative;
  background: transparent;
  width: 200rem;
  height: 200rem;
}

#stars::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -100rem;
  width: 100%;
  height: 100%;
  animation: animStarRotate 900s linear infinite;
}

#stars::after {
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
}

#stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 170%;
  height: 500%;
  animation: animStar 600s linear infinite;
}

#stars::before {
  background-image: radial-gradient(#ffffff 1px, transparent 1%);
  background-size: 50px 50px;
  opacity: 0.5;
}

@keyframes animStar {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-135rem);
  }
}

@keyframes animStarRotate {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0);
  }
}

@keyframes gradient_301 {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse_3011 {
  0% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.75);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}


/* From Uiverse.io by Galahhad */ 
/* level settings 👇 */

.slider {
  position: fixed;
  top: 18px;
  left: 90%;
  right: 10px;
  /* slider */
  --slider-width: 100%;
  --slider-height: 6px;
  --slider-bg: rgb(82, 82, 82);
  --slider-border-radius: 999px;
  /* level */
  --level-color: #cccccb88;
  --level-transition-duration: .1s;
  /* icon */
  --icon-margin: 15px;
  --icon-color: var(--slider-bg);
  --icon-size: 25px;
}

.slider {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.slider-background {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 10px;
  transition: background-color 0.3s ease;
}
.slider .volume {
  display: inline-block;
  vertical-align: top;
  margin-right: var(--icon-margin);
  color: var(--icon-color);
  width: var(--icon-size);
  height: auto;
}

.slider .level {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--slider-width);
  height: var(--slider-height);
  background: var(--slider-bg);
  overflow: hidden;
  border-radius: var(--slider-border-radius);
  -webkit-transition: height var(--level-transition-duration);
  -o-transition: height var(--level-transition-duration);
  transition: height var(--level-transition-duration);
  cursor: inherit;
}

.slider .level::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  -webkit-box-shadow: -200px 0 0 200px var(--level-color);
  box-shadow: -200px 0 0 200px var(--level-color);
}

.slider:hover .level {
  height: calc(var(--slider-height) * 2);
}


.image-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; /* Par défaut, l'image est invisible */
  visibility: hidden; /* L'image est cachée */
  display: block;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0s 0.5s;
}

.image-popup img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#bandeau {
  position: sticky;
  top: 0;  /* Assurez-vous que le bandeau soit tout en haut de la page */
  left: 0;  /* Positionner le bandeau à gauche */
  width: 100%;  /* Largeur à 100% de la page */
  height: 50px;  /* Vous pouvez ajuster la hauteur de la bande */
  border-radius: 14px;  /* Coins arrondis */
  border: 3px solid rgba(255, 255, 255, 0.158);  /* Bordure semi-transparente */
  background-color: rgba(19, 18, 18, 0.35);  /* Fond légèrement transparent pour donner une teinte sombre */
  z-index: 0;  /* Assurez-vous que la bande soit au-dessus des autres éléments */
  opacity: 1;  /* Commence visible */
  transition: opacity 1s ease-in-out;  /* Transition pour l'effet de disparition */
  
  /* Ajout du flou avec backdrop-filter */
  backdrop-filter: blur(100px);  /* Applique un flou de 10px à l'arrière-plan visible à travers l'élément */
}


/* From Uiverse.io by MrD4rio */ 
.discord-button {
  margin-left: auto; 
  margin-right: auto; 
  font-family: inherit;
  font-size: 18px;
  background: linear-gradient(to bottom, #e4e4e91c 0%,#91929400 100%);
  color: white;
  padding: 0.9em 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.discord-button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.discord-button:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.discord-button span {
  display: block;
  margin-left: 0.4em;
  transition: all 0.3s;
}

.discord-button svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: all 0.3s;
}

.discord-button .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5em;
  transition: all 0.3s;
}

.discord-button:hover .svg-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}

.discord-button:hover svg {
  transform: rotate(360deg);
}

.discord-button-link {
  text-decoration: none; /* Supprime le soulignement par défaut des liens */
  display: inline-block; /* Pour maintenir le lien comme un conteneur du bouton */
}


/* From Uiverse.io by JkHuger */ 
@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}
/* Style du bouton */
#enterButton {
  position: fixed; /* Position fixe au bas de l'écran */
  bottom: 20px; /* Espacement du bas de l'écran */
  left: 50%; /* Centrer horizontalement */
  transform: translateX(-50%); /* Centrer exactement avec un déplacement négatif */
  padding: 10px 20px;
  font-size: 1.2em;
  background-color: #00a36d; /* Couleur personnalisée */
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease-in-out; /* Ajout de la transition */
  display: inline-block; /* Toujours visible */
}

/* Effet de survol du bouton */
#enterButton:hover {
  background-color: #007f5f; /* Couleur au survol */
}

/* Style du texte animé */
.animation {
  font: bold 2.5em Consolas, Monaco, monospace; /* Taille du texte plus grande */
  color: white; /* Couleur du texte en blanc */
  border-right: .1em solid white; /* Couleur de la barre de texte animée */
  width: 13.20ch; /* Largeur initiale du texte */
  margin: 2em 2em;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 5s steps(13, end), blink-caret .5s step-end infinite alternate;
  -webkit-animation: typing 5s steps(13, end), blink-caret .5s step-end infinite alternate;
}

/* From Uiverse.io by kennyotsu-monochromia */ 
.Btn_l {
  --black: #000000;
  --ch-black: #141414;
  --eer-black: #1b1b1b;
  --night-rider: #2e2e2e;
  --white: #ffffff;
  --af-white: #f3f3f3;
  --ch-white: #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: var(--af-white);
}

/* plus sign */
.sign_l {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign_l svg {
  width: 17px;
}

.sign_l svg path {
  fill: var(--night-rider);
}
/* text */
.text_l {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: var(--night-rider);
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: .3s;
}
/* hover effect on button width */
.Btn_l:hover {
  width: 125px;
  border-radius: 5px;
  transition-duration: .3s;
}

.Btn_l:hover .sign_l {
  width: 30%;
  transition-duration: .3s;
  padding-left: 20px;
}
/* hover effect button's text */
.Btn_l:hover .text_l {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
  padding-right: 10px;
}
/* button click effect*/
.Btn_l:active {
  transform: translate(2px ,2px);
}

.container_l {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

