/* ============================================================
   AdCoin ($ADS) — styled to look like real, soul-crushing ad
   inventory (AdSense / Taboola / YouTube pre-roll / IAB consent)
   ============================================================ */

:root {
  --g-blue:   #1a73e8;   /* google action blue   */
  --g-blue-d: #1558b0;
  --g-green:  #1e8e3e;
  --ad-yellow:#ffcc00;   /* classic banner CTA    */
  --ad-yellow-d:#e0a800;
  --ink:      #202124;   /* google grey-900 text  */
  --ink-2:    #5f6368;   /* secondary text        */
  --line:     #dadce0;   /* borders               */
  --bg:       #f1f3f4;   /* page chrome grey      */
  --paper:    #ffffff;
  --adchoice: #4a90d9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: var(--g-blue); text-decoration: none; }
.muted { color: var(--ink-2); font-size: .85em; }
.coin-spin { display: inline-block; animation: spin 4s linear infinite; }
@keyframes spin { to { transform: rotateY(360deg); } }

/* ---------- generic buttons ---------- */
.btn {
  font-family: inherit; font-size: .9rem; font-weight: 500;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  border-radius: 4px; padding: .55em 1.1em; cursor: pointer;
  transition: box-shadow .15s, background .15s, border-color .15s;
}
.btn:hover { box-shadow: 0 1px 3px rgba(60,64,67,.3); }
.btn--primary { background: var(--g-blue); color: #fff; border-color: var(--g-blue); }
.btn--primary:hover { background: var(--g-blue-d); }
.btn--lg { font-size: 1.05rem; padding: .75em 1.6em; }
.btn--small { font-size: .8rem; padding: .4em .9em; }
.btn--text { background: none; border: none; color: var(--ink-2); }
.btn--text:hover { box-shadow: none; text-decoration: underline; }

/* ---------- the loud "ad creative" CTA buttons ---------- */
.cta {
  font-family: inherit; font-weight: 700; cursor: pointer;
  border: none; border-radius: 3px; padding: .6em 1.2em; font-size: .95rem;
  color: #1a1a1a; box-shadow: 0 2px 0 rgba(0,0,0,.18);
  transition: transform .08s, filter .15s;
}
.cta:hover  { filter: brightness(1.05); }
.cta:active { transform: translateY(2px); box-shadow: none; }
.cta--yellow { background: linear-gradient(#ffe169, var(--ad-yellow)); }
.cta--blue   { background: var(--g-blue); color: #fff; }
.cta--green  { background: var(--g-green); color: #fff; }
.cta--xl     { font-size: 1.15rem; padding: .8em 1.8em; }
.cta--sm     { font-size: .78rem; padding: .4em .8em; }
.cta--green.cta--xl { animation: ctaPulse 1.3s ease-in-out infinite; }
@keyframes ctaPulse { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.05);} }

/* ============================================================
   AD SLOT CHROME — the "Advertisement" label + AdChoices icon
   ============================================================ */
.adslot { background: #fafafa; border: 1px solid var(--line); }
.adslot__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2px 6px; background: #f4f4f4; border-bottom: 1px solid #eaeaea;
}
.adslot__label {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: #9aa0a6; font-weight: 400;
}
/* AdChoices: little blue triangle + x, just like the real corner icon */
.adchoices {
  display: inline-flex; align-items: center; gap: 1px; cursor: help;
  background: #e8f0fe; border-radius: 2px; padding: 0 2px; height: 13px;
}
.adchoices__tri {
  width: 0; height: 0;
  border-top: 4px solid transparent; border-bottom: 4px solid transparent;
  border-left: 7px solid var(--adchoice);
}
.adchoices__x { font-size: 11px; line-height: 1; color: var(--adchoice); font-style: normal; }

/* ============================================================
   TOP "SYSTEM" WARNING BAR (fake virus/scam strip)
   ============================================================ */
.sysbar {
  display: flex; align-items: center; gap: .6rem;
  background: #fff8e1; border-bottom: 1px solid #f0d000;
  padding: .4rem .8rem; font-size: .85rem; color: #6d4c00;
}
.sysbar.hide { display: none; }
.sysbar__ico { font-size: 1rem; }
.sysbar__txt { flex: 1; }
.sysbar__btn {
  font-family: inherit; font-size: .78rem; font-weight: 700; cursor: pointer;
  background: #d93025; color: #fff; border: none; border-radius: 3px; padding: .35em .8em;
  animation: nudge 1.2s ease-in-out infinite;
}
@keyframes nudge { 0%,100%{ transform: translateX(0);} 50%{ transform: translateX(2px);} }
.sysbar__x { background: none; border: none; cursor: pointer; color: #6d4c00; font-size: .85rem; }

/* ============================================================
   TOP LEADERBOARD AD (728x90)
   ============================================================ */
.adslot--leader { margin: 8px auto; max-width: 760px; }
.creative--leader {
  display: flex; align-items: center; gap: 1rem;
  background: linear-gradient(110deg, #11131a, #2b1055 60%, #6d1b7b);
  color: #fff; padding: 10px 14px; min-height: 90px; cursor: pointer;
}
.creative--leader .creative__art { font-size: 2.4rem; }
.creative--leader .creative__txt { flex: 1; line-height: 1.25; }
.creative--leader .creative__txt b { font-size: 1.1rem; display: block; }
.creative--leader .creative__txt span { font-size: .85rem; color: #d6c7ff; }

/* ============================================================
   SITE NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 1.2rem;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: .6rem 1.2rem; box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.nav__logo { font-size: 1.35rem; font-weight: 900; color: var(--ink); display: flex; align-items: center; gap: .4rem; }
.nav__links { display: flex; gap: 1.2rem; margin-left: auto; }
.nav__links a { color: var(--ink-2); font-weight: 500; font-size: .92rem; }
.nav__links a:hover { color: var(--g-blue); }
.nav__buy { white-space: nowrap; }

/* ============================================================
   LAYOUT
   ============================================================ */
.layout {
  display: grid; grid-template-columns: minmax(0,1fr) 320px;
  gap: 24px; max-width: 1180px; margin: 0 auto; padding: 16px 16px 40px;
}
.content {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 28px clamp(16px, 4vw, 40px);
}
.rail { display: flex; flex-direction: column; gap: 20px; }

/* ============================================================
   HERO / ARTICLE
   ============================================================ */
.hero { border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 8px; }
.hero__eyebrow { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #9aa0a6; margin-bottom: 10px; }
.hero__title { font-size: clamp(1.8rem, 5vw, 2.9rem); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; }
.hero__title .hl { color: var(--g-blue); }
.hero__lead { font-size: 1.12rem; color: #3c4043; margin: 16px 0; max-width: 60ch; }
.hero__cta { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.hero__disclaimer { font-size: .78rem; color: #9aa0a6; margin-top: 16px; }

/* ============================================================
   DISPLAY AD CREATIVES (rectangles / half-page)
   ============================================================ */
.adslot--incontent { max-width: 360px; margin: 28px auto; }
.adslot--rail, .adslot--sticky { width: 100%; }
.adslot--sticky { position: sticky; top: 72px; }

.creative--rect, .creative--halfpage {
  position: relative; cursor: pointer; text-align: center; color: #fff;
  background: radial-gradient(circle at 50% 0%, #3a2b8c, #160d3a);
  padding: 18px 16px 16px;
}
.creative--green { background: radial-gradient(circle at 50% 0%, #0c5e2e, #04361a); }
.creative--halfpage { min-height: 420px; display: flex; flex-direction: column; justify-content: center; gap: 10px; background: radial-gradient(circle at 50% 0%, #5a1170, #1a0033); }
.creative__kicker { font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--ad-yellow); margin-bottom: 6px; }
.creative__art { font-size: 3rem; line-height: 1; margin: 4px 0 8px; }
.creative--halfpage .creative__art { font-size: 3.4rem; }
.creative__headline { font-size: 1.4rem; font-weight: 900; line-height: 1.1; }
.creative--halfpage .creative__headline { font-size: 1.6rem; }
.creative__sub { font-size: .9rem; color: #d8d2f0; margin: 8px 0 14px; }
.creative__brand { font-size: 11px; color: #b9b2d8; margin-top: 12px; }
.creative .cta { margin: 0 auto; }

/* ============================================================
   VIDEO PRE-ROLL (YouTube-style)
   ============================================================ */
.player {
  max-width: 640px; margin: 0 auto;
  border-radius: 8px; overflow: hidden; background: #000; border: 1px solid #000;
}
.player__screen {
  position: relative; aspect-ratio: 16/9;
  background: radial-gradient(circle at 50% 40%, #2a0b5e, #050011);
  display: grid; place-items: center;
}
.player__bigtext {
  font-size: clamp(3rem, 12vw, 6rem); font-weight: 900; color: #fff;
  letter-spacing: -.03em; animation: zoom 1.6s ease-in-out infinite;
}
@keyframes zoom { 0%,100%{ transform: scale(1);} 50%{ transform: scale(1.08);} }
.player__adtag {
  position: absolute; left: 10px; bottom: 10px;
  background: var(--ad-yellow); color: #111; font-size: 11px; font-weight: 700;
  padding: 1px 5px; border-radius: 2px;
}
.player__visit {
  position: absolute; left: 10px; top: 10px;
  background: rgba(0,0,0,.7); color: #fff; font-size: 12px;
  padding: 4px 8px; border-radius: 2px; cursor: pointer;
}
.player__skip {
  position: absolute; right: 0; bottom: 26px;
  background: rgba(0,0,0,.78); color: #fff; border: 1px solid rgba(255,255,255,.6);
  border-right: none; border-radius: 2px 0 0 2px; padding: 8px 14px;
  font-family: inherit; font-size: .9rem; cursor: not-allowed;
}
.player__skip:not([disabled]) { cursor: pointer; font-weight: 700; }
.player__skip:not([disabled]):hover { background: #000; }
.player__resume {
  position: absolute; right: 10px; top: 10px;
  background: rgba(0,0,0,.6); color: #ddd; font-size: 11px; padding: 3px 7px; border-radius: 2px;
}
.player__progress { height: 4px; background: #444; }
.player__progress-fill { height: 100%; width: 0; background: var(--ad-yellow); transition: width .25s linear; }

/* ============================================================
   CONTENT BLOCKS
   ============================================================ */
.block { padding: 32px 0; border-top: 1px solid var(--line); }
.block__title { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 900; letter-spacing: -.02em; margin-bottom: 8px; }
.block__lead { color: var(--ink-2); margin-bottom: 20px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.infocard { background: #fafbfc; border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.infocard__ico { font-size: 1.8rem; }
.infocard h3 { font-size: 1.15rem; margin: 6px 0; }
.infocard p { font-size: .92rem; color: #3c4043; }

/* tokenomics */
.tokenomics { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }
.pie {
  width: 220px; height: 220px; border-radius: 50%; border: 1px solid var(--line);
  background: conic-gradient(#7c4dff 0 40%, #1a73e8 40% 65%, #d93025 65% 85%, #f9ab00 85% 95%, #1e8e3e 95% 100%);
}
.legend { list-style: none; font-size: 1rem; }
.legend li { display: flex; align-items: center; gap: 10px; margin: 10px 0; }
.dot { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.dot--1 { background: #7c4dff; } .dot--2 { background: #1a73e8; }
.dot--3 { background: #d93025; } .dot--4 { background: #f9ab00; } .dot--5 { background: #1e8e3e; }

/* roadmap */
.roadmap { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 14px; }
.phase { background: #fafbfc; border: 1px solid var(--line); border-radius: 8px; padding: 16px; }
.phase__tag { display: inline-block; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 99px; margin-bottom: 8px; }
.phase h3 { font-size: 1.15rem; margin-bottom: 4px; }
.phase p { font-size: .9rem; color: #3c4043; }

/* taboola */
.taboola { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.taboola__head { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.taboola__head span:first-child { font-weight: 700; font-size: 1.05rem; }
.taboola__by { font-size: 11px; color: #9aa0a6; }
.taboola__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 0; }
.tab-card { display: block; padding: 12px; cursor: pointer; border-right: 1px solid var(--line); }
.tab-card:hover { background: #f8f9fa; }
.tab-card__img { aspect-ratio: 16/10; border-radius: 4px; display: grid; place-items: center; font-size: 2.4rem; margin-bottom: 8px; }
.tab-card__img--a { background: linear-gradient(135deg,#ffd194,#d1913c); }
.tab-card__img--b { background: linear-gradient(135deg,#a18cd1,#fbc2eb); }
.tab-card__img--c { background: linear-gradient(135deg,#84fab0,#8fd3f4); }
.tab-card__img--d { background: linear-gradient(135deg,#ff9a9e,#fad0c4); }
.tab-card__h { font-size: .92rem; font-weight: 500; color: var(--ink); line-height: 1.25; }
.tab-card__src { font-size: 11px; color: #9aa0a6; margin-top: 6px; }

/* quotes */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; }
.quote { background: #fafbfc; border-left: 3px solid var(--g-blue); padding: 14px 16px; font-style: italic; color: #3c4043; }
.quote cite { display: block; margin-top: 8px; font-size: .8rem; font-style: normal; color: var(--ink-2); }

/* how to buy */
.steps { list-style: none; max-width: 560px; }
.steps li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
.steps__n { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--g-blue); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; }
.ca { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px; background: #f1f3f4; border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px; margin: 18px 0; max-width: 100%; }
.ca__label { font-size: 11px; font-weight: 700; color: var(--ink-2); letter-spacing: .05em; }
.ca code { font-family: "Roboto Mono", monospace; font-size: .85rem; word-break: break-all; color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #c8c8c8; text-align: center; padding: 32px 16px 120px; }
.footer__logo { font-weight: 900; font-size: 1.3rem; color: #fff; margin-bottom: 10px; }
.footer p { max-width: 640px; margin: 8px auto; font-size: .85rem; line-height: 1.55; }
.footer__copy { font-size: .78rem; color: #8a8a8a; margin-top: 12px; }

/* ============================================================
   STICKY SKYSCRAPERS (160x600)
   ============================================================ */
.sky {
  position: fixed; top: 80px; z-index: 35; width: 150px;
  background: var(--paper); border: 1px solid var(--line); box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.sky--left  { left: 8px; } .sky--right { right: 8px; }
.sky.hide { display: none; }
.sky__bar { display: flex; justify-content: space-between; align-items: center; padding: 2px 6px; background: #f4f4f4; border-bottom: 1px solid #eaeaea; }
.sky__bar span { font-size: 10px; color: #9aa0a6; text-transform: uppercase; letter-spacing: .1em; }
.sky__x { background: none; border: none; cursor: pointer; color: #9aa0a6; font-size: .8rem; }
.sky__body { text-align: center; color: #fff; padding: 16px 10px; cursor: pointer; min-height: 460px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: radial-gradient(circle at 50% 20%, #5a1170, #160033); }
.sky__art { font-size: 2.6rem; }
.sky__body p { font-weight: 900; font-size: 1.15rem; line-height: 1.15; }

/* ============================================================
   OVERLAYS / MODALS
   ============================================================ */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.7); display: grid; place-items: center; padding: 16px;
  animation: fade .2s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.overlay[hidden] { display: none; }

/* interstitial "prize" pop-up (scam aesthetic) */
.interstitial {
  position: relative; width: 100%; max-width: 460px; background: #fff;
  border-radius: 6px; overflow: visible; box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: drop .3s cubic-bezier(.2,1.3,.5,1);
}
@keyframes drop { from { transform: translateY(-30px); opacity: 0; } to { transform: none; opacity: 1; } }
.interstitial__head {
  background: linear-gradient(#2bbf4e, var(--g-green)); color: #fff; text-align: center;
  font-weight: 900; font-size: 1.4rem; padding: 14px; letter-spacing: .01em;
}
.interstitial__body { padding: 22px 20px 24px; text-align: center; }
.interstitial__badge { display: inline-block; background: #e6f4ea; color: var(--g-green); border: 1px solid #b7e1c1; border-radius: 99px; font-size: 12px; font-weight: 700; padding: 3px 12px; margin-bottom: 12px; }
.interstitial__big { font-size: 1.2rem; margin: 8px 0; }
.interstitial__big b { color: #d93025; }
.interstitial .cta { margin: 16px auto 6px; }
.interstitial__fine { font-size: 11px; color: #9aa0a6; margin-top: 6px; }
/* the runaway "Close Ad" pill — low-contrast, just like real ones */
.interstitial__close {
  position: absolute; top: -12px; right: -8px;
  background: rgba(0,0,0,.55); color: #fff; border: none; border-radius: 3px;
  font-size: 11px; padding: 4px 8px; cursor: pointer; font-family: inherit;
}
.runaway { transition: top .12s ease, left .12s ease, transform .12s ease; }

/* exit-intent newsletter pop-up */
.popad { position: relative; width: 100%; max-width: 420px; background: #fff; border-radius: 6px; padding: 28px 24px 22px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.5); animation: drop .3s ease; }
.popad__close { position: absolute; top: 8px; right: 10px; background: none; border: none; font-size: 1.1rem; color: #9aa0a6; cursor: pointer; }
.popad__emoji { font-size: 2.4rem; }
.popad__h { font-size: 1.5rem; font-weight: 900; margin: 6px 0 8px; }
.popad p { color: #3c4043; font-size: .95rem; }
.popad__input { width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 4px; font-family: inherit; font-size: .95rem; margin: 14px 0 10px; }
.popad .cta { width: 100%; }
.popad__decline { display: block; margin: 10px auto 0; background: none; border: none; color: #9aa0a6; font-size: .82rem; text-decoration: underline; cursor: pointer; font-family: inherit; }

/* ============================================================
   CHROME-STYLE PUSH NOTIFICATION PROMPT
   ============================================================ */
.push {
  position: fixed; top: 8px; left: 16px; z-index: 95; width: 360px; max-width: calc(100% - 32px);
  background: #fff; border: 1px solid #d0d0d0; border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.22); padding: 14px 16px;
  animation: pushIn .25s ease;
}
@keyframes pushIn { from { transform: translateY(-12px); opacity: 0; } to { transform: none; opacity: 1; } }
.push[hidden] { display: none; }
.push__site { font-size: .82rem; color: var(--ink-2); display: flex; align-items: center; gap: 5px; }
.push__msg { font-size: .98rem; color: var(--ink); margin: 6px 0 12px; }
.push__msg small { display: block; color: #9aa0a6; margin-top: 3px; font-size: .8rem; }
.push__actions { display: flex; justify-content: flex-end; gap: 8px; }
.push__btn { font-family: inherit; font-size: .85rem; font-weight: 500; padding: .45em 1em; border-radius: 4px; cursor: pointer; border: 1px solid var(--line); background: #fff; color: var(--g-blue); }
.push__btn--allow { background: var(--g-blue); color: #fff; border-color: var(--g-blue); }

/* ============================================================
   PROVESOURCE-STYLE LIVE TOASTS
   ============================================================ */
.toasts { position: fixed; bottom: 96px; left: 16px; z-index: 80; display: flex; flex-direction: column; gap: 8px; max-width: 300px; }
.toast {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 12px; box-shadow: 0 4px 14px rgba(0,0,0,.15); font-size: .85rem;
  animation: toastIn .35s ease, toastOut .4s ease 4.6s forwards;
}
.toast b { color: var(--ink); }
@keyframes toastIn  { from { transform: translateX(-120%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes toastOut { to { transform: translateX(-120%); opacity: 0; } }

/* ============================================================
   IAB-STYLE COOKIE CONSENT
   ============================================================ */
.consent { position: fixed; inset: 0; z-index: 110; background: rgba(0,0,0,.45); display: grid; place-items: end center; padding: 0; }
.consent[hidden] { display: none; }
.consent__inner { width: 100%; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(0,0,0,.2); padding: 20px clamp(16px,5vw,48px); animation: cookieUp .3s ease; }
@keyframes cookieUp { from { transform: translateY(100%); } to { transform: none; } }
.consent__h { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.consent__p { font-size: .88rem; color: #3c4043; max-width: 80ch; }
.consent__actions { display: flex; gap: 12px; align-items: center; margin-top: 14px; flex-wrap: wrap; }
.consent__accept { padding: .7em 2.2em; }
.consent__manage { background: none; border: none; color: var(--ink-2); text-decoration: underline; cursor: pointer; font-family: inherit; font-size: .85rem; }

/* ============================================================
   STICKY BOTTOM ANCHOR AD
   ============================================================ */
.anchor {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -2px 10px rgba(0,0,0,.12);
  padding: 6px 40px 8px; text-align: center;
}
.anchor.hide { display: none; }
.anchor__label { display: block; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #9aa0a6; }
.anchor__x { position: absolute; top: 2px; right: 6px; background: #eee; border: 1px solid var(--line); border-radius: 50%; width: 20px; height: 20px; cursor: pointer; font-size: .7rem; color: var(--ink-2); }
.anchor__creative { display: inline-flex; align-items: center; gap: 10px; font-size: .9rem; cursor: pointer; flex-wrap: wrap; justify-content: center; }
.anchor__art { font-size: 1.4rem; }

/* ============================================================
   BUY CELEBRATION
   ============================================================ */
.buy-burst { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; pointer-events: none; }
.buy-burst[hidden] { display: none; }
.buy-burst__msg { font-weight: 900; font-size: clamp(2.5rem, 12vw, 6rem); color: var(--g-green); text-align: center; text-shadow: 0 4px 18px rgba(0,0,0,.3); animation: burst .9s ease; }
.buy-burst__msg span { display: block; font-size: 1.1rem; color: var(--ink); font-weight: 500; }
@keyframes burst { from { transform: scale(.3); opacity: 0; } 60% { transform: scale(1.1); } to { transform: scale(1); opacity: 1; } }
.confetti-piece { position: fixed; top: -20px; z-index: 130; width: 10px; height: 14px; pointer-events: none; will-change: transform; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) { .sky { display: none; } }
@media (max-width: 860px) {
  .layout { grid-template-columns: 1fr; }
  .rail { flex-direction: row; flex-wrap: wrap; }
  .adslot--rail, .adslot--sticky { flex: 1 1 280px; }
  .adslot--sticky { position: static; }
  .creative--halfpage { min-height: 260px; }
}
@media (max-width: 560px) {
  .nav__links { display: none; }
  .creative--leader { flex-direction: column; text-align: center; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
