.related-buttons {
  text-align: center;
  margin: 20px 0;
}

.related-buttons h3 {
  font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #0035ff;
}

.related-buttons ul {
  padding: 0;
  margin: 0;
}

.related-buttons ul li {
  list-style: none;
  margin: 8px 0;
}

.related-buttons ul li a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #ff6a00, #ee0979, #ff6a00);
  background-size: 300% 300%;
  color: #fff;
  animation: buttonGradient 6s ease infinite, autoPulse 3s ease-in-out infinite;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Gradient animation */
@keyframes buttonGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Auto hover-like pulse */
@keyframes autoPulse {
  0%   { transform: scale(1);   text-shadow: 0 0 0 #fff; }
  50%  { transform: scale(1.08); text-shadow: 0 0 10px #fff; }
  100% { transform: scale(1);   text-shadow: 0 0 0 #fff; }
}

/* Font size options */
.related-buttons.small ul li a {
  font-size: 14px;
  padding: 8px 14px;
}
.related-buttons ul li a {
  font-size: 16px;
}
.related-buttons.large ul li a {
  font-size: 20px;
  padding: 12px 22px;
}
