:root {
  --primary-rgb: 0, 76, 92;
  --primary-color: #004c5c;
}
@keyframes glowingPulseV2 {
  0%,
  100% {
    box-shadow: inset 0 0 5px rgba(var(--primary-rgb), 0),
      0 0 10px rgba(var(--primary-rgb), 0);
    filter: drop-shadow(0 0 0px rgba(var(--primary-rgb), 0));
    transform: scale(1);
  }
  50% {
    box-shadow: inset 0 0 12px rgba(var(--primary-rgb), 0.6),
      0 0 18px rgba(var(--primary-rgb), 0.7);
    filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.7));
    transform: scale(1.06);
  }
}

.glow-banner {
  position: relative;
  display: block;
  overflow: hidden;
  animation: glowingPulseV2 2s infinite ease-in-out;
  border-radius: 8px;
}

.glow-banner img {
  display: block;
  max-width: 100%;
  height: auto;
}

.glow-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: sweepGlow 3.5s infinite linear;
  pointer-events: none;
}

@keyframes sweepGlow {
  0% {
    left: -75%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: -75%;
  }
}

.shake-zoom {
  position: relative;
  display: block;
  overflow: hidden;
  animation: shakeZoom 3s ease-in-out infinite;
}

@keyframes shakeZoom {
  0%,
  100% {
    transform: translateX(0) scale(1);
  }
  25% {
    transform: translateX(-5px) scale(1.1);
  }
  50% {
    transform: translateX(5px) scale(0.9);
  }
  75% {
    transform: translateX(-5px) scale(1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);

    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);

    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);

    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  display: block;
  max-width: var(--pulse-max-w, 100%) !important;
  margin-inline: auto;
  animation: pulse 3s ease-in-out infinite;
}
