:root {
  --ink: #1d2926;
  --muted: #5f6f69;
  --page: #fffaf0;
  --surface: #ffffff;
  --surface-2: #f1f7f2;
  --line: #d8e2dc;
  --gold: #f9a11b;
  --gold-deep: #d87408;
  --green: #14866d;
  --india-green: #19965b;
  --indigo: #315b91;
  --ivory: #fffaf0;
  --red: #d95049;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 100;
  background: var(--gold);
  color: #15120a;
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, .96);
  backdrop-filter: blur(14px);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff9933 0 33.333%, #f5f0e4 33.333% 66.666%, #138808 66.666% 100%);
}
.nav-shell {
  width: min(100% - 28px, var(--max));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.brand-logo { display: block; width: 76px; height: auto; }
.site-footer .brand-logo { width: 88px; }
.menu-toggle {
  min-width: 72px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}
.main-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 64px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 12px 18px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--page);
}
.main-nav.is-open { display: grid; }
.main-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}
.main-nav a[aria-current="page"], .main-nav a:hover { color: var(--gold); }

.shell { width: min(100% - 28px, var(--max)); margin: 0 auto; }
.band { border-top: 1px solid var(--line); padding: 56px 0; }
.band:first-child { border-top: 0; }
.band.soft {
  background-color: var(--surface);
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(255, 153, 51, .055) 48% 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(19, 136, 8, .05) 48% 52%, transparent 53%);
  background-size: 30px 30px;
}
.band.compact { padding: 34px 0; }

.hero { padding: 38px 0 44px; overflow: hidden; }
.hero-grid { display: grid; gap: 30px; align-items: center; }
.editorial-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 64px 0 80px;
  background-image: url("/assets/original-card-reward-dollar-hero-v4.jpg");
  background-size: cover;
  background-position: 62% center;
  isolation: isolate;
}
.editorial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 252, 244, .98) 0%, rgba(255, 252, 244, .93) 42%, rgba(255, 252, 244, .46) 66%, rgba(255, 252, 244, .08) 100%);
}
.hero-copy-panel { max-width: 690px; }
.editorial-hero h1 { color: #182420; text-shadow: none; }
.editorial-hero .lead { color: #3c4b46; text-shadow: none; }
.editorial-hero .microcopy { color: #52625c; }
.eyebrow {
  margin: 0 0 8px;
  color: #c86608;
  font-size: .79rem;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: 0; }
h1 { max-width: 780px; font-size: 2.45rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.1rem; }
.lead { max-width: 760px; margin: 18px 0 0; color: #4f5e59; font-size: 1.07rem; }
.hero-actions, .action-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--gold);
  color: #18140a;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(217, 116, 8, .2);
}
.button.secondary { background: transparent; color: var(--ink); border-color: #53635e; }
.primary-download {
  width: min(100%, 360px);
  min-height: 58px;
  font-size: 1.06rem;
}
.button:hover { background: #ffb84f; }
.button.secondary:hover { border-color: var(--green); background: var(--surface-2); }
.button[aria-disabled="true"] { cursor: default; }
.microcopy { margin: 13px 0 0; color: var(--muted); font-size: .86rem; }

.product-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.phone {
  width: min(76vw, 310px);
  aspect-ratio: 9 / 16;
  padding: 9px;
  border: 1px solid #46534f;
  border-radius: 28px;
  background: #030605;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  transform: rotate(2deg);
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.card-fan { position: absolute; left: 2%; bottom: 8%; width: 122px; height: 138px; }
.playing-card {
  position: absolute;
  width: 76px;
  height: 108px;
  padding: 7px;
  border: 1px solid #d7dad7;
  border-radius: 7px;
  background: #f9faf7;
  color: #151818;
  font: 900 1.35rem/1 Georgia, serif;
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
}
.playing-card.red { color: #c53636; }
.playing-card:nth-child(1) { left: 0; top: 24px; transform: rotate(-18deg); }
.playing-card:nth-child(2) { left: 28px; top: 10px; transform: rotate(-2deg); }
.playing-card:nth-child(3) { left: 55px; top: 26px; transform: rotate(15deg); }

.fact-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: inset 0 3px 0 #ff9933, inset 0 -3px 0 #138808;
}
.fact { min-height: 88px; padding: 16px; border-bottom: 1px solid var(--line); }
.fact:nth-child(odd) { border-right: 1px solid var(--line); }
.fact strong { display: block; font-size: 1.08rem; }
.fact span { display: block; margin-top: 3px; color: var(--muted); font-size: .82rem; }

.release-scan {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 10%;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(69, 200, 164, .9);
}
.section-head { max-width: 780px; margin-bottom: 28px; }
.section-head p { margin: 12px 0 0; color: var(--muted); }
.prose { max-width: 780px; }
.prose p { color: #4f5e59; }

.app-details-stack { display: grid; gap: 28px; }
.app-details-stack .section-head { margin-bottom: 0; }
.app-introduction { max-width: 940px; padding-top: 24px; border-top: 1px solid var(--line); }
.app-introduction h3 { margin: 0 0 10px; font-size: 1.35rem; }
.app-introduction p { margin: 0; color: var(--muted); line-height: 1.75; }

.version-history { border-top: 1px solid var(--line); }
.version-entry { display: grid; grid-template-columns: minmax(150px, .3fr) minmax(0, 1fr); gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.version-label h3 { margin: 0 0 6px; font-size: 1.65rem; color: var(--green); }
.version-label span { color: #68766f; font-size: .9rem; font-weight: 800; text-transform: uppercase; }
.version-entry p { margin: 0; color: var(--muted); }
.version-entry p + p { margin-top: 10px; }
.version-copy { line-height: 1.72; }
.version-copy strong { color: var(--ink); }
.version-status { font-size: .9rem; font-weight: 750; color: #66736e !important; }

.upgrade-layout {
  display: block;
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}
.upgrade-intro { margin-bottom: 0; }
.upgrade-list { display: grid; gap: 20px; margin-top: 30px; }
.upgrade-row {
  position: relative;
  display: flex;
  min-height: 100%;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #c9d6ce;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 4px 0 #e5b34a, 0 12px 26px rgba(37, 69, 58, .11);
}
.upgrade-row > div { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.upgrade-icon {
  display: grid;
  width: 36px;
  height: 34px;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid #e4bd6e;
  border-radius: 4px;
  background: #fff4d9;
  color: #a85d00;
  font-size: 1rem;
  font-weight: 900;
}
.upgrade-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.upgrade-icon-text { font-size: 1.08rem; }
.upgrade-row h3 { display: flex; align-items: flex-start; gap: 16px; margin: 0; font-size: 1.04rem; line-height: 1.35; }
.upgrade-row p { margin: 14px 0 0; color: var(--muted); }
.upgrade-row .upgrade-result { margin-top: auto; padding-top: 16px; border-top: 1px solid #dce4dc; color: #40544d; font-size: .9rem; }
.upgrade-result strong { display: block; margin-bottom: 5px; color: #176c57; font-size: .74rem; text-transform: uppercase; }
.prose a, .text-link { color: #08755e; text-underline-offset: 4px; }
.prose h2 { margin-top: 48px; }
.prose h3 { margin-top: 28px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin: 8px 0; color: #4f5e59; }

.split { display: grid; gap: 34px; }
.feature-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.feature-row { padding: 20px 0; border-bottom: 1px solid var(--line); }
.feature-row p { margin: 8px 0 0; color: var(--muted); }
.feature-row b { color: var(--gold); margin-right: 8px; }

.steps { counter-reset: step; border-top: 1px solid var(--line); }
.step { position: relative; padding: 22px 0 22px 54px; border-bottom: 1px solid var(--line); }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}
.step p { margin: 7px 0 0; color: var(--muted); }

.data-table { width: 100%; border-collapse: collapse; background: var(--surface); }
.data-table th, .data-table td { padding: 14px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { width: 42%; color: #465650; font-size: .9rem; background: #fff7e7; }
.data-table td { color: var(--ink); }
.status { color: var(--green); font-weight: 800; }
.hash { word-break: break-all; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .8rem; }
.product-proof { margin: 0; }
.product-proof img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
}
.product-proof figcaption { margin-top: 10px; color: var(--muted); font-size: .82rem; }

.notice { padding: 20px; border-left: 3px solid var(--gold); background: var(--surface-2); }
.notice p { margin: 6px 0 0; color: #4d5d57; }
.notice.danger { border-color: var(--red); }

.link-list { border-top: 1px solid var(--line); }
.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.link-list a::after { content: ">"; color: var(--green); }
.link-list a:hover { color: var(--gold); }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 18px 34px 18px 0; font-weight: 800; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 17px; color: var(--gold); font-size: 1.3rem; }
.faq details[open] summary::after { content: "-"; }
.faq details p { margin: 0; padding: 0 34px 20px 0; color: var(--muted); }

.page-hero { padding: 50px 0 40px; overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(120deg, #fff3d8 0%, #f4fbf6 58%, #eef2ff 100%); }
.page-hero::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-top: 30px;
  background: linear-gradient(90deg, #ff9933 0 33.333%, #f5f0e4 33.333% 66.666%, #138808 66.666% 100%);
}
.breadcrumb { margin-bottom: 18px; color: var(--muted); font-size: .85rem; }
.breadcrumb a { color: var(--muted); }
.page-hero .lead { max-width: 820px; }
.page-hero-grid { display: grid; gap: 32px; align-items: center; }
.page-hero-copy { min-width: 0; }
.page-hero-visual { min-width: 0; }
.release-visual { position: relative; width: min(100%, 320px); min-height: 330px; margin: 0 auto; }
.release-phone {
  position: relative;
  width: 178px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
  border: 7px solid #ffffff;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(34, 62, 52, .22);
}
.release-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 17px; }
.release-current figcaption {
  position: absolute;
  right: 0;
  bottom: 24px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid #52655f;
  border-radius: 5px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 30px rgba(34, 62, 52, .16);
}
.release-current figcaption strong { display: block; color: var(--gold); font-size: 1.25rem; }
.release-current figcaption span { color: var(--muted); font-size: .78rem; }
.release-archive {
  width: min(100%, 370px);
  min-height: 340px;
  overflow: visible;
}
.version-table { position: absolute; inset: 36px 8px 18px; border: 13px solid #273d35; border-radius: 50%; background: #17684d; box-shadow: inset 0 0 0 3px #e0b14d, inset 0 0 0 8px #0e543d, 0 24px 48px rgba(27, 54, 46, .24); }
.version-table::before { content: ""; position: absolute; inset: 19px 24px; border: 1px solid rgba(255, 239, 188, .52); border-radius: 50%; }
.version-table-centre { position: absolute; z-index: 3; top: 50%; left: 50%; display: flex; width: 148px; min-height: 112px; align-items: center; justify-content: center; flex-direction: column; padding: 12px 16px; border: 3px solid #e0b14d; border-radius: 50%; background: #fffaf0; box-shadow: 0 15px 28px rgba(10, 38, 29, .28); transform: translate(-50%, -50%); }
.version-table-centre img { width: 74px; height: auto; margin-bottom: 2px; }
.version-table-centre span { color: #60706a; font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.version-table-centre strong { color: #c5830e; font-size: 1.55rem; line-height: 1; }
.version-chip { --chip: #df9c24; position: absolute; z-index: 4; display: grid; width: 66px; aspect-ratio: 1; place-items: center; border: 2px solid #fff8e9; border-radius: 50%; background: repeating-conic-gradient(#fff8e9 0 10deg, var(--chip) 10deg 34deg); box-shadow: 0 10px 18px rgba(11, 40, 31, .3); }
.version-chip::after { content: ""; position: absolute; inset: 9px; border: 2px solid rgba(255, 255, 255, .75); border-radius: 50%; background: var(--chip); }
.version-chip b { position: relative; z-index: 2; color: #fff; font-size: .84rem; text-shadow: 0 1px 2px rgba(0, 0, 0, .28); }
.chip-v50 { --chip: #d88b10; top: -24px; left: 50%; width: 72px; transform: translateX(-50%); }
.chip-v49 { --chip: #3977bd; top: 40px; right: -20px; }
.chip-v48 { --chip: #b9506e; right: -12px; bottom: 28px; }
.chip-v47 { --chip: #7254a8; bottom: -25px; left: 50%; transform: translateX(-50%); }
.chip-v46 { --chip: #278b78; top: 48px; left: -22px; }
.archive-check {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 4px;
  background: #183e32;
  color: #fff9e7;
  font-size: .75rem;
  font-weight: 900;
  white-space: nowrap;
}

.compact-proof img { max-height: 430px; object-position: center top; }
.download-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--line);
}
.download-strip > div { min-height: 84px; padding: 15px; background: var(--surface); }
.download-strip span { display: block; color: var(--muted); font-size: .76rem; }
.download-strip strong { display: block; margin-top: 4px; color: var(--ink); font-size: 1.05rem; }
.download-strip .button { grid-column: 1 / -1; border-radius: 0; }

.trust-checks { display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.trust-checks > div { padding: 20px; background: var(--surface); }
.trust-checks span { color: var(--gold); font-size: .75rem; font-weight: 900; }
.trust-checks strong { display: block; margin-top: 3px; }
.trust-checks p { margin: 6px 0 0; color: var(--muted); font-size: .86rem; }

.online-visual { display: grid; place-items: center; }
.coin-table-visual { width: min(100%, 520px); margin: 0 auto; }
.coin-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(36, 76, 61, .22);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 208, 80, .42), transparent 24%),
    linear-gradient(145deg, #fff1c9 0%, #e7f6ed 55%, #ffd9a4 100%);
  box-shadow: 0 24px 54px rgba(34, 62, 52, .18);
}
.coin-scene::before {
  content: "";
  position: absolute;
  inset: -20% -10% 35%;
  background: repeating-conic-gradient(from 18deg at 50% 100%, rgba(255, 153, 51, .13) 0 7deg, transparent 7deg 22deg);
}
.reward-table {
  position: absolute;
  z-index: 2;
  left: 8%;
  right: 8%;
  bottom: 8%;
  height: 45%;
  border: 11px solid #27483d;
  border-radius: 50%;
  background: #12805d;
  box-shadow: inset 0 0 0 3px #f4c34d, inset 0 0 0 8px #0b694c, 0 18px 34px rgba(22, 58, 46, .28);
}
.reward-table::after { content: ""; position: absolute; inset: 16px 24px; border: 1px solid rgba(255, 240, 184, .66); border-radius: 50%; }
.reward-card {
  position: absolute;
  z-index: 3;
  top: 22%;
  left: 50%;
  display: flex;
  width: 64px;
  aspect-ratio: 2 / 3;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #d8d4c8;
  border-radius: 6px;
  background: #fffdf8;
  box-shadow: 0 9px 18px rgba(9, 41, 31, .25);
  transform-origin: 50% 100%;
}
.reward-card b { color: #202925; font-size: 1rem; line-height: 1; }
.reward-card em { color: #202925; font-size: 1.35rem; font-style: normal; line-height: 1.05; }
.reward-card-left { transform: translateX(-92px) rotate(-11deg); }
.reward-card-centre { transform: translateX(-32px) translateY(-10px); }
.reward-card-right { transform: translateX(28px) rotate(11deg); }
.reward-card-left b, .reward-card-left em, .reward-card-right b, .reward-card-right em { color: #c83b37; }
.reward-pot {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: -15px;
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  margin-left: -26px;
  border: 5px dashed #fff0a8;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe37b, #eaa316);
  color: #6d4300;
  font-size: 1.4rem;
  font-weight: 950;
  box-shadow: 0 8px 16px rgba(65, 42, 0, .27);
}
.coin-stream { position: absolute; z-index: 5; inset: 0; pointer-events: none; }
.coin-stream i {
  position: absolute;
  left: 50%;
  bottom: 27%;
  display: grid;
  width: var(--size);
  aspect-ratio: 1;
  place-items: center;
  border: 4px dashed #fff1a8;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe47d 0%, #f6bb26 54%, #d98b0d 100%);
  color: #734900;
  font-size: calc(var(--size) * .48);
  font-style: normal;
  font-weight: 950;
  opacity: .72;
  box-shadow: 0 8px 17px rgba(96, 58, 0, .25), inset 0 0 0 2px #d99610;
}
.bonus-reward-visual { width: min(100%, 500px); margin: 0 auto; }
.bonus-reward-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(80, 72, 42, .2);
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 56%, rgba(255, 224, 113, .75), transparent 29%),
    linear-gradient(145deg, #ffe0a5 0%, #fff8df 48%, #dff3e8 100%);
  box-shadow: 0 24px 54px rgba(92, 62, 13, .16);
}
.bonus-reward-scene::before { content: ""; position: absolute; inset: -25% -10% 25%; background: repeating-conic-gradient(from 0deg at 50% 100%, rgba(255, 153, 51, .14) 0 8deg, transparent 8deg 24deg); }
.bonus-credit-card {
  position: absolute;
  z-index: 3;
  left: 12%;
  right: 12%;
  bottom: 17%;
  min-height: 52%;
  padding: 30px 34px;
  border: 2px solid #f2c34f;
  border-radius: 6px;
  background: linear-gradient(135deg, #fffdf5 0%, #fff1c9 58%, #e5f5ec 100%);
  box-shadow: 0 19px 38px rgba(76, 49, 7, .2), inset 0 0 0 5px rgba(255,255,255,.68);
}
.bonus-credit-card span { display: block; color: #a45e00; font-size: .72rem; font-weight: 950; letter-spacing: .08em; }
.bonus-credit-card strong { display: block; margin-top: 6px; color: #173e32; font-size: clamp(2.35rem, 9vw, 4rem); line-height: 1; }
.bonus-credit-card b { display: block; margin-top: 8px; color: #cf6415; font-size: .88rem; }
.bonus-credit-card small { display: block; margin-top: 18px; color: #586a63; font-weight: 750; }
.bonus-coin-field { position: absolute; z-index: 4; inset: 0; pointer-events: none; }
.bonus-coin-field i {
  position: absolute;
  left: 50%;
  bottom: 27%;
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 4px dashed #fff0a5;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe57d, #eaa317);
  color: #6d4300;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 950;
  opacity: .72;
  box-shadow: 0 8px 16px rgba(83, 51, 0, .22), inset 0 0 0 2px #d7920c;
}
.balance-rules { border-top: 1px solid var(--line); }
.balance-rules > div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.balance-rules span { display: block; color: var(--gold); font-size: .74rem; font-weight: 950; text-transform: uppercase; }
.balance-rules strong { display: block; margin-top: 4px; color: var(--ink); font-size: 1.06rem; }
.balance-rules p { margin: 7px 0 0; color: var(--muted); }
.visual-table {
  position: relative;
  width: 270px;
  height: 220px;
  border: 1px solid #315b4f;
  border-radius: 50%;
  background: #e7f6ee;
  box-shadow: inset 0 0 0 12px #cfe8dc, 0 24px 50px rgba(34, 62, 52, .16);
}
.visual-table .playing-card { top: 55px; left: 50%; }
.visual-table .playing-card:nth-child(1) { transform: translateX(-108px) rotate(-12deg); }
.visual-table .playing-card:nth-child(2) { transform: translateX(-38px) translateY(-12px); }
.visual-table .playing-card:nth-child(3) { transform: translateX(32px) rotate(12deg); }
.visual-label,
.identity-match,
.terms-visual > b,
.status-visual > b {
  position: absolute;
  right: 0;
  bottom: 22px;
  padding: 9px 11px;
  border: 1px solid #53635e;
  border-radius: 4px;
  background: rgba(255,255,255,.97);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 900;
}

.identity-visual,
.terms-visual,
.status-visual { display: grid; place-items: center; }
.identity-file,
.terms-sheet,
.india-status {
  width: min(100%, 240px);
  min-height: 220px;
  padding: 22px;
  border: 1px solid #53635e;
  border-radius: 6px;
  background: var(--surface-2);
  box-shadow: 0 22px 50px rgba(34, 62, 52, .16);
}
.identity-file span,
.india-status span { display: block; color: var(--gold); font-size: .72rem; font-weight: 900; }
.identity-file b,
.india-status strong { display: block; margin-top: 18px; font-size: 1.35rem; }
.identity-file small,
.india-status small { display: block; margin-top: 7px; color: var(--muted); }
.identity-file i { display: block; height: 7px; margin-top: 14px; background: #2d3b37; }
.identity-file i:nth-of-type(1) { width: 100%; }
.identity-file i:nth-of-type(2) { width: 76%; }
.identity-file i:nth-of-type(3) { width: 88%; }
.identity-match { border-color: #2e8d72; color: var(--green); }

.terms-sheet { display: grid; align-content: center; gap: 12px; border-color: #7c673b; }
.terms-sheet strong { color: var(--gold); font-size: .78rem; }
.terms-sheet span { display: block; padding-bottom: 8px; border-bottom: 1px solid var(--line); color: #40514b; font-weight: 700; }
.terms-visual > b { border-color: #7c673b; }

.india-status {
  min-height: 210px;
  border-top: 4px solid #ff9933;
  border-bottom: 4px solid #138808;
}
.india-status strong { max-width: 180px; font-size: 1.65rem; }
.status-visual > b { border-color: var(--red); color: #ffc3bd; }
.legal-status {
  padding: 24px;
  border-left: 4px solid var(--red);
  background: var(--surface-2);
}
.legal-status span { color: var(--gold); font-size: .76rem; font-weight: 900; text-transform: uppercase; }
.legal-status strong { display: block; max-width: 820px; margin-top: 9px; font-size: 1.35rem; line-height: 1.25; }
.legal-status p { max-width: 880px; margin: 12px 0 0; color: var(--muted); }

.game-stage {
  display: grid;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #e9f7ef;
}
.table-cards { min-height: 210px; display: flex; align-items: center; justify-content: center; position: relative; }
.table-cards .playing-card { position: relative; inset: auto; margin-left: -14px; }
.table-cards .playing-card:first-child { margin-left: 0; transform: rotate(-7deg); }
.table-cards .playing-card:nth-child(2) { transform: translateY(-9px); }
.table-cards .playing-card:nth-child(3) { transform: rotate(7deg); }

.site-footer { border-top: 1px solid #224a40; padding: 42px 0 84px; background: #173b33; color: #c8ddd5; }
.site-footer .brand { color: #ffffff; }
.site-footer .footer-links a, .site-footer .footer-note { color: #c8ddd5; }
.footer-grid { display: grid; gap: 28px; }
.footer-navs { display: grid; gap: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.footer-links a { color: var(--muted); }
.footer-note { max-width: 760px; font-size: .84rem; }

@media (min-width: 760px) {
  h1 { font-size: 4.2rem; }
  h2 { font-size: 2.6rem; }
  .hero { padding: 68px 0 62px; }
  .editorial-hero { min-height: 700px; padding: 82px 0 94px; background-position: center; }
  .hero-grid { grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); }
  .fact-bar { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fact { border-bottom: 0; border-right: 1px solid var(--line); }
  .fact:last-child { border-right: 0; }
  .split { grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr); }
  .upgrade-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero-grid.has-visual { grid-template-columns: minmax(0, 1.25fr) minmax(270px, .75fr); }
  .download-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
  .download-strip .button { grid-column: auto; border-radius: 0; }
  .trust-checks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .game-stage { grid-template-columns: 1fr .8fr; align-items: center; padding: 34px; }
  .footer-grid { grid-template-columns: 1fr auto; align-items: start; }
}

@media (min-width: 980px) {
  .product-visual { min-height: 500px; }
  .phone { width: 300px; }
  .card-fan { left: 1%; bottom: 14%; }
}

@media (min-width: 1160px) {
  .menu-toggle { display: none; }
  .main-nav { display: flex; position: static; max-height: none; overflow: visible; padding: 0; border: 0; background: transparent; }
  .main-nav { gap: 20px; }
  .main-nav a { padding: 20px 0; border: 0; font-size: .84rem; white-space: nowrap; }
}

@media (max-width: 520px) {
  .version-entry { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; }
  .editorial-hero {
    min-height: 700px;
    align-items: flex-start;
    padding-top: 52px;
    background-position: 74% center;
  }
  .editorial-hero::before { background: linear-gradient(180deg, rgba(255, 252, 244, .92) 0%, rgba(255, 252, 244, .82) 48%, rgba(255, 252, 244, .58) 66%, rgba(255, 252, 244, .08) 100%); }
  .editorial-hero .hero-copy-panel { max-width: 100%; }
  .page-hero { padding-top: 38px; }
  .page-hero-grid.has-visual { gap: 22px; }
  .page-hero-grid.has-visual .page-hero-visual { order: -1; }
  .online-page-hero .page-hero-grid.has-visual .page-hero-visual { order: 0; margin-top: 4px; }
  .bonus-page-hero .page-hero-grid.has-visual .page-hero-visual { order: 0; margin-top: 4px; }
  .online-page-hero .page-hero-copy { text-align: left; }
  .bonus-page-hero .page-hero-copy { text-align: left; }
  .release-visual { min-height: 245px; }
  .release-phone { width: 130px; }
  .release-current figcaption { right: 8px; bottom: 12px; min-width: 136px; }
  .release-archive { min-height: 270px; }
  .version-table { inset: 34px 10px 18px; border-width: 10px; }
  .version-table::before { inset: 15px 20px; }
  .version-table-centre { width: 120px; min-height: 92px; padding: 9px 12px; }
  .version-table-centre img { width: 58px; }
  .version-table-centre strong { font-size: 1.3rem; }
  .version-chip { width: 54px; }
  .version-chip::after { inset: 7px; }
  .version-chip b { font-size: .72rem; }
  .chip-v50 { top: -20px; width: 60px; }
  .chip-v49 { top: 32px; right: -17px; }
  .chip-v48 { right: -12px; bottom: 24px; }
  .chip-v47 { bottom: -20px; }
  .chip-v46 { top: 38px; left: -17px; }
  .archive-check { top: 8px; right: 8px; }
  .visual-table { width: 245px; height: 195px; }
  .visual-table .playing-card { top: 45px; }
}

@media (prefers-reduced-motion: no-preference) {
  .phone { animation: settle 4.8s ease-in-out infinite; }
  .card-fan { animation: nudge 3.4s ease-in-out infinite; }
  .release-phone { animation: float-phone 4.6s ease-in-out infinite; }
  .release-scan { animation: scan-build 3.8s ease-in-out infinite; }
  .version-table-centre { animation: current-version-focus 4.2s ease-in-out infinite; }
  .chip-v49, .chip-v48, .chip-v46 { animation: version-chip-float 3.8s ease-in-out infinite; }
  .chip-v48 { animation-delay: .7s; }
  .chip-v46 { animation-delay: 1.3s; }
  .visual-table .playing-card:nth-child(1) { animation: deal-left 4.8s ease-in-out infinite; }
  .visual-table .playing-card:nth-child(2) { animation: deal-centre 4.8s ease-in-out infinite; }
  .visual-table .playing-card:nth-child(3) { animation: deal-right 4.8s ease-in-out infinite; }
  .reward-table { animation: reward-table-glow 3.4s ease-in-out infinite; }
  .reward-card-left { animation: reward-card-left 4.4s ease-in-out infinite; }
  .reward-card-centre { animation: reward-card-centre 4.4s ease-in-out infinite; }
  .reward-card-right { animation: reward-card-right 4.4s ease-in-out infinite; }
  .coin-stream i { animation: coin-burst 4s cubic-bezier(.2, .62, .35, 1) infinite; animation-delay: var(--delay); }
  .bonus-credit-card { animation: bonus-card-float 3.8s ease-in-out infinite; }
  .bonus-coin-field i { animation: bonus-coin-rise 3.8s cubic-bezier(.18, .62, .32, 1) infinite; animation-delay: var(--bd); }
  .identity-file i { animation: identity-line 3.6s ease-in-out infinite; }
  @keyframes settle { 0%, 100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(1deg) translateY(-7px); } }
  @keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
  @keyframes float-phone { 0%, 100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-7px); } }
  @keyframes scan-build { 0%, 100% { top: 10%; opacity: 0; } 18%, 82% { opacity: 1; } 70% { top: 88%; } }
  @keyframes current-version-focus { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.025); } }
  @keyframes version-chip-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }
  @keyframes deal-left { 0%, 100% { transform: translateX(-108px) rotate(-12deg); } 50% { transform: translateX(-112px) translateY(-5px) rotate(-14deg); } }
  @keyframes deal-centre { 0%, 100% { transform: translateX(-38px) translateY(-12px); } 50% { transform: translateX(-38px) translateY(-19px); } }
  @keyframes deal-right { 0%, 100% { transform: translateX(32px) rotate(12deg); } 50% { transform: translateX(36px) translateY(-5px) rotate(14deg); } }
  @keyframes coin-burst { 0% { opacity: 0; transform: translate3d(0, 0, 0) scale(.35) rotate(0); } 10% { opacity: 1; } 72% { opacity: 1; } 100% { opacity: 0; transform: translate3d(var(--tx), var(--ty), 0) scale(1.08) rotate(var(--turn)); } }
  @keyframes reward-table-glow { 0%, 100% { box-shadow: inset 0 0 0 3px #f4c34d, inset 0 0 0 8px #0b694c, 0 18px 34px rgba(22, 58, 46, .28); } 50% { box-shadow: inset 0 0 0 3px #ffe27d, inset 0 0 0 8px #0b694c, 0 22px 45px rgba(221, 148, 18, .34); } }
  @keyframes reward-card-left { 0%, 100% { transform: translateX(-92px) rotate(-11deg); } 50% { transform: translateX(-96px) translateY(-5px) rotate(-13deg); } }
  @keyframes reward-card-centre { 0%, 100% { transform: translateX(-32px) translateY(-10px); } 50% { transform: translateX(-32px) translateY(-18px); } }
  @keyframes reward-card-right { 0%, 100% { transform: translateX(28px) rotate(11deg); } 50% { transform: translateX(32px) translateY(-5px) rotate(13deg); } }
  @keyframes bonus-card-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
  @keyframes bonus-coin-rise { 0% { opacity: 0; transform: translate3d(0, 0, 0) scale(.35) rotate(0); } 12% { opacity: 1; } 74% { opacity: 1; } 100% { opacity: 0; transform: translate3d(var(--bx), var(--by), 0) scale(1.08) rotate(260deg); } }
  @keyframes identity-line { 0%, 100% { background: #2d3b37; } 50% { background: #3d7c68; } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
