.text-base {
  font-size: 1.125rem !important;
  color: #fff;
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.text-base:hover {
  transform: scale(1.1);
  color: #f2fff3ff;
  filter: drop-shadow(0 0 10px rgba(81, 255, 130, 0.8));
}

.underline-base {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-image: linear-gradient(90deg, #60866bff, #ace2d2ff);
  transition: width 0.3s ease-out, box-shadow 0.3s ease-out;
}

.text-base:hover .underline-base {
  width: 100%;
}

.text-active {
  color: #f2fff3ff;
  filter: drop-shadow(0 0 10px rgba(81, 255, 130, 0.8));
}

.underline-active {
  width: 100%;
  background-image: linear-gradient(90deg, #60866bff, #ace2d2ff);
  transition: width 0.3s ease-out, box-shadow 0.3s ease-out;
}