/* Пункт "Новый год" всегда красный, при наведении меняет цвет на CEEF00 */
a[href="#newyear"] {
  color: #D32F2F !important;  /* красный цвет */
  font-weight: bold;          /* жирный текст */
}

a[href="#newyear"]:hover {
  color: #CEEF00 !important;  /* ярко-жёлтый цвет при наведении */
}
/* Более заметная, но аккуратная пульсация заголовка */
#rec1255060471 .t-cover__title,
#rec1255060471 .t-title,
#newyear .t-cover__title,
#newyear .t-title {
  animation: tinyPulse 3s ease-in-out infinite !important;
  transform-origin: center center;
  display: inline-block;
}

@keyframes tinyPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.05); opacity: 0.95; } /* чуть заметнее */
}
