
/* Fall sale announcement bar */
.sale-bar {
  --sale-bar-h: 52px;
  position: sticky;
  top: 0;
  z-index: 120;
  background: linear-gradient(90deg, #3a2418 0%, #5c3a24 45%, #7a5234 100%);
  color: #fff;
  min-height: var(--sale-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  box-sizing: border-box;
}
.sale-bar[hidden] { display: none !important; }
.sale-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  flex-wrap: wrap;
  width: min(100%, 1100px);
  text-align: center;
}
.sale-timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.28);
  border-radius: 8px;
  padding: 5px 10px 4px;
  font-variant-numeric: tabular-nums;
}
.sale-timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.1em;
  line-height: 1;
}
.sale-timer-unit strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
.sale-timer-unit span {
  margin-top: 2px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  opacity: 0.75;
}
.sale-timer-sep {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
  padding-bottom: 8px;
}
.sale-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}
.sale-copy-main {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.sale-copy em {
  font-style: italic;
  font-weight: 600;
}
.sale-code {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: #e8d5b5;
  color: #2a1a10;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-style: normal;
}
@media (max-width: 720px) {
  .sale-bar { --sale-bar-h: auto; padding: 10px 12px; }
  .sale-copy { align-items: center; text-align: center; font-size: 13px; }
  .sale-copy-main { justify-content: center; }
}

@import "./ui.css";

/* Live storefront bridges — map injected chrome to Mile High UI */

.store { background: var(--bg); color: var(--ink); }

/* Promo + RUO above sticky header (injected by store-chrome) */
.store-chrome-top {
  position: relative;
  z-index: 60;
}

.st-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--topbar-border);
  height: var(--header-h);
}

.st-header-inner,
.st-header .topbar-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--page-pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.st-logo,
.st-header .brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  flex-shrink: 0;
  text-decoration: none;
}
.st-logo:hover,
.st-header .brand:hover { color: var(--ink); }

.st-logo-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.st-logo .brand-word,
.st-header .brand-word {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  text-transform: none;
}

.st-nav,
.st-header .nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 1rem;
  flex: 1;
}
.st-nav a,
.st-header .nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.st-nav a:hover,
.st-header .nav a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.st-nav a[aria-current="page"],
.st-header .nav a.is-active { color: var(--ink); }

.st-actions,
.st-header .nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.st-header .nav-toggle {
  display: none;
  margin-left: auto;
}

.st-header .mobile-nav {
  display: none;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem var(--page-pad-x) 1rem;
}
.st-header .mobile-nav.is-open,
.st-header .mobile-nav:not([hidden]).is-open { display: block; }
.st-header .mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.st-header .mobile-nav a {
  color: var(--muted);
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.st-header .mobile-nav a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.st-header .mobile-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

@media (max-width: 860px) {
  .st-nav, .st-header .nav, .st-actions, .st-header .nav-actions { display: none; }
  .st-header .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .st-header { height: auto; min-height: var(--header-h); }
  .st-header .mobile-nav.is-open { display: block; }
}

/* Footer bridge */
.st-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 2.5rem 0 1.5rem;
}
.st-footer .footer-grid,
.st-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.st-footer h4 {
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.st-footer a { color: var(--muted); text-decoration: none; display: block; margin: 0.35rem 0; font-size: 0.875rem; }
.st-footer a:hover { color: var(--ink); }
.st-footer p { color: var(--faint); font-size: 0.85rem; line-height: 1.5; }
.st-footer-disclaimer { font-size: 0.75rem; color: var(--faint); margin: 1rem 0; max-width: 70ch; }
.st-footer-disclaimer p { margin: 0 0 0.65rem; }
.st-footer-legal,
.st-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--faint);
}
.st-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0.65rem;
}
@media (max-width: 800px) {
  .st-footer .footer-grid,
  .st-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .st-footer .footer-grid,
  .st-footer-grid { grid-template-columns: 1fr; }
}

/* Featured catalog on home — live product cards */
.section-catalog .product-grid {
  margin-top: 1rem;
}
.product-card .product-card-link { color: inherit; }


/* Policy / legal pages on store chrome */
.policy {
  padding: var(--section-y) 0;
  background: var(--band-2);
  color: var(--band-ink);
  min-height: 50vh;
}
.policy-wrap { max-width: 760px; }
.policy h1 { color: var(--band-ink); margin-bottom: 0.75rem; }
.policy h2 { color: var(--band-ink); font-size: 1.15rem; margin: 1.75rem 0 0.65rem; }
.policy p, .policy li { color: var(--band-muted); font-size: 0.95rem; line-height: 1.6; }
.policy .mark { color: var(--accent-on-light); }
.policy a { color: var(--accent-on-light); }
.policy-lede { font-size: 1.05rem; color: var(--band-ink); margin-bottom: 1.25rem; }

/* Section heads on light bands */
.section-band-2 .mark { color: var(--accent-on-light); }
.section-band-2 h2 { color: var(--band-ink); }


/* Keep store header sticky on small screens (ui.css sets .topbar relative) */
@media (max-width: 720px) {
  .st-header.topbar,
  header.topbar.st-header {
    position: sticky;
    top: 0;
    z-index: 50;
  }
}


/* Editorial brand lockup */
.st-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.st-header .brand-sub { color: var(--ok-on-dark); }
.st-logo-mark { width: 32px; height: 32px; }
.st-header {
  background: rgba(12, 16, 23, 0.95);
  backdrop-filter: blur(12px);
}
.footer-brand { align-items: flex-start; }
.footer-brand .brand-sub { margin-top: 0.2rem; }

/* Homepage hero product carousel (Stronger B editorial) */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  user-select: none;
  touch-action: pan-y;
}

.hero-carousel-stage {
  position: relative;
  width: 100%;
  height: min(520px, 70vw);
  outline: none;
  border-radius: 24px;
  --drag-x: 0px;
}

.hero-carousel-stage:focus-visible {
  box-shadow: 0 0 0 2px rgba(47, 111, 237, 0.85);
}

.hero-carousel-stage.is-dragging {
  cursor: grabbing;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateX(var(--drag-x, 0px)) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(var(--drag-x, 0px)) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hero-carousel .hero-vial {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.hero-carousel .hero-vial img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1;
  padding: 1.25rem;
  pointer-events: none;
}

.hero-slide[data-family="nad"] .hero-vial { background: var(--family-nad); }
.hero-slide[data-family="mots"] .hero-vial { background: var(--family-mots); }
.hero-slide[data-family="bpc"] .hero-vial { background: var(--family-bpc); }
.hero-slide[data-family="tb"] .hero-vial { background: var(--family-tb); }

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
  position: relative;
  z-index: 3;
}

.hero-carousel-nav {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-carousel-nav:hover,
.hero-carousel-nav:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  outline: none;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-carousel-dot {
  appearance: none;
  border: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-carousel-dot.is-active {
  width: 1.35rem;
  background: #fff;
}

.hero-carousel-dot:focus-visible {
  outline: 2px solid rgba(47, 111, 237, 0.9);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .hero-carousel-stage { height: 320px; }
}

@media (max-width: 720px) {
  .hero-carousel {
    max-width: min(420px, 100%);
  }
  .hero-carousel-stage {
    height: 280px;
  }
  .hero-carousel-nav {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

/* Welcome offer modal (replaces promo strip) */
.welcome-offer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.welcome-offer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 11, 16, 0.78);
}
.welcome-offer-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  background: #10161f;
  border: 1px solid rgba(47, 111, 237, 0.35);
  border-radius: 14px;
  padding: 1.6rem 1.35rem 1.25rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  color: #e8eef7;
}
.welcome-offer-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #9aa8bc;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.welcome-offer-close:hover { color: #fff; }
.welcome-offer-mark { display: block; margin-bottom: 0.75rem; }
.welcome-offer-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f6fed;
}
.welcome-offer-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.welcome-offer-lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #9aa8bc;
}
.welcome-offer-perks {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.welcome-offer-perks li {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: rgba(47, 111, 237, 0.08);
  border: 1px solid rgba(47, 111, 237, 0.22);
  font-size: 0.88rem;
  color: #d5deea;
}
.welcome-offer-perks strong { color: #fff; }
.welcome-offer-form {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.welcome-offer-form input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c1017;
  color: #fff;
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
}
.welcome-offer-form input:focus {
  outline: 2px solid rgba(47, 111, 237, 0.55);
  outline-offset: 1px;
}
.welcome-offer-form .btn { width: 100%; }
.welcome-offer-msg {
  margin: 0 0 0.65rem;
  color: #ff8f8f;
  font-size: 0.82rem;
}
.welcome-offer-links {
  display: grid;
  gap: 0.45rem;
  text-align: center;
  margin-bottom: 0.85rem;
}
.welcome-offer-links a,
.welcome-offer-skip {
  color: #9ec0ff;
  font-size: 0.84rem;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.welcome-offer-links a:hover,
.welcome-offer-skip:hover { color: #fff; text-decoration: underline; }
.welcome-offer-ruo {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #6b7a8d;
  text-align: center;
}
body.welcome-offer-open { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* Access-price / second storefront offer modal (chains after welcome) */
.jackpot-offer {
  position: fixed;
  inset: 0;
  z-index: 121;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
}
.jackpot-offer-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(47, 111, 237, 0.22), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 45, 149, 0.14), transparent 50%),
    rgba(2, 3, 6, 0.92);
}
@keyframes jackpot-offer-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(47, 111, 237, 0.75),
      0 0 22px rgba(245, 197, 66, 0.7),
      0 0 48px rgba(47, 111, 237, 0.55),
      0 0 84px rgba(255, 45, 149, 0.32),
      0 0 110px rgba(0, 229, 255, 0.22),
      0 32px 100px rgba(0, 0, 0, 0.7);
    border-color: rgba(245, 197, 66, 1);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(0, 229, 255, 0.55),
      0 0 34px rgba(245, 197, 66, 0.95),
      0 0 68px rgba(47, 111, 237, 0.8),
      0 0 100px rgba(255, 45, 149, 0.48),
      0 0 140px rgba(0, 229, 255, 0.35),
      0 32px 100px rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 229, 255, 0.9);
  }
}
@keyframes jackpot-offer-border-spin {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes jackpot-offer-shimmer {
  0% { transform: translateX(-130%) skewX(-18deg); opacity: 0; }
  12% { opacity: 0.7; }
  45% { opacity: 0.4; }
  100% { transform: translateX(230%) skewX(-18deg); opacity: 0; }
}
@keyframes jackpot-offer-price-pulse {
  0%, 100% {
    text-shadow:
      0 0 14px rgba(245, 197, 66, 1),
      0 0 32px rgba(245, 197, 66, 0.85),
      0 0 56px rgba(47, 111, 237, 0.65),
      0 0 84px rgba(255, 45, 149, 0.45),
      0 0 110px rgba(0, 229, 255, 0.25);
    transform: scale(1);
  }
  50% {
    text-shadow:
      0 0 22px rgba(245, 197, 66, 1),
      0 0 44px rgba(245, 197, 66, 0.95),
      0 0 72px rgba(47, 111, 237, 0.85),
      0 0 108px rgba(0, 229, 255, 0.55),
      0 0 130px rgba(255, 45, 149, 0.4);
    transform: scale(1.045);
  }
}
@keyframes jackpot-offer-headline-glow {
  0%, 100% {
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.95),
      0 0 28px rgba(47, 111, 237, 1),
      0 0 48px rgba(245, 197, 66, 0.65),
      0 0 72px rgba(255, 45, 149, 0.45),
      0 0 96px rgba(0, 229, 255, 0.3);
  }
  50% {
    text-shadow:
      0 0 18px rgba(255, 255, 255, 1),
      0 0 38px rgba(0, 229, 255, 0.95),
      0 0 60px rgba(245, 197, 66, 0.85),
      0 0 92px rgba(255, 45, 149, 0.6),
      0 0 120px rgba(47, 111, 237, 0.5);
  }
}
@keyframes jackpot-offer-cta-pulse {
  0%, 100% {
    box-shadow:
      0 0 18px rgba(47, 111, 237, 0.65),
      0 0 36px rgba(245, 197, 66, 0.45),
      0 0 56px rgba(255, 45, 149, 0.28);
  }
  50% {
    box-shadow:
      0 0 28px rgba(47, 111, 237, 0.9),
      0 0 52px rgba(245, 197, 66, 0.65),
      0 0 78px rgba(0, 229, 255, 0.42),
      0 0 96px rgba(255, 45, 149, 0.3);
  }
}
@keyframes jackpot-offer-hero-glow {
  0%, 100% {
    filter: drop-shadow(0 0 12px rgba(47, 111, 237, 0.55)) drop-shadow(0 0 22px rgba(245, 197, 66, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.65)) drop-shadow(0 0 30px rgba(255, 45, 149, 0.4));
  }
}
.jackpot-offer-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(94vh, 780px);
  overflow-y: auto;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 197, 66, 0.14), transparent 42%),
    radial-gradient(ellipse at 0% 100%, rgba(255, 45, 149, 0.1), transparent 45%),
    radial-gradient(ellipse at 100% 80%, rgba(47, 111, 237, 0.16), transparent 45%),
    #05070b;
  border: 2px solid rgba(245, 197, 66, 1);
  border-radius: 14px;
  padding: 1.85rem 1.35rem 1.25rem;
  color: #e8eef7;
  box-shadow:
    0 0 0 1px rgba(47, 111, 237, 0.75),
    0 0 22px rgba(245, 197, 66, 0.7),
    0 0 48px rgba(47, 111, 237, 0.55),
    0 0 84px rgba(255, 45, 149, 0.32),
    0 0 110px rgba(0, 229, 255, 0.22),
    0 32px 100px rgba(0, 0, 0, 0.7);
  text-align: center;
  animation: jackpot-offer-glow-pulse 2.1s ease-in-out infinite;
  isolation: isolate;
}
.jackpot-offer-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(
    120deg,
    #f5c542,
    #2f6fed,
    #ff2d95,
    #00e5ff,
    #f5c542,
    #2f6fed,
    #ff2d95
  );
  background-size: 320% 320%;
  animation: jackpot-offer-border-spin 2.8s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.jackpot-offer-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 38%,
    rgba(0, 229, 255, 0.18) 50%,
    rgba(245, 197, 66, 0.16) 58%,
    rgba(255, 45, 149, 0.1) 65%,
    transparent 100%
  );
  animation: jackpot-offer-shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.jackpot-offer-card > * {
  position: relative;
  z-index: 3;
}
.jackpot-offer-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #9aa8bc;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
}
.jackpot-offer-close:hover { color: #fff; text-shadow: 0 0 12px rgba(0, 229, 255, 0.85); }
.jackpot-offer-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5c542;
  text-shadow:
    0 0 12px rgba(245, 197, 66, 0.95),
    0 0 26px rgba(255, 45, 149, 0.5),
    0 0 36px rgba(47, 111, 237, 0.45);
}
.jackpot-offer-card h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(2.35rem, 7.5vw, 3.15rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.95),
    0 0 28px rgba(47, 111, 237, 1),
    0 0 48px rgba(245, 197, 66, 0.65),
    0 0 72px rgba(255, 45, 149, 0.45);
  animation: jackpot-offer-headline-glow 1.9s ease-in-out infinite;
}
.jackpot-offer-lead {
  margin: 0 0 0.95rem;
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
  color: #b8c6d8;
}
.jackpot-offer-deal {
  margin: 0 0 1.05rem;
  padding: 1rem 0.9rem 1.05rem;
  border-radius: 12px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 197, 66, 0.34), transparent 52%),
    radial-gradient(ellipse at 15% 100%, rgba(255, 45, 149, 0.22), transparent 48%),
    radial-gradient(ellipse at 85% 100%, rgba(0, 229, 255, 0.2), transparent 48%),
    linear-gradient(165deg, rgba(47, 111, 237, 0.38), rgba(5, 7, 11, 0.55) 42%, rgba(245, 197, 66, 0.22));
  border: 1px solid rgba(245, 197, 66, 0.7);
  box-shadow:
    inset 0 0 42px rgba(47, 111, 237, 0.35),
    inset 0 0 22px rgba(245, 197, 66, 0.16),
    0 0 28px rgba(255, 45, 149, 0.2),
    0 0 36px rgba(0, 229, 255, 0.12);
}
.jackpot-offer-hero {
  display: block;
  width: min(168px, 52%);
  height: auto;
  margin: 0 auto 0.55rem;
  object-fit: contain;
  animation: jackpot-offer-hero-glow 2.4s ease-in-out infinite;
}
.jackpot-offer-product {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(0, 229, 255, 0.45);
}
.jackpot-offer-price {
  margin: 0 0 0.2rem;
  font-size: clamp(3.4rem, 11vw, 4.4rem);
  font-weight: 900;
  line-height: 0.95;
  color: #f5c542;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 14px rgba(245, 197, 66, 1),
    0 0 32px rgba(245, 197, 66, 0.85),
    0 0 56px rgba(47, 111, 237, 0.65),
    0 0 84px rgba(255, 45, 149, 0.45);
  animation: jackpot-offer-price-pulse 1.75s ease-in-out infinite;
}
.jackpot-offer-tag {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ec0ff;
  text-shadow: 0 0 14px rgba(47, 111, 237, 0.7), 0 0 22px rgba(255, 45, 149, 0.3);
}
.jackpot-offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0.85rem;
  min-height: 3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 197, 66, 0.95) !important;
  box-shadow:
    0 0 18px rgba(47, 111, 237, 0.65),
    0 0 36px rgba(245, 197, 66, 0.45),
    0 0 56px rgba(255, 45, 149, 0.28);
  text-decoration: none;
  animation: jackpot-offer-cta-pulse 1.9s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.jackpot-offer-cta:hover {
  transform: scale(1.04);
  filter: brightness(1.14);
  box-shadow:
    0 0 32px rgba(245, 197, 66, 0.8),
    0 0 52px rgba(47, 111, 237, 0.75),
    0 0 78px rgba(0, 229, 255, 0.48),
    0 0 100px rgba(255, 45, 149, 0.35);
}
.jackpot-offer-ruo {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.4;
  color: #6b7a8d;
  text-align: center;
}
body.jackpot-offer-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .jackpot-offer-card,
  .jackpot-offer-card::before,
  .jackpot-offer-card::after,
  .jackpot-offer-card h2,
  .jackpot-offer-price,
  .jackpot-offer-cta,
  .jackpot-offer-hero {
    animation: none !important;
  }
  .jackpot-offer-cta:hover {
    transform: none;
  }
  .jackpot-offer-card {
    box-shadow:
      0 0 0 1px rgba(47, 111, 237, 0.75),
      0 0 26px rgba(245, 197, 66, 0.6),
      0 0 56px rgba(47, 111, 237, 0.5),
      0 0 84px rgba(255, 45, 149, 0.28),
      0 32px 100px rgba(0, 0, 0, 0.7);
  }
  .jackpot-offer-card::before {
    background: linear-gradient(120deg, #f5c542, #2f6fed, #ff2d95, #00e5ff);
    opacity: 0.95;
  }
  .jackpot-offer-card::after {
    display: none;
  }
  .jackpot-offer-hero {
    filter: drop-shadow(0 0 14px rgba(47, 111, 237, 0.5));
  }
}


.st-footer-fda,
.foot-legal-extra {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.1rem 0 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.st-footer-fda p,
.foot-legal-extra p {
  margin: 0 0 0.55rem;
  max-width: 72ch;
  font-size: 0.75rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.5);
}
.st-footer-fda p:last-child,
.foot-legal-extra p:last-child { margin-bottom: 0; }
