/* ==== CONTENEUR PRINCIPAL ==== */
.idj-container {
  position: relative;
  background: linear-gradient(145deg, #1a0933, #2d144b);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(161, 126, 229, 0.3);
  color: #fff;
  overflow: hidden;
  z-index: 1;
  max-width: 600px;
  margin: 40px auto;
}

/* ==== PARTICULES EN ARRIÈRE-PLAN ==== */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ==== TEXTE DE LA PHRASE ==== */
.idj-quote,
.idj-image {
  position: relative;
  z-index: 2;
  text-align: center;
}

.idj-quote p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 0 5px #a17ee5, 0 0 10px #a17ee5;
  animation: glowText 2s ease-in-out infinite alternate;
  margin: 0;
}

/* ==== IMAGE ==== */
.idj-image img {
  max-width: 300px;
  height: auto;
  display: inline-block;
  margin-top: 20px;
  animation: slowZoom 15s infinite alternate ease-in-out;
  box-shadow: 0 0 20px rgba(161, 126, 229, 0.6);
  transition: box-shadow 0.5s ease;
  border-radius: 12px;
}

/* ==== ANIMATIONS ==== */
@keyframes glowText {
  from {
    text-shadow: 0 0 5px #a17ee5, 0 0 10px #a17ee5;
  }
  to {
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
  }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
