/* ═══ Greenside Gambit — marketing site ═══
   Dark sportsbook system mirroring the app: navy field, money green,
   gold accents, Bebas display. No frameworks, no build step. */

:root {
  --bg: #0B141C;
  --card: #141F2A;
  --card-2: #182634;
  --ink: #EAF1F5;
  --muted: #93A6B4;
  --faint: #5E7484;
  --line: #233442;
  --green: #1DB965;
  --green-2: #17A85C;
  --green-deep: #0E2E1E;
  --gold: #E8C468;
  --gold-dim: #B08A2E;
  --red: #F4564A;
  --display: "Bebas Neue", sans-serif;
  --body: "Inter", -apple-system, sans-serif;
  --max: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: #fff; }

.wordmark { font-family: var(--display); font-size: 1.35rem; letter-spacing: .08em; color: var(--ink); }
.wordmark em { font-style: normal; color: var(--green); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.6rem;
  border-radius: 12px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--green-2);
  color: #fff;
  box-shadow: 0 6px 24px rgba(29, 185, 101, .25);
}
.btn-primary:hover { background: var(--green); box-shadow: 0 10px 32px rgba(29, 185, 101, .38); }
.btn-ghost { color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ─── Nav ─── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .9rem clamp(1rem, 4vw, 2.5rem);
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(11, 20, 28, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-brand { display: flex; align-items: center; gap: .65rem; }
.nav-brand img { border-radius: 8px; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: .92rem; transition: color .18s; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 640px) { .nav-links { display: none; } .nav-brand { margin-right: auto; } }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 5vw, 4rem);
}
.hero-media, .hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* the parallax zoom scales the video past the hero's bounds — clip it */
.hero-media { overflow: hidden; }
.hero-media video { object-position: center; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,20,28,.55) 0%, rgba(11,20,28,.15) 35%, rgba(11,20,28,.6) 68%, var(--bg) 88%, var(--bg) 100%),
    linear-gradient(100deg, rgba(11,20,28,.72) 0%, rgba(11,20,28,.15) 55%, rgba(11,20,28,0) 100%);
}
.hero-content { position: relative; max-width: var(--max); margin: 0 auto; width: 100%; }
.hero-kicker {
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .35em;
  color: var(--green);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: .95;
  letter-spacing: .015em;
  font-weight: 400;
}
.hero h1 em { font-style: normal; color: var(--green); }
.line-mask { display: block; overflow: hidden; padding-bottom: .06em; }
.line { display: inline-block; }
.hero-sub {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-top: 1.4rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  width: 26px; height: 42px;
  transform: translateX(-50%);
  border: 2px solid var(--faint);
  border-radius: 14px;
}
.scroll-cue span {
  position: absolute; top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--green);
  border-radius: 2px;
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0; } }

/* entrance animations */
.line, .reveal-line { opacity: 0; }
.loaded .line { animation: rise-in .9s cubic-bezier(.19,1,.22,1) forwards; animation-delay: var(--d, 0s); }
.loaded .reveal-line { animation: fade-up .9s cubic-bezier(.19,1,.22,1) forwards; animation-delay: var(--d, 0s); }
@keyframes rise-in { from { opacity: 0; transform: translateY(110%); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ─── Ticker ─── */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  padding: .8rem 0;
}
.ticker-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { white-space: nowrap; color: var(--muted); font-weight: 600; font-size: .9rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ─── Sections ─── */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 4vw, 2.5rem); }
.section-kicker { font-weight: 800; font-size: .78rem; letter-spacing: .35em; color: var(--green); margin-bottom: .8rem; }
h2 { font-family: var(--display); font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1; letter-spacing: .01em; font-weight: 400; }

/* games cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--green-2);
  box-shadow: 0 18px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(29,185,101,.12);
}
.card h3 {
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: .05em;
  text-align: center;
  margin: .35rem 0 0;
  transition: text-shadow .25s ease;
}
.card h3::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 2px;
  background: var(--green);
  margin: .7rem auto 1.1rem;
  transition: width .25s ease;
}
.card:hover h3 { text-shadow: 0 0 24px rgba(29, 185, 101, .45); }
.card:hover h3::after { width: 64px; }
.card-next h3::after { background: rgba(29, 185, 101, .5); }
.card p { color: var(--muted); font-size: .95rem; }
.card p strong { color: var(--ink); }
.card-pays { margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--line); color: var(--gold) !important; font-size: .85rem !important; font-weight: 600; }

/* ─── games rail: horizontal slider ─── */
.rail { position: relative; margin-top: 2.5rem; }
.cards--rail {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.2rem;
  margin-top: 0;
  padding: .35rem .25rem 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.cards--rail::-webkit-scrollbar { display: none; }
.cards--rail.dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.cards--rail .card {
  flex: 0 0 min(330px, 82vw);
  scroll-snap-align: start;
  /* flex stretch keeps every card the height of the tallest one */
}
.rail-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(15, 26, 34, .92);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .18s, color .18s, opacity .18s, transform .18s;
}
.rail-btn:hover:not(:disabled) { border-color: var(--green-2); color: var(--green); transform: translateY(-50%) scale(1.06); }
.rail-btn:disabled { opacity: .25; cursor: default; }
.rail-prev { left: -14px; }
.rail-next { right: -14px; }
@media (hover: none) {
  .rail-btn { display: none; } /* touch scrolls the rail natively */
}
.rail-progress {
  width: 180px;
  height: 3px;
  border-radius: 3px;
  background: var(--line);
  overflow: hidden;
  margin-top: .4rem;
}
.rail-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: var(--green);
  transition: width .15s linear;
}

.junk-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem;
  margin-top: 2rem;
  padding: 1.1rem 1.4rem;
  background: var(--green-deep);
  border: 1px solid rgba(29,185,101,.25);
  border-radius: 14px;
}
.junk-label { font-weight: 800; font-size: .72rem; letter-spacing: .25em; color: var(--green); margin-right: .4rem; }
.junk-chip {
  background: rgba(232, 196, 104, .1);
  border: 1px solid rgba(232, 196, 104, .3);
  color: var(--gold);
  font-weight: 700; font-size: .85rem;
  padding: .35rem .8rem;
  border-radius: 999px;
}
.junk-chip small { color: var(--muted); font-weight: 500; }

/* ─── Phone + features ─── */
.section-split {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .section-split { grid-template-columns: 1fr; } }

.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: min(320px, 82vw);
  aspect-ratio: 9 / 18.5;
  background: #05090d;
  border: 3px solid #2a3946;
  border-radius: 44px;
  padding: 12px;
  position: relative;
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(29,185,101,.08);
}
.phone-notch {
  position: absolute; top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 22px;
  background: #05090d;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: var(--bg);
  border-radius: 32px;
  height: 100%;
  padding: 2.6rem .9rem 1rem;
  display: flex; flex-direction: column; gap: .7rem;
  overflow: hidden;
}
.ph-head { display: flex; justify-content: space-between; align-items: baseline; }
.ph-game { font-family: var(--display); letter-spacing: .1em; color: var(--green); font-size: .95rem; }
.ph-course { color: var(--faint); font-size: .72rem; font-weight: 600; }
.ph-banner {
  background: #31240A;
  color: #E9950C;
  font-size: .74rem; font-weight: 700;
  border-radius: 10px;
  padding: .55rem .7rem;
  transition: opacity .4s;
}
.ph-banner.flash { animation: banner-pulse .6s ease; }
@keyframes banner-pulse { 0% { transform: scale(.97); opacity: .4; } 100% { transform: scale(1); opacity: 1; } }
.ph-rows { display: flex; flex-direction: column; gap: .5rem; }
.ph-row {
  display: flex; align-items: center; gap: .55rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .55rem .65rem;
}
.ph-av {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .6rem; font-weight: 800; color: #fff;
}
.av1 { background: #17A85C; } .av2 { background: #2E8FD8; } .av3 { background: #B08A2E; } .av4 { background: #8B5CF6; }
.ph-name { font-size: .8rem; font-weight: 700; flex: 1; }
.ph-skins { font-family: var(--display); font-size: 1.05rem; color: var(--ink); }
.ph-money { font-size: .72rem; font-weight: 800; width: 42px; text-align: right; }
.ph-money.up { color: var(--green); } .ph-money.down { color: var(--red); }
.ph-row .bump { animation: bump .5s ease; }
@keyframes bump { 40% { transform: scale(1.35); color: var(--gold); } }
.ph-foot { margin-top: auto; text-align: center; color: var(--faint); font-size: .72rem; font-weight: 600; }
.ph-foot b { color: var(--ink); }

.feature-list ul { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.05rem; }
.feature-list li { color: var(--muted); font-size: .97rem; padding-left: 1.6rem; position: relative; }
.feature-list li::before { content: "▸"; position: absolute; left: .2rem; color: var(--green); font-weight: 800; }
.feature-list b { color: var(--ink); }

/* ─── Stats ─── */
.stats {
  border-block: 1px solid var(--line);
  background: var(--card);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}
.stat-num { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 4rem); color: var(--green); display: block; line-height: 1; }
.stat-label { color: var(--faint); font-weight: 800; font-size: .72rem; letter-spacing: .25em; }

/* ─── Download ─── */
.download { text-align: center; padding: clamp(4.5rem, 10vw, 8rem) 1.25rem; }
.dl-icon { margin: 0 auto 1.4rem; border-radius: 22px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.download p { color: var(--muted); margin: .9rem 0 1.8rem; }
.dl-note { font-size: .82rem !important; color: var(--faint) !important; margin-top: 1.4rem !important; }

/* ─── Footer ─── */
footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem clamp(1.25rem, 4vw, 2.5rem);
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.foot-brand { display: flex; align-items: center; gap: .6rem; }
.foot-brand img { border-radius: 7px; }
.foot-disclaimer { color: var(--faint); font-size: .82rem; max-width: 46rem; }
.foot-links { display: flex; gap: 1.5rem; color: var(--faint); font-size: .85rem; }
.foot-links a:hover { color: var(--ink); }

/* ─── Scroll reveals ─── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.19,1,.22,1), transform .8s cubic-bezier(.19,1,.22,1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ═══ Elevation layer: grain, cursor, parallax, spotlight, tilt ═══ */

/* film grain — instant premium texture */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.1s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(2%, -1%); }
}

/* scroll progress hairline */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 95;
}

/* custom cursor (fine pointers only) */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 100;
  border-radius: 50%;
  opacity: 0;
}
.cursor-dot { width: 6px; height: 6px; background: var(--green); margin: -3px 0 0 -3px; }
.cursor-ring {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid rgba(29, 185, 101, .55);
  transition: width .25s ease, height .25s ease, margin .25s ease, border-color .25s ease;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--gold);
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* magnetic buttons ride a JS-set transform */
.magnetic { will-change: transform; }

/* ghost display typography behind sections */
.has-ghost { position: relative; overflow: visible; }
.ghost {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: clamp(6rem, 20vw, 17rem);
  line-height: 1;
  letter-spacing: .04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(35, 52, 66, .9);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.has-ghost > *:not(.ghost) { position: relative; z-index: 1; }
.ghost-center { top: 6%; }

/* cursor spotlight inside game cards */
.card { position: relative; overflow: hidden; }
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(29, 185, 101, .1), transparent 65%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

/* 3D tilt on the phone + moving glare */
.phone-wrap { perspective: 1100px; }
.phone {
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.phone::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 44px;
  background: linear-gradient(115deg, transparent 30%, rgba(234, 241, 245, var(--glare, 0)) 46%, transparent 62%);
  pointer-events: none;
}

/* CTA shine sweep */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 40%;
  left: -60%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-18deg);
  transition: left .5s ease;
}
.btn-primary:hover::after { left: 130%; }

/* hero parallax hooks (values driven from JS) */
#hero-content { will-change: transform, opacity; }
.hero-media video { will-change: transform; transform: scale(var(--vz, 1)); }

/* sign-off */
.signoff {
  font-family: var(--display);
  text-align: center;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: .03em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green-2);
  padding: 0 1rem clamp(3rem, 7vw, 6rem);
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .cursor-dot, .cursor-ring { display: none; }
  .phone { transform: none !important; }
  .btn-primary::after { display: none; }
}

/* ─── Legal / support pages ─── */
.legal { max-width: 720px; margin: 0 auto; padding: 8rem 1.5rem 4rem; }
.legal h1 { font-family: var(--display); font-size: 2.6rem; letter-spacing: .02em; margin-bottom: .4rem; font-weight: 400; }
.legal .updated { color: var(--faint); font-size: .85rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.5rem; margin: 2.2rem 0 .6rem; }
.legal p, .legal li { color: var(--muted); font-size: .95rem; }
.legal ul { padding-left: 1.3rem; margin: .6rem 0; }
.legal a { color: var(--green); }
.legal strong { color: var(--ink); }

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .line, .reveal-line, .reveal { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .ticker-track { animation: none; flex-wrap: wrap; width: auto; }
  .scroll-cue span { animation: none; }
}


/* ─────────────────── demo video ─────────────────── */
.demo h2 { margin-bottom: 2.2rem; }
.demo-player {
  position: relative;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #05090d;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5), 0 0 70px rgba(29, 185, 101, 0.08);
}
.demo-player video { width: 100%; height: 100%; display: block; }
.demo-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 100%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(11, 20, 28, 0.1), rgba(11, 20, 28, 0.45));
  color: var(--ink);
  transition: background 0.25s ease;
}
.demo-play:hover { background: linear-gradient(180deg, rgba(11, 20, 28, 0), rgba(11, 20, 28, 0.3)); }
.demo-play-btn {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--green);
  color: #04130a;
  font-size: 1.6rem;
  padding-left: 6px;
  box-shadow: 0 18px 50px rgba(29, 185, 101, 0.45);
  transition: transform 0.25s cubic-bezier(0.2, 1.4, 0.3, 1);
}
.demo-play:hover .demo-play-btn { transform: scale(1.1); }
.demo-play-label {
  font-family: var(--display);
  letter-spacing: 0.12em;
  font-size: 1rem;
  color: var(--ink);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
@media (max-width: 720px) {
  .demo-play-btn { width: 64px; height: 64px; font-size: 1.2rem; }
}


/* the "always another game" card — deliberately unfinished-looking */
.card-next { border-style: dashed; border-color: rgba(29, 185, 101, 0.35); background: transparent; }
.card-next h3 { color: var(--green); }


/* download section: two-store button row */
.dl-buttons { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.dl-buttons .btn { display: inline-flex; align-items: center; gap: .6rem; }
.dl-buttons .btn svg { width: 19px; height: 19px; fill: currentColor; flex-shrink: 0; }
#play-link[aria-disabled="true"] { opacity: .65; cursor: default; }
