.gj-compagnons {
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  overflow: hidden;
}

/* Titre résultat */
.gj-compagnons h3 {
  color: #8fdc9f;
  font-size: 1.5rem;
  margin: 1rem 0;
  text-align: center;
  text-shadow: 0 0 8px rgba(143,220,159,.6);
}

/* --- BARRE DE RECHERCHE PREMIUM --- */
.gj-compagnons label {
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  margin-bottom: .7rem;
  color: #ffeb3b;
  text-align: center;
}

.gj-compagnons::before {
  content: "🔍";
  position: absolute;
  left: 28px;
  top: 72px; /* ajuste selon ton label */
  font-size: 1.4rem;
  color: #00e676;
  pointer-events: none;
}

#gj-search {
  width: 100%;
  padding: 1.2rem 1.5rem 1.2rem 3rem;
  font-size: 1.2rem;
  border: 3px solid #00e676;
  border-radius: 50px;
  outline: none;
  background: #111;
  color: #fff;
  box-shadow: 0 0 12px rgba(0,230,118,.4);
  transition: all .3s ease;
  animation: pulseBorder 2.5s infinite;
}

#gj-search:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 20px rgba(0,229,255,.8), 0 0 40px rgba(0,229,255,.4);
  background: #000;
}

/* Animation pulsante */
@keyframes pulseBorder {
  0%   { box-shadow: 0 0 8px rgba(0,230,118,.6); border-color:#00e676; }
  50%  { box-shadow: 0 0 20px rgba(0,229,255,.8); border-color:#00e5ff; }
  100% { box-shadow: 0 0 8px rgba(0,230,118,.6); border-color:#00e676; }
}

/* Suggestions */
#gj-suggestions {
  list-style:none;margin:0;padding:0;
  background:#1e1e1e;border-radius:12px;
  position:absolute;z-index:10;width:100%;
  max-height:180px;overflow-y:auto;
  box-shadow: 0 6px 16px rgba(0,0,0,.5);
}
#gj-suggestions li {
  padding:.6rem .8rem;
  cursor:pointer;
  transition: background .2s ease;
}
#gj-suggestions li:hover {
  background:#333;
}

/* Cartes */
.gj-card {
  background:rgba(255,255,255,0.05);
  margin:.7rem 0;
  padding:.7rem;
  border-radius:12px;
  backdrop-filter: blur(4px);
  transition: transform .3s ease;
}
.gj-card:hover {
  transform: translateY(-3px);
}

/* Titres de sections */
.gj-title {
  font-weight:700;
  margin-bottom:.4rem;
  text-align:center;
  padding:.3rem .5rem;
  border-radius:8px;
  color:#fff;
  text-shadow:0 0 6px rgba(0,0,0,.6);
}
.gj-good-title {background:#2e7d32;}
.gj-bad-title  {background:#c62828;}
.gj-rot-title  {background:#1565c0;}
.gj-cal-title  {background:#ef6c00;}
.gj-lune-title {background:#6a1b9a;}
.gj-mal-title  {background:#ad1457;}
.gj-rot4-title {background:#558b2f;}
.gj-tip-title  {background:#f9a825;color:#222;}

/* CTA bouton */
.gj-cta {display:flex;justify-content:center;margin-top:1.2rem;}
.gj-btn {
  display:inline-block;
  background:linear-gradient(135deg,#00e676,#1de9b6,#00e5ff);
  background-size: 300% 300%;
  color:#111;
  padding:.9rem 1.8rem;
  border-radius:50px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(0,0,0,.4);
  transition:all .4s ease;
  animation: gradientShift 6s ease infinite;
}
.gj-btn:hover {
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 8px 20px rgba(0,0,0,.6);
}

/* Animation gradient bouton */
@keyframes gradientShift {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
}
/* --- Animation d’apparition fade + slide --- */
.gj-results-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn .6s ease forwards;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
