/* Halloweenradio.net - adblock gate page */
.hr-adblock-page {
  position: relative;
  padding: 3rem 0 4.5rem;
  overflow: hidden;
  min-height: 60vh;
}

.hr-adblock-fog {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(144, 46, 187, 0.22), transparent 70%),
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(244, 131, 27, 0.12), transparent 65%),
    radial-gradient(ellipse 50% 35% at 85% 25%, rgba(99, 195, 40, 0.08), transparent 60%);
  opacity: 0.9;
}

.hr-adblock-bats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hr-adblock-bat {
  position: absolute;
  color: rgba(244, 131, 27, 0.35);
  font-size: 1.1rem;
  animation: hr-adblock-bat-float 9s ease-in-out infinite;
}

.hr-adblock-bat--1 { top: 12%; left: 8%; animation-delay: 0s; }
.hr-adblock-bat--2 { top: 22%; right: 12%; animation-delay: -3s; font-size: 0.9rem; }
.hr-adblock-bat--3 { top: 8%; right: 38%; animation-delay: -6s; font-size: 1.3rem; }

@keyframes hr-adblock-bat-float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.35; }
  50% { transform: translateY(12px) translateX(10px); opacity: 0.65; }
}

.hr-adblock-card {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.75rem 2.25rem;
  border-radius: var(--hr-radius, 12px);
  border: 1px solid rgba(244, 131, 27, 0.28);
  background:
    linear-gradient(165deg, rgba(30, 18, 28, 0.96) 0%, rgba(18, 12, 20, 0.98) 100%);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(144, 46, 187, 0.12) inset;
}

.hr-adblock-icon-wrap {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
}

.hr-adblock-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--hr-orange, #F4831B);
  filter: drop-shadow(0 0 12px rgba(244, 131, 27, 0.45));
}

.hr-adblock-icon--shield {
  font-size: 1.35rem;
  color: var(--hr-purple, #902EBB);
  transform: translate(1.4rem, 1.5rem);
}

.hr-adblock-title {
  font-family: var(--hr-font-heading, 'Outfit', sans-serif);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  text-align: center;
  margin: 0.35rem 0 1.25rem;
  color: #fff;
}

.hr-adblock-copy p,
.hr-adblock-upsell p {
  color: var(--hr-text-muted, #b8b8b8);
  line-height: 1.65;
}

.hr-adblock-upsell {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px dashed rgba(144, 46, 187, 0.45);
  background: rgba(144, 46, 187, 0.08);
}

.hr-adblock-upsell-title {
  font-family: var(--hr-font-heading, 'Outfit', sans-serif);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--hr-gold, #C9A54E);
}

.hr-adblock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hr-adblock-actions .btn {
  flex: 1 1 220px;
}

.hr-adblock-footnote {
  margin-top: 1.5rem;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 575.98px) {
  .hr-adblock-card {
    padding: 1.5rem 1.1rem 1.75rem;
  }

  .hr-adblock-actions .btn {
    flex-basis: 100%;
  }
}
