.pulse-red {
  animation: pulse-red 1.5s infinite;
  font-weight: bold;
}
@keyframes pulse-red {
  0%, 100% { color: #ff0000; }
  50% { color: #ffcccc; }
}