/* ==========================================================================
   mega888cara.com — shared stylesheet (all pages)
   Palette: Clean Light · base #F7F8FA · ink #0E1B3D · accent #2563EB
   CTA gradient #FF9D2E → #FF5E3A · Typography: Bricolage Grotesque + Figtree
   ========================================================================== */

:root {
  --bg: #f7f8fa;
  --bg-tint: #eef1f6;
  --surface: #ffffff;
  --navy: #0e1b3d;
  --navy-2: #152652;
  --navy-deep: #091230;
  --ink: #1c2433;
  --muted: #5a6678;
  --blue: #2563eb;
  --sky: #39b6ff;
  --orange: #ff9d2e;
  --flame: #ff5e3a;
  --line: #dde3ec;
  --line-dark: #27355e;
  --radius: 14px;
  --wrap: 944px;
  --shadow-pop: 0 6px 0 -2px rgba(14, 27, 61, .16);
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ---------- typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3vw, 2.05rem); font-weight: 800; margin-bottom: .65em; }
h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: .45em; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Header
   ========================================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow .25s ease;
}
.topbar.is-scrolled { box-shadow: 0 8px 28px rgba(9, 18, 48, .35); }

.topbar__in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__logo img { height: 34px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #c4cde2;
  padding: 8px 11px;
  border-radius: 8px;
  white-space: nowrap;
}
.nav a:hover { color: #fff; background: rgba(57, 182, 255, .12); text-decoration: none; }
.nav a.is-active { color: var(--orange); }
.nav a.nav__cta {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--flame));
  margin-left: 6px;
}
.nav a.nav__cta:hover { filter: brightness(1.08); }

/* nav dropdown (Deposit & Withdrawal → Bukti Pengeluaran) */
.nav__dd { position: relative; }
.nav__dd > a { display: inline-flex; align-items: center; gap: 6px; }
.nav__dd-caret { font-size: .68em; transition: transform .2s ease; }
.nav__dd:hover .nav__dd-caret,
.nav__dd:focus-within .nav__dd-caret { transform: rotate(180deg); }
.nav__dd-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 195px;
  background: var(--navy-deep);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 14px 34px rgba(9, 18, 48, .45);
  z-index: 70;
}
.nav__dd:hover .nav__dd-menu,
.nav__dd:focus-within .nav__dd-menu { display: grid; gap: 2px; }
.nav__dd-menu a { display: block; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: #e8ecf4;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .burger { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--navy-deep);
    border-bottom: 1px solid var(--line-dark);
    padding: 10px 18px 18px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; font-size: .95rem; }
  .nav a.nav__cta { margin: 8px 0 0; text-align: center; }
  .nav__dd { display: grid; }
  .nav__dd-caret { display: none; }
  .nav__dd-menu,
  .nav__dd:hover .nav__dd-menu,
  .nav__dd:focus-within .nav__dd-menu {
    display: grid;
    position: static;
    box-shadow: none;
    border: 0;
    border-left: 2px solid rgba(57, 182, 255, .35);
    border-radius: 0;
    margin: 0 0 4px 14px;
    padding: 0 0 0 6px;
    min-width: 0;
  }
}

/* ==========================================================================
   Hero  (dark stage on light page)
   ========================================================================== */

.hero {
  position: relative;
  background:
    radial-gradient(700px 340px at 12% -10%, rgba(57, 182, 255, .22), transparent 64%),
    radial-gradient(640px 320px at 92% 112%, rgba(255, 94, 58, .2), transparent 62%),
    linear-gradient(168deg, var(--navy-deep) 0%, #0f1f4d 58%, #0a1638 100%);
  color: #dbe3f4;
  text-align: center;
  padding: clamp(44px, 7vw, 72px) 0 clamp(40px, 6vw, 64px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 182, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 182, 255, .055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 35%, transparent 78%);
  pointer-events: none;
}
.hero > .wrap { position: relative; }

.hero__logo {
  margin: 0 auto 32px;
  width: min(360px, 74vw);
  filter: drop-shadow(0 10px 34px rgba(57, 182, 255, .35));
}
.hero .cta-row { margin-bottom: 0; }

@media (max-width: 560px) {
  .hero .cta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero .btn { flex-direction: column; gap: 4px; padding: 13px 6px; font-size: .92rem; min-width: 0; }
  .hero .btn .btn__txt { text-align: center; line-height: 1.3; }
  .hero .btn small { display: none; }
}

.hero h1 { color: #fff; max-width: 21ch; margin: 0 auto 16px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(110deg, var(--orange), var(--flame));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  max-width: 56ch;
  margin: 26px auto 0;
  font-size: 1.06rem;
  color: #aab6d4;
}
.hero__sub strong { color: #fff; }

.hero__contact {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 18px;
  margin-top: -22px;
}
.hero__contact img {
  width: clamp(170px, 24vw, 300px);
  height: auto;
  transition: transform .18s ease, filter .18s ease;
}
.hero__contact a:hover img { transform: translateY(-3px); filter: brightness(1.07); }
@media (max-width: 560px) {
  .hero__contact { gap: 12px; margin-top: -14px; }
  .hero__contact img { width: clamp(150px, 42vw, 220px); }
}

/* ---------- buttons ---------- */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .015em;
  padding: 15px 30px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }

.btn--apk {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--flame));
  box-shadow: 0 7px 22px rgba(255, 94, 58, .42);
}
.btn--ios {
  color: #fff;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  box-shadow: 0 7px 22px rgba(37, 99, 235, .38);
}
.btn--ghost {
  color: #e3e9f7;
  background: transparent;
  border: 1.5px solid #3a4a7c;
}
.btn--ghost:hover { border-color: var(--sky); color: #fff; }

.btn small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; opacity: .82; letter-spacing: .04em; }

/* APP Download band (below hero) — asymmetric hero-CTA design */
.dl-band { padding-bottom: 0; }
.dl2-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 7px 9px 7px 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .02em;
  margin: 0;
}
.dl-badge span { background: linear-gradient(110deg, var(--orange), var(--flame)); border-radius: 8px; padding: 4px 14px; font-size: .9rem; }
.dl2-verified {
  margin: 0;
  font-size: .78rem;
  font-weight: 700;
  color: #0a7d36;
  background: rgba(10, 125, 54, .08);
  border: 1px solid rgba(10, 125, 54, .22);
  border-radius: 99px;
  padding: 6px 14px;
}

/* calm list variant (dl3) */
.dl3-list { display: grid; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.dl3-row { display: flex; align-items: center; gap: 16px; padding: 16px 18px; background: var(--surface); }
.dl3-row + .dl3-row { border-top: 1px solid var(--line); }
.dl3-row > svg { width: 26px; height: 26px; flex: 0 0 auto; }
.dl3-row__txt { display: grid; gap: 2px; min-width: 0; }
.dl3-row__txt strong { font-family: var(--font-display); color: var(--navy); font-size: 1rem; }
.dl3-row__txt span { font-size: .82rem; color: var(--muted); }
.dl3-row__btn {
  margin-left: auto;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 10px;
  padding: 10px 18px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease, filter .15s ease;
}
.dl3-row__btn:hover { background: var(--navy); color: #fff; text-decoration: none; }
.dl3-row__btn--main {
  background: linear-gradient(135deg, var(--orange), var(--flame));
  border: 0;
  color: #fff;
  padding: 11.5px 20px;
  box-shadow: 0 6px 16px rgba(255, 94, 58, .3);
}
.dl3-row__btn--main:hover { background: linear-gradient(135deg, var(--orange), var(--flame)); color: #fff; filter: brightness(1.07); }
@media (max-width: 560px) {
  .dl3-row { flex-wrap: wrap; padding: 14px 16px; }
  .dl3-row__txt { flex: 1 1 0; }
  .dl3-row__btn { flex-basis: 100%; margin-left: 0; text-align: center; }
}

/* ==========================================================================
   Content blocks
   ========================================================================== */

.block { padding: clamp(13px, 2vw, 21px) 16px; }
.block--tint { background: var(--bg); }

/* boxed content sections — each block framed like the wireframe cards */
.block > .wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(14, 27, 61, .05);
  padding: clamp(26px, 4vw, 44px) clamp(20px, 4vw, 46px);
}

.block__lead { max-width: 64ch; }

/* ---------- H1 inside content (below hero) ---------- */

.block h1 { margin-bottom: 18px; max-width: 26ch; }
.h1-accent {
  font-style: normal;
  background: linear-gradient(110deg, var(--orange), var(--flame));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.intro-lead { margin-bottom: 28px; }

/* ---------- benefit list ---------- */

.benefits { list-style: disc; padding-left: 22px; display: grid; gap: 10px; max-width: 70ch; }
.benefits li { padding: 0; }
.benefits strong { color: var(--navy); }

/* ---------- info table ---------- */

.tbl-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 22px 0; }
table.tbl { width: 100%; border-collapse: collapse; font-size: .95rem; }
.tbl th, .tbl td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.tbl tr:last-child th, .tbl tr:last-child td { border-bottom: 0; }
.tbl th { font-family: var(--font-display); font-weight: 700; color: var(--navy); background: var(--bg-tint); width: 38%; }
.tbl thead th { background: var(--navy); color: #fff; width: auto; }
@media (max-width: 560px) {
  .tbl th, .tbl td { padding: 10px 12px; font-size: .86rem; }
}

/* ---------- numbered steps ---------- */

.steps { list-style: decimal; padding-left: 22px; display: grid; gap: 8px; max-width: 66ch; margin: 18px 0; }
.steps li { padding: 0; }
.steps--hot { }
.steps--hot li::marker { color: var(--flame); font-weight: 700; }

/* ---------- platform download cards ---------- */

.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.dl-card {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}
.dl-card h3 { display: flex; align-items: center; gap: 9px; }
.dl-card .dl-card__os {
  font-size: 1.3rem;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--bg-tint);
  border-radius: 8px;
}
.dl-card .dl-card__os svg { width: 20px; height: 20px; }
.dl-card ol { list-style: decimal; padding-left: 20px; margin: 10px 0 16px; font-size: .9rem; color: var(--muted); display: grid; gap: 6px; }
.dl-card .btn { margin-top: auto; font-size: .88rem; padding: 12px 18px; }
.dl-card + .dl-card { border-left: 1px solid var(--line); padding-left: 16px; }
@media (max-width: 820px) { .dl-grid { grid-template-columns: 1fr; } .dl-card + .dl-card { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 16px; } }

/* ---------- login panel ---------- */

.login-panel {
  max-width: 420px;
  margin: 24px auto 0;
  background: linear-gradient(160deg, var(--navy-deep), #101f49);
  border: 1px solid rgba(57, 182, 255, .3);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  color: #d4dcef;
}
.login-panel h3 { color: #fff; text-align: center; margin-bottom: 18px; font-size: 1.15rem; }
.login-form { display: grid; gap: 14px; }
.login-form label { font-size: .85rem; font-weight: 600; color: #aab6d4; display: grid; gap: 6px; }
.login-form input,
.login-form select {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(57, 182, 255, .35);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font: inherit;
}
.login-form select option { color: var(--navy); background: #fff; }
.login-form input::placeholder { color: #6b7798; }
.login-form input:focus,
.login-form select:focus { outline: 2px solid var(--sky); border-color: transparent; }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 46px; }
.pw-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.05rem;
  color: #aab6d4;
  padding: 6px 8px;
}
.login-btn {
  display: flex;
  justify-content: center;
  padding: 13px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--flame));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(255, 94, 58, .35);
  transition: transform .15s ease, filter .15s ease;
}
.login-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.login-links { display: flex; justify-content: space-between; gap: 10px; font-size: .85rem; margin-top: 4px; flex-wrap: wrap; }
.login-links a { color: var(--sky); }
.login-note {
  background: rgba(57, 182, 255, .12);
  border: 1px solid rgba(57, 182, 255, .35);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .88rem;
}
.login-note a { color: #fff; font-weight: 700; }

/* ---------- test id highlight (dark block) ---------- */

.testid-card {
  max-width: 480px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(57, 182, 255, .35);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 22px 0;
}
.testid-card table { width: 100%; border-collapse: collapse; }
.testid-card th, .testid-card td { padding: 14px 18px; text-align: left; border-bottom: 1px solid rgba(57, 182, 255, .18); }
.testid-card tr:last-child th, .testid-card tr:last-child td { border-bottom: 0; }
.testid-card th { font-family: var(--font-display); color: var(--sky); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; width: 38%; }
.testid-card td { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: #fff; }
.testid-card td b { color: var(--orange); }

/* solid standalone variant — small box on light sections */
.testid-card--solid {
  background: linear-gradient(160deg, var(--navy-deep), #101f49);
  margin: 0 auto;
}

/* ---------- games grid ---------- */

.games { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px; list-style: none; }
.game-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px 15px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.game-card:hover { transform: translateY(-3px); border-color: var(--blue); box-shadow: 0 10px 24px rgba(14, 27, 61, .1); }
.game-card .game-card__tag {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, .09);
  border-radius: 99px;
  padding: 3px 10px;
  margin-bottom: 9px;
}
.game-card .game-card__tag--hot { color: var(--flame); background: rgba(255, 94, 58, .1); }
.game-card h3 { font-size: 1rem; margin-bottom: 4px; }
.game-card p { font-size: .82rem; color: var(--muted); }
@media (max-width: 820px) { .games { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .games { grid-template-columns: 1fr; } }

/* ---------- withdraw proof gallery ---------- */

.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.proof-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.proof-card figcaption { padding: 12px 14px 14px; font-size: .85rem; color: var(--muted); display: grid; gap: 3px; }
.proof-card figcaption strong { color: var(--navy); font-size: .95rem; }
.proof-card img { width: 100%; height: auto; display: block; }
@media (max-width: 820px) { .proof-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .proof-grid { grid-template-columns: 1fr; } }

/* ---------- warning / notice ---------- */

.notice {
  display: flex;
  gap: 12px;
  background: #fff7ed;
  border: 1px solid #fcd9b0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .92rem;
  margin: 16px 0;
  max-width: 70ch;
}
.notice::before { content: "⚠️"; flex: 0 0 auto; }

/* ---------- FAQ accordion ---------- */

.faq { max-width: 760px; display: grid; gap: 10px; margin-top: 24px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq details[open] { border-color: var(--blue); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--navy);
  padding: 15px 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--bg-tint);
  border-radius: 8px;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; transform: rotate(180deg); }
.faq .faq__a { padding: 0 18px 16px; font-size: .95rem; color: var(--muted); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--navy-deep);
  color: #93a0bf;
  border-top: 1px solid var(--line-dark);
  padding: 44px 0 30px;
  font-size: .88rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer__brand img { height: 30px; width: auto; margin-bottom: 12px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.footer ul { list-style: none; display: grid; gap: 7px; }
.footer a { color: #93a0bf; }
.footer a:hover { color: var(--sky); }
.footer__legal {
  border-top: 1px solid var(--line-dark);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .8rem;
}
.badge18 {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 2px solid var(--flame);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  color: var(--flame);
  flex: 0 0 auto;
}
.footer__resp { display: flex; align-items: center; gap: 12px; max-width: 62ch; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 22px; } }

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .game-card { transition: none; }
}
