#skipowls-launch-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  background: linear-gradient(90deg, #1a0800 0%, #3d1200 25%, #5c1a00 50%, #3d1200 75%, #1a0800 100%);
  background-size: 200% 100%;
  animation: sl-banner-bg 4s ease infinite;
  border-bottom: 1px solid rgba(255, 120, 0, 0.45);
  box-shadow: 0 4px 24px rgba(255, 80, 0, 0.25);
}

@keyframes sl-banner-bg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.sl-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 72rem;
  margin: 0 auto;
  padding: 10px 20px;
}

.sl-banner__fire {
  font-size: 1.35rem;
  line-height: 1;
  animation: sl-fire-bounce 0.8s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.9));
}

@keyframes sl-fire-bounce {
  0%, 100% { transform: scale(1) rotate(-6deg); }
  50% { transform: scale(1.2) rotate(6deg); }
}

.sl-banner__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(255, 245, 230, 0.95);
  text-align: center;
  max-width: 42rem;
}

.sl-banner__text strong {
  color: #ffb347;
}

.sl-banner__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff !important;
  white-space: nowrap;
  background: linear-gradient(135deg, #ff6b00, #ff2d00, #ff9500, #ff2d00);
  background-size: 300% 300%;
  animation: sl-cta-gradient 2s ease infinite, sl-cta-pulse 1.5s ease-in-out infinite;
  box-shadow:
    0 0 0 0 rgba(255, 100, 0, 0.7),
    0 0 20px rgba(255, 80, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease;
}

.sl-banner__cta::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ff9500, #ff2d00, #ffcc00, #ff2d00);
  background-size: 300% 300%;
  animation: sl-cta-gradient 2s ease infinite;
  z-index: -1;
  opacity: 0.6;
  filter: blur(6px);
}

.sl-banner__cta:hover {
  transform: scale(1.06);
  color: #fff !important;
}

.sl-banner__cta-flame {
  animation: sl-fire-bounce 0.6s ease-in-out infinite;
}

.sl-banner__cta-arrow {
  transition: transform 0.2s ease;
}

.sl-banner__cta:hover .sl-banner__cta-arrow {
  transform: translateX(4px);
}

@keyframes sl-cta-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes sl-cta-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(255, 100, 0, 0.7),
      0 0 20px rgba(255, 80, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(255, 100, 0, 0),
      0 0 32px rgba(255, 120, 0, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

@media (max-width: 640px) {
  .sl-banner__inner {
    padding: 10px 14px;
    gap: 8px;
  }

  .sl-banner__text {
    font-size: 0.8rem;
  }

  .sl-banner__cta {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}
