
/* MENTIONS LÉGALES - CSS autonome pour page indépendante */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #36e01f, #0101bb);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: start;
  justify-content: center;
  padding-top: 60px;
}

.mentions-container {
  max-width: 900px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.7;
  font-size: 1rem;
}

.mentions-container h1 {
  color: #00ff22;
  margin-bottom: 20px;
}

.mentions-container p {
  margin-bottom: 15px;
}

.mentions-container strong {
  color: #00ff22;
}

.bouton-stylise {
  padding: 12px 24px;
  background: linear-gradient(135deg, #36e01f, #0101bb);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.bouton-stylise:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #0101bb, #36e01f);
}


@media screen and (max-width: 768px) {
  body {
    padding: 20px;
  }

  .mentions-container {
    padding: 25px;
  }
}
