/* Homepage hero + Buy Now + silo SEO UI */

.hero-headline {
  font-family: var(--font-head, "League Spartan", sans-serif) !important;
  font-size: clamp(18px, 4.5vw, 30px) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
  max-width: min(920px, 94vw) !important;
  margin: 14px auto 16px !important;
  padding: 0 14px !important;
  text-align: center !important;
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: break-word;
  color: #0f172a !important;
}

.hero-headline .highlight {
  color: #1a56db !important;
  -webkit-text-fill-color: #1a56db !important;
  background: none !important;
  text-decoration: none !important;
}

.hero-headline a {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none; /* headline is text; CTA is Buy Now */
}

.hero-buy-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 22px;
  padding: 0 14px;
  width: 100%;
  max-width: 520px;
}

.btn-buy-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head, "League Spartan", sans-serif);
  font-weight: 800;
  font-size: clamp(16px, 4vw, 20px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, #ef4444 0%, #f59e0b 55%, #1a56db 100%);
  background-size: 200% 200%;
  box-shadow: 0 10px 28px rgba(239, 68, 68, 0.35);
  animation: buyPulse 2s ease-in-out infinite, buyShine 3.5s linear infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-buy-now:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 34px rgba(26, 86, 219, 0.4);
  color: #fff !important;
}

@keyframes buyPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(239, 68, 68, 0.35); }
  50% { box-shadow: 0 14px 36px rgba(245, 158, 11, 0.55); }
}
@keyframes buyShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hide leftover ad slots if any */
body.page-home .ad-slot,
body.page-home .ad-label,
body.page-home ins.adsbygoogle {
  display: none !important;
}

/* Non-home: hide timers if any remain */
body:not(.page-home) .timer-widget,
body:not(.page-home) .deal-banner + .timer-widget {
  display: none !important;
}

/* Silo UI */
.silo-breadcrumbs {
  max-width: 860px;
  margin: 12px auto 8px;
  padding: 0 16px;
  font-size: 13px;
  color: #64748b;
  text-align: left;
}
.silo-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.silo-breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: #94a3b8;
}
.silo-hub {
  max-width: 720px;
  margin: 12px auto 24px;
  text-align: left;
  padding: 0 8px;
}
.silo-hub-list {
  margin: 8px 0 16px 1.1rem;
}
.silo-related {
  max-width: 860px;
  margin: 24px auto 8px;
  padding: 14px 18px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  color: #1e3a8a;
}
.footer-meta {
  text-align: center !important;
  margin: 14px auto 0 !important;
  max-width: 640px !important;
  display: block !important;
  line-height: 1.55 !important;
  color: #94a3b8 !important;
  font-size: 12px !important;
}
.site-footer,
.site-footer p {
  text-align: center !important;
}
.site-footer > p {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(16px, 5.2vw, 22px) !important;
    padding: 0 10px !important;
    margin: 12px auto 14px !important;
  }
  .btn-buy-now {
    min-height: 50px;
    border-radius: 14px;
    font-size: clamp(15px, 4.5vw, 18px);
  }
  .hero-buy-wrap { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-buy-now { animation: none; }
}
