/* ============================================
   PotsOfGold.com — Vegas gold + emerald
   v1 · matches WinnersClub architecture
   ============================================ */

:root {
  --bg:        #0a0c10;
  --bg-2:      #11141a;
  --bg-3:      #181c25;
  --ink:       #f4eedb;
  --ink-soft:  #c8c0a8;
  --ink-mute:  #877f6a;
  --line:      #2a2e39;

  --gold:      #d4af37;
  --gold-2:    #f5d97a;
  --gold-deep: #8a6f1c;
  --emerald:   #0f5132;
  --emerald-2: #1c7a4f;
  --red:       #8b1a1a;

  --rad:       6px;
  --rad-lg:    14px;
  --shad:      0 18px 50px -20px rgba(0,0,0,.75);
  --shad-gold: 0 0 0 1px rgba(212,175,55,.25), 0 18px 40px -16px rgba(212,175,55,.35);

  --serif:     "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --max:       1240px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font: 16px/1.6 var(--sans);
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: #000; padding: 8px 12px; z-index: 100;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- TICKER ---------- */
.ticker {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 50%, var(--gold-deep));
  color: #1a1206;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}
.ticker__inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding: 8px 0;
  animation: tk 38s linear infinite;
}
.ticker__inner span { letter-spacing: .04em; }
.ticker__inner b { color: #000; }
@keyframes tk {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,12,16,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.nav__brand { flex-shrink: 0; }
.nav__links { display: flex; gap: 24px; margin-left: 8px; flex: 1; }
.nav__links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
}
.nav__links a:hover {
  color: var(--gold-2);
  border-bottom-color: var(--gold);
  text-decoration: none;
}
.nav__menu {
  display: none;
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  padding: 8px 12px; border-radius: var(--rad); cursor: pointer;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--rad);
  font: 600 14px/1 var(--sans);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  color: #1a1206;
  box-shadow: var(--shad-gold);
}
.btn--gold:hover {
  box-shadow: 0 0 0 1px var(--gold), 0 22px 44px -16px rgba(212,175,55,.6);
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-2);
}
.btn--ghost:hover { background: rgba(212,175,55,.08); }
.btn--xl { padding: 16px 30px; font-size: 15px; }

/* ---------- CODE HIGHLIGHT ---------- */
.code-highlight {
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1206;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .08em;
  font-family: "Inter", monospace;
  font-size: .95em;
}
.gold { color: var(--gold-2); }

/* ---------- TYPOGRAPHY ---------- */
.h2 {
  font: 600 clamp(28px, 3.4vw, 44px)/1.15 var(--serif);
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 18px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 12px;
}
.lede {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 40px;
  max-width: 780px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  padding: 80px 24px 60px;
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: -1;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 30% 50%, rgba(10,12,16,.85), rgba(10,12,16,.25) 70%, transparent 100%),
    linear-gradient(180deg, rgba(10,12,16,.3) 0%, rgba(10,12,16,.85) 100%);
}
.hero__copy {
  max-width: 680px;
  margin: 0 auto 0 0;
  width: 100%;
  padding-left: max(0px, calc((100vw - var(--max)) / 2));
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 18px;
}
.hero__h1 {
  font: 700 clamp(40px, 6vw, 76px)/1.05 var(--serif);
  margin: 0 0 24px;
  letter-spacing: -.015em;
}
.hero__h1 .code-highlight { font-size: .85em; vertical-align: 6%; }
.hero__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 30px;
  max-width: 600px;
}
.hero__cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.hero__finep {
  font-size: 12px;
  color: var(--ink-mute);
  max-width: 520px;
  margin: 0;
}
.hero__pills {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0; margin: 32px 0 0;
}
.hero__pills li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(0,0,0,.3);
}

/* ---------- OFFER BAR ---------- */
.offerbar {
  background: linear-gradient(180deg, var(--emerald), var(--emerald-2));
  border-top: 1px solid rgba(245,217,122,.25);
  border-bottom: 1px solid rgba(0,0,0,.3);
}
.offerbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}
.offerbar__cell { display: flex; flex-direction: column; gap: 2px; }
.offerbar__k {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  color: rgba(244,238,219,.65);
}
.offerbar__v { font-weight: 600; font-size: 15px; }
.offerbar__cell--cta { justify-content: center; }

/* ---------- PILLARS ---------- */
.pillars { padding: 90px 24px; background: var(--bg); }
.pillars__inner { max-width: var(--max); margin: 0 auto; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.pillar:hover { transform: translateY(-3px); border-color: rgba(212,175,55,.4); }
.pillar__media { display: block; }
.pillar__media img { aspect-ratio: 16/9; object-fit: cover; }
.pillar__h {
  font: 600 24px/1.2 var(--serif);
  margin: 22px 24px 8px;
  color: var(--gold-2);
}
.pillar__p { margin: 0 24px 18px; color: var(--ink-soft); font-size: 15px; }
.pillar__cta {
  display: block;
  margin: 0 24px 22px;
  color: var(--gold-2);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ---------- HOW TO ---------- */
.howto { padding: 90px 24px; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.howto__inner { max-width: var(--max); margin: 0 auto; }
.howto__steps {
  list-style: none; padding: 0; margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.howto__steps li {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 28px 24px;
  position: relative;
}
.howto__n {
  font: 700 16px/1 var(--sans);
  color: var(--gold);
  letter-spacing: .12em;
  display: block;
  margin-bottom: 14px;
}
.howto__steps h3 { font: 600 18px/1.2 var(--serif); margin: 0 0 10px; color: var(--ink); }
.howto__steps p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.howto__cta { text-align: center; margin-top: 44px; }

/* ---------- MIRRORS ---------- */
.mirrors { padding: 90px 24px; }
.mirrors__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mirrors__copy p { color: var(--ink-soft); font-size: 16px; margin: 0 0 24px; }
.mirrors__media img { border-radius: var(--rad-lg); }

/* ---------- SHFL ---------- */
.shfl { padding: 90px 24px; background: var(--bg-2); border-top: 1px solid var(--line); }
.shfl__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.shfl__copy p { color: var(--ink-soft); font-size: 16px; margin: 0 0 24px; }
.shfl__media img { border-radius: var(--rad-lg); }

/* ---------- TRUST ---------- */
.trust {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust__cell { display: flex; flex-direction: column; gap: 4px; }
.trust__k {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-mute);
}
.trust__v { font-weight: 600; font-size: 14px; color: var(--ink); }

/* ---------- PROMOS ---------- */
.promos { padding: 90px 24px; background: var(--bg); }
.promos__inner { max-width: var(--max); margin: 0 auto; }
.promos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.promo {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: 26px 22px;
}
.promo h3 {
  font: 600 18px/1.2 var(--serif);
  color: var(--gold-2);
  margin: 0 0 10px;
}
.promo p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* ---------- FAQ ---------- */
.faq { padding: 90px 24px; background: var(--bg-2); border-top: 1px solid var(--line); }
.faq__inner { max-width: 880px; margin: 0 auto; }
.faq__row {
  border-bottom: 1px solid var(--line);
  padding: 22px 4px;
}
.faq__row summary {
  cursor: pointer;
  font: 600 17px/1.35 var(--serif);
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq__row summary::-webkit-details-marker { display: none; }
.faq__row summary::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
}
.faq__row[open] summary::after { content: "−"; }
.faq__row p { color: var(--ink-soft); font-size: 15px; margin: 12px 0 0; }

/* ---------- CLOSER ---------- */
.closer {
  padding: 100px 24px 90px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(212,175,55,.12), transparent 70%),
    var(--bg);
  text-align: center;
}
.closer__inner { max-width: 760px; margin: 0 auto; }
.closer p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.closer__finep { font-size: 12px; color: var(--ink-mute); margin-top: 24px; }

/* ---------- FOOTER ---------- */
.ft {
  background: #06080b;
  border-top: 1px solid var(--line);
  padding: 70px 24px 30px;
  color: var(--ink-mute);
  font-size: 14px;
}
.ft__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.ft__col h4 {
  font: 600 13px/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink);
  margin: 0 0 14px;
}
.ft__col a {
  display: block;
  color: var(--ink-mute);
  padding: 4px 0;
  font-size: 14px;
}
.ft__col a:hover { color: var(--gold-2); text-decoration: none; }
.ft__col p { margin: 14px 0 0; color: var(--ink-mute); }
.ft__legal {
  max-width: var(--max);
  margin: 50px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.ft__legal p { margin: 0 0 8px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__menu { display: inline-block; }
  .pillars__grid, .promos__grid, .howto__steps {
    grid-template-columns: 1fr 1fr;
  }
  .mirrors__inner, .shfl__inner { grid-template-columns: 1fr; }
  .offerbar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .ft__inner { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 640px; padding: 60px 24px 40px; }
  .hero__media img { object-position: center 18%; }
}

@media (max-width: 560px) {
  .pillars__grid, .promos__grid, .howto__steps {
    grid-template-columns: 1fr;
  }
  .offerbar__inner { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: 1fr; }
  .ft__inner { grid-template-columns: 1fr; }
  .nav__inner { gap: 14px; padding: 12px 16px; }
  .nav__cta { padding: 10px 14px; font-size: 12px; }
  .hero { padding: 40px 20px 30px; min-height: 580px; }
  .hero__h1 { font-size: clamp(34px, 9vw, 50px); }
  .hero__lede { font-size: 15px; }
  .ticker__inner { gap: 30px; font-size: 12px; }
  .h2 { font-size: 28px; }
}

/* Stub page subtle styling */
body.stub { background: radial-gradient(ellipse at top, #1a1f24 0%, #0a0c0e 70%); min-height: 100vh; }
body.stub .nav { background: rgba(10,12,14,.85); backdrop-filter: blur(10px); }
body.stub main { animation: fadein .4s ease-out; }
@keyframes fadein { from { opacity:0; transform: translateY(8px);} to { opacity:1; transform:none;} }

/* ============================================
   PROMO PAGE TEMPLATE — Tier 1-5 fan-out
   ============================================ */
.promo-hero {
  position: relative;
  padding: 5rem 1.25rem 4rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,175,55,.15), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(15,81,50,.25), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.promo-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(212,175,55,.08) 0, transparent 8%),
    radial-gradient(circle at 80% 60%, rgba(212,175,55,.06) 0, transparent 10%),
    radial-gradient(circle at 50% 90%, rgba(245,217,122,.05) 0, transparent 9%);
  pointer-events: none;
}
.promo-hero__inner { max-width: 880px; margin: 0 auto; position: relative; }
.promo-hero__kicker {
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1rem;
}
.promo-hero__h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem); line-height: 1.05;
  margin: 0 0 1.25rem; color: var(--gold-2);
  text-shadow: 0 1px 0 rgba(0,0,0,.4);
}
.promo-hero__h1 em { font-style: normal; color: var(--ink); }
.promo-hero__lede {
  font-size: 1.15rem; line-height: 1.55; color: var(--ink-soft);
  margin: 0 0 1.75rem; max-width: 680px;
}
.promo-hero__chip {
  display: inline-block; background: var(--gold);
  color: #1a1206; font-weight: 800; font-family: var(--sans);
  padding: .35rem .8rem; border-radius: 4px;
  font-size: 1rem; letter-spacing: .12em;
  vertical-align: middle;
}
.promo-hero__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1206; font-weight: 700; font-family: var(--sans);
  font-size: 1.05rem; letter-spacing: .04em;
  padding: 1rem 1.75rem; border-radius: var(--rad);
  text-decoration: none; box-shadow: var(--shad-gold);
  transition: transform .15s ease;
}
.promo-hero__cta:hover { transform: translateY(-2px); text-decoration: none; }
.promo-hero__terms {
  display: block; margin-top: 1rem;
  font-size: .82rem; color: var(--ink-mute);
}

.promo-quickfacts {
  background: var(--bg-2); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 1.25rem;
}
.promo-quickfacts__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.promo-qf__item { text-align: center; }
.promo-qf__label {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 .35rem;
}
.promo-qf__value {
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold-2);
  font-weight: 700; margin: 0;
}

.promo-body {
  max-width: 760px; margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
}
.promo-body h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem); color: var(--gold-2);
  margin: 2.5rem 0 1rem; letter-spacing: -.01em;
}
.promo-body h3 {
  font-family: var(--sans); font-weight: 600;
  font-size: 1.15rem; color: var(--ink); margin: 1.75rem 0 .5rem;
}
.promo-body p { color: var(--ink-soft); font-size: 1.02rem; margin: 0 0 1.1rem; }
.promo-body ul { color: var(--ink-soft); padding-left: 1.4rem; margin: 0 0 1.25rem; }
.promo-body li { margin-bottom: .55rem; }
.promo-body strong { color: var(--gold-2); font-weight: 600; }
.promo-body code, .promo-body .codetag {
  background: var(--gold); color: #1a1206;
  font-family: var(--sans); font-weight: 800;
  padding: .12rem .45rem; border-radius: 3px;
  font-size: .92em; letter-spacing: .1em;
}
.promo-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0; padding: .5rem 0 .5rem 1.25rem;
  color: var(--ink); font-style: italic;
}

.promo-cta-mid {
  margin: 2.5rem 0;
  background: linear-gradient(180deg, rgba(212,175,55,.08), rgba(15,81,50,.08));
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--rad-lg);
  padding: 1.75rem; text-align: center;
}
.promo-cta-mid p { color: var(--ink); margin: 0 0 1rem; font-size: 1.05rem; }
.promo-cta-mid .btn--gold { padding: .85rem 1.5rem; }

.promo-faq { margin-top: 3rem; }
.promo-faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.promo-faq summary {
  cursor: pointer; font-weight: 600; color: var(--ink);
  font-family: var(--sans); font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
}
.promo-faq summary::-webkit-details-marker { display: none; }
.promo-faq summary::after {
  content: "+"; color: var(--gold); font-size: 1.4rem; line-height: 1;
}
.promo-faq details[open] summary::after { content: "−"; }
.promo-faq p { margin-top: .75rem; color: var(--ink-soft); }

.promo-related {
  background: var(--bg-2); padding: 3rem 1.25rem;
  border-top: 1px solid var(--line);
}
.promo-related__inner { max-width: var(--max); margin: 0 auto; }
.promo-related h2 {
  font-family: var(--serif); color: var(--gold-2);
  font-size: 1.6rem; margin: 0 0 1.5rem;
}
.promo-related__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.promo-related a {
  display: block; padding: 1rem 1.25rem;
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--rad); color: var(--ink);
  transition: border-color .15s ease, transform .15s ease;
}
.promo-related a:hover {
  border-color: var(--gold); text-decoration: none;
  transform: translateY(-2px);
}
.promo-related a strong {
  display: block; color: var(--gold-2); margin-bottom: .25rem;
  font-family: var(--serif); font-size: 1.15rem;
}
.promo-related a span { color: var(--ink-mute); font-size: .88rem; }

/* Footer ============================================ */
.footer { background: #07090c; border-top: 1px solid var(--line); padding: 3.5rem 1.25rem 2rem; margin-top: 4rem; }
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .footer__cols { grid-template-columns: 1fr; gap: 2rem; } }
.footer__brand { font-family: var(--serif); font-size: 1.5rem; color: var(--gold-2); margin: 0 0 .5rem; font-weight: 700; }
.footer__line { font-size: .92rem; color: var(--ink-mute); line-height: 1.55; margin: 0; }
.footer__head { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 .9rem; font-weight: 600; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: .55rem; }
.footer__list a { color: var(--ink-soft); font-size: .95rem; }
.footer__list a:hover { color: var(--gold-2); }
.footer__legal { padding-top: 2rem; font-size: .82rem; color: var(--ink-mute); line-height: 1.6; max-width: 760px; margin: 0; }
.footer__legal a { color: var(--gold); }

/* Container helper */
.container { max-width: var(--max); margin: 0 auto; }

/* ============================================================
   New components added June 2026 rebuild
   ============================================================ */

/* Footer 6-column grid (overrides 3-col for new site) */
.footer__cols--six {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.75rem;
}
@media (max-width: 1100px) { .footer__cols--six { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .footer__cols--six { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .footer__cols--six { grid-template-columns: 1fr; } }
.footer__brandline { grid-column: 1 / -1; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); margin-bottom: 1rem; }

/* Promo hero — two-column with offer box */
.promo-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 960px) {
  .promo-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
}
.promo-hero__copy { display: flex; flex-direction: column; gap: 1rem; }
.promo-hero__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* Homepage hero variant — slightly more breathing room */
.promo-hero--home .promo-hero__h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
.promo-hero--home .promo-hero__lede { font-size: 1.18rem; }

/* Offer box (right rail in hero) */
.offer-box {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(7, 9, 12, 0.6) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 1.5rem;
  position: sticky;
  top: 1rem;
}
.offer-box__inner { display: flex; flex-direction: column; gap: 0.9rem; }
.offer-box__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  font-weight: 600;
}
.offer-box__headline {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}
.offer-box__terms {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.offer-box__terms li { padding-left: 0; }
.offer-box__terms li strong { color: var(--gold-2); font-weight: 700; letter-spacing: 0.04em; }
.offer-box__cta { align-self: stretch; text-align: center; margin-top: 0.4rem; }
.offer-box__fine { font-size: 0.78rem; color: var(--ink-mute); margin: 0; line-height: 1.5; }

/* Code tag (inline span around MAXBET in body copy) */
.codetag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-2);
  font-family: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace;
  font-weight: 700;
  padding: 0.12em 0.5em;
  border-radius: 4px;
  letter-spacing: 0.06em;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.92em;
}

/* Copy code button (in hero) */
.copy-code {
  font-family: inherit;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.85rem 1.3rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.15s, color 0.15s;
}
.copy-code:hover { border-color: var(--gold); color: var(--gold-2); }

/* XL CTA button — already partially defined, ensure consistency */
.btn--xl { padding: 1rem 1.6rem; font-size: 1.05rem; }

/* Related cards grid */
.promo-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 1.3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.related-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}
.related-card strong { font-family: var(--serif); font-size: 1.05rem; color: var(--gold-2); font-weight: 700; }
.related-card span { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }

/* Table wrapper for horizontal scroll on small screens */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 480px;
}
.table-wrap th, .table-wrap td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table-wrap th {
  background: rgba(212, 175, 55, 0.06);
  font-weight: 600;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap td:first-child { font-weight: 600; color: var(--ink); }

/* FAQ details */
.promo-faq__list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.promo-faq details {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  transition: border-color 0.15s;
}
.promo-faq details[open] { border-color: rgba(212, 175, 55, 0.35); }
.promo-faq summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 3rem;
  user-select: none;
}
.promo-faq summary::-webkit-details-marker { display: none; }
.promo-faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.promo-faq details[open] summary::after { content: "−"; }
.promo-faq details > div { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); line-height: 1.65; }
.promo-faq details > div a { color: var(--gold); }

/* Body lists and ordered lists — improve readability */
.promo-body ul, .promo-body ol { padding-left: 1.4rem; line-height: 1.7; color: var(--ink-soft); margin: 1rem 0; }
.promo-body ol li, .promo-body ul li { margin-bottom: 0.5rem; }
.promo-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.2rem;
  margin: 1.5rem 0;
  color: var(--ink);
  font-style: italic;
  font-size: 1.05rem;
}

/* Active nav state */
.nav__links a.is-active { color: var(--gold-2); }

/* Active state on details when hovered */
.promo-faq summary:hover { color: var(--gold-2); }

/* ============================================
   HERO IMAGE — hostess photos in the hero
   ============================================ */
.promo-hero__pic {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(212, 175, 55, 0.18) inset;
  position: relative;
}
.promo-hero__pic img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.promo-hero__pic--home {
  max-width: 520px;
}
.promo-hero__pic--game {
  max-width: 560px;
}
.promo-hero__pic--game img {
  aspect-ratio: 16 / 9;
}
@media (max-width: 960px) {
  .promo-hero__pic {
    max-width: 360px;
    margin-top: 1rem;
  }
}

/* ============================================
   BYLINE — author + fact-checker block
   ============================================ */
.byline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem;
  background: rgba(15, 81, 50, 0.10);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--sans);
}
.byline__row { display: flex; flex-direction: column; gap: 0.15rem; }
.byline__label {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 0.25rem;
}
.byline__name {
  font-weight: 700; color: var(--ink); margin: 0; font-size: 0.95rem;
}
.byline__name a { color: inherit; text-decoration: none; border-bottom: 1px dotted var(--gold); }
.byline__name a:hover { color: var(--gold); }
.byline__role { font-size: 0.82rem; color: var(--muted); margin: 0; }
.byline__verified {
  grid-column: 1 / -1;
  font-size: 0.78rem; color: var(--muted);
  margin: 0.4rem 0 0; padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) {
  .byline { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* ============================================
   RATING CARD — category score breakdown
   ============================================ */
.rating-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 1.75rem;
  margin: 1.5rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(212,175,55,0.06) 0%, rgba(15,81,50,0.04) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 14px;
}
.rating-card__overall {
  display: flex; flex-direction: column; justify-content: center; gap: 0.4rem;
  padding-right: 1.5rem; border-right: 1px solid var(--line);
}
.rating-card__label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin: 0;
}
.rating-card__score {
  font-family: var(--serif); font-size: 3.4rem; line-height: 1;
  color: var(--ink); margin: 0; font-weight: 700;
}
.rating-card__hint { font-size: 0.82rem; color: var(--muted); margin: 0.5rem 0 0; }
.rating-card__rows { display: flex; flex-direction: column; gap: 0.85rem; }
.rating-row { display: flex; flex-direction: column; gap: 0.3rem; }
.rating-row__head { display: flex; justify-content: space-between; align-items: baseline; }
.rating-row__label { font-weight: 600; color: var(--ink); margin: 0; font-size: 0.95rem; }
.rating-row__score {
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  color: var(--gold); margin: 0;
}
.rating-row__bar {
  height: 6px; background: rgba(255,255,255,0.06);
  border-radius: 3px; overflow: hidden;
}
.rating-row__bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, #f5d97a 100%);
  border-radius: 3px;
}
.rating-row__blurb { font-size: 0.85rem; color: var(--muted); margin: 0.15rem 0 0; }
@media (max-width: 720px) {
  .rating-card { grid-template-columns: 1fr; gap: 1.25rem; }
  .rating-card__overall { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 1rem; }
}

/* ============================================
   PROS / CONS box
   ============================================ */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.proscons__col {
  padding: 1.25rem 1.4rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.proscons__col--pros {
  background: rgba(15, 81, 50, 0.12);
  border-color: rgba(72, 187, 120, 0.3);
}
.proscons__col--cons {
  background: rgba(120, 30, 30, 0.10);
  border-color: rgba(220, 100, 100, 0.25);
}
.proscons__h { font-size: 1rem; margin: 0 0 0.85rem; font-weight: 700; }
.proscons__col--pros .proscons__h { color: #6bd49a; }
.proscons__col--cons .proscons__h { color: #ee9a9a; }
.proscons ul { margin: 0; padding-left: 1.1rem; list-style: none; }
.proscons li {
  position: relative; padding-left: 1.3rem;
  margin: 0 0 0.55rem; font-size: 0.93rem; line-height: 1.45;
}
.proscons__col--pros li::before {
  content: "+"; position: absolute; left: 0; top: 0;
  font-weight: 700; color: #6bd49a; font-family: var(--sans);
}
.proscons__col--cons li::before {
  content: "−"; position: absolute; left: 0; top: 0;
  font-weight: 700; color: #ee9a9a; font-family: var(--sans);
}
@media (max-width: 720px) {
  .proscons { grid-template-columns: 1fr; }
}

/* ============================================
   STEPS — numbered claim flow
   ============================================ */
.steps {
  list-style: none; padding: 0; margin: 1.5rem 0 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  counter-reset: none;
}
.steps__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.steps__num {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  background: linear-gradient(180deg, var(--gold) 0%, #b9962f 100%);
  color: #07090c;
  box-shadow: 0 6px 18px -6px rgba(212, 175, 55, 0.5);
}
.steps__body { display: flex; flex-direction: column; gap: 0.35rem; }
.steps__body h3, .steps__body strong:first-child {
  font-family: var(--serif); font-size: 1.15rem; margin: 0;
  color: var(--ink);
}
.steps__body p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

/* ============================================
   CHANGELOG
   ============================================ */
.changelog-wrap { margin: 1.5rem 0 2rem; }
.changelog {
  list-style: none; padding: 0; margin: 0;
  border-left: 2px solid rgba(212, 175, 55, 0.3);
  padding-left: 1.5rem;
}
.changelog__item {
  position: relative;
  padding: 0 0 1.5rem;
}
.changelog__item:last-child { padding-bottom: 0; }
.changelog__item::before {
  content: ""; position: absolute;
  left: -1.65rem; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.changelog__date {
  font-family: var(--sans); font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 0.3rem;
}
.changelog__item h3 {
  font-size: 1.08rem; margin: 0 0 0.3rem; color: var(--ink);
  font-family: var(--serif);
}
.changelog__body { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.5; }

/* ============================================
   CALCULATOR WIDGETS
   ============================================ */
.calc {
  margin: 1.5rem 0 2rem;
  padding: 1.75rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212,175,55,0.06), transparent 60%),
    rgba(15, 81, 50, 0.08);
}
.calc__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.calc__lbl {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); display: block; margin: 0 0 0.35rem;
}
.calc__form input, .calc__form select {
  width: 100%; padding: 0.7rem 0.85rem;
  background: rgba(0,0,0,0.3); color: var(--ink);
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 1rem; font-family: var(--sans);
}
.calc__form input:focus, .calc__form select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.calc__out {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.calc__out > div {
  padding: 0.9rem 1rem;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  text-align: center;
}
.calc__val {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 700;
  color: var(--gold); display: block; line-height: 1.1;
}
.calc__note {
  font-size: 0.75rem; color: var(--muted); margin: 0.3rem 0 0;
  letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 600px) {
  .calc__form { grid-template-columns: 1fr; }
}

/* ============================================
   READER REVIEWS WIDGET
   ============================================ */
.reviews {
  margin: 1.5rem 0 2rem;
  padding: 1.75rem;
  background: rgba(15, 81, 50, 0.08);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.reviews__head {
  display: flex; align-items: center; gap: 1.5rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.reviews__aggregate { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; min-width: 120px; }
.reviews__score {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.reviews__stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.1em; }
.reviews__count { font-size: 0.78rem; color: var(--muted); }
.reviews__meta { flex: 1; }
.reviews__meta h3 { margin: 0 0 0.3rem; font-size: 1.1rem; font-family: var(--serif); }
.reviews__meta p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.reviews__list { display: flex; flex-direction: column; gap: 1rem; }
.reviews__item {
  padding: 1rem 1.25rem;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
}
.reviews__item p { margin: 0.4rem 0 0; }
.reviews__item strong { color: var(--ink); }
.reviews__cta-line {
  margin: 1.25rem 0 0; padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem; color: var(--muted); text-align: center;
}
@media (max-width: 600px) {
  .reviews__head { flex-direction: column; align-items: stretch; text-align: center; }
}
