label:contains("Description")::after {
  content: "💬 After submitting, use the three-dot menu (...) in the first thread to add more details.  📎 Drag & drop screenshots into the Description field.";
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #ff8c00;
  font-weight: bold;
  line-height: 1.6;
  animation: blinkText 2.8s ease-in-out infinite;
}

/* Smooth blink */
@keyframes blinkText {
  0%   { opacity: 1; }
  50%  { opacity: 0.4; }
  100% { opacity: 1; }
}
