/* Star on GitHub button styles from Uiverse.io (vaibhavchandranv) */
.btn-star {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.5s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-star:hover {
  transform: scale(1.1);
}

.btn-star:active {
  transform: scale(1);
}

.btn-star:hover .icon {
  fill: #ffff00;
  transform: scale(1.1) rotate(360deg);
  filter: drop-shadow(0 0 5px rgba(255, 208, 0, 0.8))
    drop-shadow(0 0 10px rgba(255, 208, 0, 0.6));
}

.btn-star:hover .text {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

.btn-star .text {
  transition: all 1s ease;
}

.btn-star .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: -3px;
  transition: all 1s ease;
}
