.sport-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ff512f, #dd2476);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sport-link2 {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(90deg, #ff3c00, #ff9500);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255, 60, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.sport-link2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.sport-link2:hover::before {
  left: 125%;
}

.sport-link2:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 60, 0, 0.6);
}