/* === Article Pangea === */
.article-pangea {
  background-color: #1A1A1A;
  color: #D4AF37;
  font-family: 'Cinzel', serif;
  padding: 20px;
  border: 2px solid #FF4500;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
  line-height: 1.6;
}

/* Titres dans l'article */
.article-pangea h1,
.article-pangea h2,
.article-pangea h3 {
  color: #FF4500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Liens */
.article-pangea a {
  color: #1E90FF;
  text-decoration: none;
}

.article-pangea a:hover {
  color: #9370DB;
  text-shadow: 0 0 5px #9370DB;
}

/* Boutons */
.article-pangea button,
.article-pangea .cta {
  background-color: #556B2F;
  color: #F8F9FA;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.article-pangea button:hover,
.article-pangea .cta:hover {
  background-color: #FF4500;
  box-shadow: 0 0 10px #FF4500;
  transform: scale(1.05);
}

/* Encadrés magiques */
.article-pangea .magic-box {
  border: 2px solid #9370DB;
  background-color: rgba(147, 112, 219, 0.1);
  padding: 15px;
  margin: 20px 0;
  box-shadow: 0 0 10px rgba(147, 112, 219, 0.3);
}

/* Icônes des éléments */
.article-pangea .element-icon {
  width: 32px;
  margin: 0 5px;
  transition: transform 0.3s ease-in-out;
}

.article-pangea .element-icon:hover {
  transform: scale(1.2);
}

.element-icon {
  transition: transform 0.3s ease-in-out;
  margin: 5px;
}

.element-icon:hover {
  transform: scale(1.2);
}

.newsletter-pangea {
  background-color: #1A1A1A; /* Noir volcanique */
  color: #D4AF37; /* Or ancien */
  padding: 25px;
  border: 2px solid #FF4500; /* Feu */
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.4);
  font-family: 'Cinzel', serif;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-pangea h3 {
  color: #FF4500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-pangea p {
  font-size: 0.95em;
  margin-bottom: 20px;
}

.newsletter-pangea input[type="email"] {
  width: 80%;
  padding: 10px;
  border: 1px solid #9370DB; /* Éther */
  background-color: #2C2C2C;
  color: #F8F9FA;
  margin-bottom: 15px;
}

.newsletter-pangea .consent {
  display: block;
  font-size: 0.85em;
  margin-bottom: 15px;
  color: #C0C0C0; /* Air */
}

.newsletter-pangea button {
  background-color: #556B2F; /* Terre */
  color: #F8F9FA;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.newsletter-pangea button:hover {
  background-color: #FF4500;
  box-shadow: 0 0 10px #FF4500;
  transform: scale(1.05);
}

/* Apparition façon parchemin */
.parchment {
  animation: parchmentReveal 1.5s ease-out forwards;
  transform: scale(0.95);
  opacity: 0;
}

@keyframes parchmentReveal {
  0% {
    transform: scale(0.95) rotateX(90deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.02) rotateX(10deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) rotateX(0deg);
    opacity: 1;
  }
}

/* Message de confirmation stylisé */
.confirmation-message {
  background-color: #1A1A1A;
  color: #D4AF37;
  border: 2px solid #9370DB;
  box-shadow: 0 0 15px rgba(147, 112, 219, 0.4);
  padding: 25px;
  font-family: 'Cinzel', serif;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  margin-top: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}