/* ============================
   STRUCTURE PAGE GUIDE
============================ */
.guide-section {
  border-radius: 25px;
  border: 1px solid;
  max-width: 95%;
  margin: auto;
  margin-top: 10px;
  padding: 40px 20px;
  color: #000;
  box-sizing:border-box;
}

.titre-page {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.intro {
  font-size: 1.15rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Bloc explication */
.bloc-explication {
  background: #CCEFFF; /* Bleu pastel */
  padding: 20px;
  border-left: 4px solid #0077FF; /* Bleu azur profond */
  margin: 25px 0;
  line-height: 1.6;
}

/* Sous-titres */
.sous-titre {
  font-size: 1.4rem;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Étapes */
.etapes {
  margin: 20px 0;
  padding-left: 20px;
}

.etapes li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Astuce */
.astuce {
  background: #CCEFFF; /* Bleu pastel */
  border-left: 4px solid #0077FF; /* Bleu azur profond */
  padding: 15px;
  margin: 25px 0;
  font-style: italic;
}

/* Avertissement */
.avertissement {
  background: #ffe5e5;
  border-left: 4px solid #d32f2f;
  padding: 15px;
  margin: 25px 0;
  font-weight: bold;
}

/* CTA */
.cta-centre {
  text-align: center;
  margin-top: 40px;
}

.btn-orange {
    border-radius: 10px;
    border: solid 1px;
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(
      to bottom,
      #0077FF, /* Bleu azur profond */
      #3399FF, /* Bleu azur */
      #66BFFF, /* Bleu ciel */
      #99D8FF, /* Bleu très clair */
      #CCEFFF, /* Bleu pastel */
      #FFFFFF  50%/* Blanc */
);
  color: #000;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  max-width: 200px;
  min-width: 200px;
}
.btn-orange:hover{
        color: red;
        transform: scale(1.03);
    }

 /* Debut clignotement*/

 

.accent2 {
    display: inline-block;
    animation: pulseGlow 3s ease-in-out infinite;
    color: #ff7a00;
    font-weight: 700;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(255, 122, 0, 0.0);
    }
    50% {
        transform: scale(1.06);
        text-shadow: 
            0 0 8px rgba(255, 122, 0, 0.6),
            0 0 16px rgba(255, 122, 0, 0.4),
            0 0 24px rgba(255, 122, 0, 0.2);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(255, 122, 0, 0.0);
    }
}

 /*fin clignotement */
/* Responsive */
@media (max-width: 768px) {
  .guide-section { padding: 25px 15px; }
  .titre-page { font-size: 1.8rem; }
  .intro { font-size: 1rem; }
  .btn-orange { padding: 12px 20px; }
}