/* === STRUCTURE GLOBALE === */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100vh;
  background-color: #0a0a0a;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  overflow-x: hidden;
}

/* === BANNIÈRE HAUT DE PAGE === */
.top-banner {
  width: 100%;
  background-color: black;
  text-align: center;
  padding: 0;
  margin: 0;
}

.top-banner img {
  width: 100%;
  height: auto;
  max-height: 400px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .top-banner img {
    max-height: 200px;
  }
}

/* === CONTENU PRINCIPAL === */
.page-content {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

main {
  max-width: 600px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

h1, h2 {
  color: #ff2aa8;
  margin: 30px 0 15px;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

h3 {
  font-size: 1.2rem;
  color: #FFF;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* === BOUTONS === */
.btn {
  background: #ff3399;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  display: block;
  width: 100%;
  max-width: 200px;
  border: none;
  margin: 10px auto;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e02687;
}

.btn-large {
  font-size: 1.3rem;
  padding: 18px 30px;
  max-width: 250px;
}

button,
.btn,
.vip-button {
  color: #fff !important;
}

button:hover,
.btn:hover,
.vip-button:hover,
button:focus,
.btn:focus,
.vip-button:focus,
button:active,
.btn:active,
.vip-button:active {
  color: #fff !important;
}



/* === MODAL AGE === */
#age-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.96);
  color: #db1895;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  text-align: center;
}

#age-modal h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

#age-modal p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 400px;
}

#age-modal button {
  background-color: #db1895;
  color: #000;
  border: none;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s ease;
}

#age-modal button:hover {
  background-color: #ff69b4;
}

#age-modal .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* === FLASH TEXT === */
.flash-text {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  animation: flash 3s infinite ease-in-out;
}

@keyframes flash {
  0%, 66.66% { opacity: 1; }
  66.67%, 100% { opacity: 0; }
}

/* === LIENS === */
a {
  color: #ff69b4;
  text-decoration: none;
}

a:visited, a:hover, a:active {
  color: #ff69b4;
}

a:hover {
  text-decoration: underline;
}

/* === SOCIAL === */
.social-links {
  margin-top: 40px;
  font-size: 1rem;
  color: #db1895;
  text-align: center;
}

.lang {
  margin-top: 40px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* === FOOTER DISCLAIMER === */
#footer-disclaimer {
  text-align: center;
  padding: 12px 8px;
  margin-top: 0px;
  font-size: 0.55rem !important;
  color: #888;
  line-height: 1.4;
}

#footer-disclaimer p {
  margin: 0;
  font-size: inherit !important;
}

#footer-disclaimer a {
  color: #ff69b4 !important;
  text-decoration: underline;
  font-size: inherit !important;
}

.newsletter-section input[type="email"] {
  padding: 14px;
  border: 1px solid #db1895;
  border-radius: 5px;
  background: #000;
  color: #fff;
  width: 100%;
  max-width: 400px; /* augmente ici pour élargir */
  font-size: 1rem;   /* plus lisible */
}