
.sportiva-live-worldcup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 6px 10px;
    border-radius: 20px 0px 20px 0px;
    background: linear-gradient(135deg, #fff200 0%, #ffc400 45%, #ffea00 100%);
    border: 2px solid #fff8a8;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(255, 230, 0, 0.9), 0 0 28px rgba(255, 196, 0, 0.7), 0 8px 20px rgba(0, 0, 0, 0.28);
    animation: sportivaWorldcupBtnGlow 1.6s infinite ease-in-out;
    transition: 0.3s ease;
}

.sportiva-live-worldcup-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 18px rgba(255, 242, 0, 1),
    0 0 38px rgba(255, 0, 0, 0.65),
    0 10px 26px rgba(0, 0, 0, 0.35);
}

.sportiva-live-worldcup-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.75),
    transparent
  );
  transform: skewX(-25deg);
  animation: sportivaWorldcupShineMove 2.4s infinite;
}

.sportiva-live-worldcup-logo-frame {
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    position: relative;
    z-index: 2;
    animation: sportivaWorldcupLogoBlink 0.75s infinite alternate;
}

.sportiva-live-worldcup-logo-frame img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: transparent;
  border-radius: 50%;
}

.sportiva-live-worldcup-label {
  position: relative;
  z-index: 2;

  color: #111;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-shadow:
    1px 1px 0 #fff,
    0 0 6px rgba(255, 255, 255, 0.9),
    0 0 12px rgba(255, 0, 0, 0.5);

  animation: sportivaWorldcupTextHighlight 1s infinite alternate;
}

.sportiva-live-worldcup-label::before {
  content: "●";
  color: #ff0000;
  margin-right: 7px;
  text-shadow:
    0 0 6px rgba(255, 0, 0, 1),
    0 0 14px rgba(255, 0, 0, 0.9);
  animation: sportivaWorldcupDotBlink 0.55s infinite alternate;
}

@keyframes sportivaWorldcupBtnGlow {
  0%, 100% {
    box-shadow:
      0 0 12px rgba(255, 230, 0, 0.9),
      0 0 28px rgba(255, 196, 0, 0.7),
      0 8px 20px rgba(0, 0, 0, 0.28);
  }

  50% {
    box-shadow:
      0 0 22px rgba(255, 242, 0, 1),
      0 0 45px rgba(255, 0, 0, 0.55),
      0 8px 25px rgba(0, 0, 0, 0.38);
  }
}


@keyframes sportivaWorldcupTextHighlight {
  0% {
    color: #111;
    text-shadow:
      1px 1px 0 #fff,
      0 0 6px rgba(255, 255, 255, 0.9);
  }

  100% {
    color: #b00000;
    text-shadow:
      1px 1px 0 #fff,
      0 0 8px rgba(255, 255, 255, 1),
      0 0 16px rgba(255, 0, 0, 0.8);
  }
}

@keyframes sportivaWorldcupDotBlink {
  from {
    opacity: 0.35;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes sportivaWorldcupShineMove {
  0% {
    left: -80%;
  }

  100% {
    left: 135%;
  }
}