#showMoreBtn {
  background: linear-gradient(135deg, #536459, #768b7e);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-family: inherit;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#showMoreBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

#showMoreBtn:active {
  transform: scale(0.95);
}

#showMoreBtn.animate-click {
  animation: clickEffect 0.4s ease;
}

@keyframes clickEffect {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
}
