.TAHUNHOKI-faq details {
  margin: 10px 0;
  border-radius: 9px;
  overflow: hidden;
  border: 2px solid #ffffff;
  box-shadow: inset 0 0 5px 3px #000000, 3px 3px 3px 1px rgba(0,0,0,.2);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: gradient 6s ease infinite;
  background: linear-gradient(124deg, #e4e70c, #d6c315, #9d9e47, #8f9720, #abb155);
  background-size: 300% 300%;
}

/* SUMMARY (JUDUL PERTANYAAN) */
.PETANITOTO-faq summary {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 4px #000;
  outline: none;
}

/* ISI JAWABAN */
.PETANITOTO-faq details p {
  padding: 14px 16px;
  font-size: 15px;
  background: rgba(0,0,0,0.3);
  color: #ffffff;
  margin: 0;
  border-top: 1px solid #ffffff;
}

/* HOVER EFEK ANIMASI */
.PETANITOTO-faq details:hover {
  animation: shake 0.4s ease-in-out infinite;
  transform: translateY(-2px);
}

/* ANIMASI GRADIENT AGAR HIDUP */
@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ANIMASI SHAKE */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}

