/* Conteneur de l'animation */
#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1; /* Derrière le contenu */
}

/* Contenu recentré, OPAQUE par défaut */
.content {
  flex: 1;
  max-width: 750px;
  margin: 20px auto;
  padding: 25px;
  background: #ffffff; /* Fond blanc opaque */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: background 0.4s ease; /* pour une transition fluide */
}

/* Lorsque .content possède la classe .transparent, fond semi-transparent */
.content.transparent {
  background: rgba(255, 255, 255, 0.65); /* léger voile blanc */
}

/* Style du titre principal */
.content h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Introduction */
.intro {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
}

/* Style des sections */
section {
  margin-bottom: 25px;
}

section h2 {
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  border-left: 4px solid #71c5d1;
  padding-left: 10px;
  margin-bottom: 10px;
}

section p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  padding: 10px 0;
}

/* Conclusion */
.conclusion {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}

/* Bouton d'accord */
.button-container {
  text-align: center;
  margin-top: 20px;
}

#accept-button {
  background-color: #71c5d1;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

#accept-button:hover {
  background-color: #5da4b3;
}

/* Responsive */
@media (max-width: 768px) {
  .content {
    max-width: 80%;
    padding: 15px;
  }

  .content h1 {
    font-size: 26px;
  }

  section h2 {
    font-size: 20px;
  }

  section p {
    font-size: 16px;
    padding: 10px 5px;
  }
}
