.tz-menu a {
  position: relative;
  color: #ffffff; /* начальный цвет */
  text-decoration: none;
  transition: color 0.3s ease;
}

.tz-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: #B9FE03;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  border-radius: 2px;
}

.tz-menu a:hover {
  color: #B9FE03;
}

.tz-menu a:hover::after {
  transform: scaleX(1);
}

.glowing-box {
  transition: all 0.4s ease; /* плавность для всех свойств */
  box-shadow: 0 0 0 0 rgba(185, 254, 3, 0); /* начальное состояние — тени нет */
  transform: translateY(0); /* изначально не смещён */
}

.glowing-box:hover {
  box-shadow: 0 0 25px 8px rgba(185, 254, 3, 0.25); /* салатовая мягкая тень */
  transform: translateY(-4px); /* плавный подъём */
}