/* =========================================================
   Hidden Game Hub — Design system
   Secret-study-meets-modern: dark library, moonlit cards, bright accents
   ========================================================= */

:root {
  /* Palette */
  --paper: #172033;
  --paper-2: #212c44;
  --paper-3: #101827;
  --ink: #fff4dc;
  --ink-soft: #d9ccb4;
  --ink-mute: #aeb8cf;
  --line: #53607a;
  --rule: #3a4864;
  --night: #0b1020;
  --cream: #fff4dc;
  --accent: #f6b45b;        /* lantern honey */
  --accent-2: #8bd49a;      /* sage glow */
  --accent-3: #91a8ff;      /* moon periwinkle */
  --accent-4: #e27d9d;      /* rosy */
  --accent-5: #c8a3ff;      /* lilac */
  --danger: #ff8a70;
  --shadow: 0 1px 0 rgba(255,255,255,.06), 0 10px 24px -14px rgba(0,0,0,.65);
  --shadow-lg: 0 1px 0 rgba(255,255,255,.06), 0 24px 50px -18px rgba(0,0,0,.75);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(145,168,255,0.20), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(246,180,91,0.14), transparent 60%),
    linear-gradient(180deg, #111827 0%, #0b1020 100%);
  background-attachment: fixed;
  line-height: 1.55;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--cream); color: var(--night); padding: 10px 16px; border-radius: 8px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 3px solid var(--accent-3);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { width: min(1180px, 92%); margin-inline: auto; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,24,39,0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
.brand-sub { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }

.site-nav { margin-left: auto; display: flex; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none; color: var(--ink-soft);
  padding: 8px 14px; border-radius: 999px;
  font-weight: 700; font-size: 14.5px;
  transition: background .18s ease, color .18s ease;
}
.site-nav a:hover { background: var(--paper-2); color: var(--ink); }
.site-nav a.is-active { background: var(--ink); color: var(--paper); }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--rule); padding: 8px 10px;
  border-radius: 10px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; margin: 4px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-nav { display: none; }

@media (max-width: 820px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .mobile-nav.open { display: flex; flex-direction: column; padding: 8px 6%; gap: 4px; border-top: 1px solid var(--rule); background: var(--paper-3); }
  .mobile-nav.open a { padding: 12px 14px; border-radius: 12px; text-decoration: none; color: var(--ink-soft); font-weight: 700; }
  .mobile-nav.open a.is-active { background: var(--ink); color: var(--paper); }
}

/* =========================================================
   Main / pages
   ========================================================= */
.main { padding: 40px 0 80px; min-height: 60vh; }

.page-head {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px;
}
.eyebrow {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute);
  font-weight: 700;
}
.page-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 5vw, 52px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0;
}
.page-title em { font-style: italic; color: var(--accent); }
.page-sub { color: var(--ink-soft); max-width: 56ch; font-size: 17px; }

/* Hero */
.hero {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px;
  padding: 36px 36px; border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(33,44,68,.98) 0%, rgba(18,27,45,.98) 100%);
  border: 1.5px solid var(--rule);
  overflow: hidden;
  margin-bottom: 56px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(246,180,91,0.14) 1px, transparent 1px),
    repeating-linear-gradient(180deg, transparent 0 27px, rgba(145,168,255,0.18) 27px 28px);
  background-size: 40px 100%, 100% 28px;
  background-position: 60px 0, 0 0;
  pointer-events: none;
  opacity: .55;
}
.hero > * { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--rule); border-radius: 999px;
  padding: 6px 14px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
  font-weight: 700;
  width: max-content;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 6vw, 68px); line-height: 1; letter-spacing: -0.025em;
  margin: 16px 0 10px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p.lead { font-size: 18px; color: var(--ink-soft); max-width: 50ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.hero-art {
  position: relative; min-height: 260px;
  display: grid; place-items: center;
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding: 24px; }
}

/* Doodle cards in hero */
.doodle-stack { position: relative; width: 100%; height: 100%; min-height: 260px; }
.doodle-card {
  position: absolute; border-radius: 18px; padding: 18px; box-shadow: var(--shadow-lg);
  background: var(--paper); border: 1.5px solid var(--rule);
}
.doodle-card .label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700;
}
.doodle-card .big {
  font-family: var(--font-display); font-weight: 800; font-size: 36px; line-height: 1; letter-spacing: -0.02em; margin-top: 4px;
}
.doodle-card.one { top: 4%; left: 4%; transform: rotate(-5deg); background: #fff4dc; color: #111827; }
.doodle-card.two { top: 22%; right: 0%; transform: rotate(4deg); background: #dff6df; color: #111827; }
.doodle-card.three { bottom: 4%; left: 14%; transform: rotate(-2deg); background: #e4e9ff; color: #111827; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 12px 20px; border-radius: 999px;
  font-weight: 800; font-size: 15px; letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 2px 0 rgba(31,38,56,.0);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px -6px rgba(31,38,56,.4); }
.btn.btn-accent { background: var(--accent); color: var(--night); border-color: var(--accent); }
.btn.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost {
  background: transparent; border: 1.5px solid var(--rule); color: var(--ink);
  padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: 14px;
}
.btn-ghost:hover { background: var(--paper-2); }
.btn-icon {
  width: 36px; height: 36px; border-radius: 10px; border: 1.5px solid var(--rule); background: var(--paper); color: var(--ink);
  display: grid; place-items: center;
}
.btn-icon:hover { background: var(--paper-2); }

/* Stats strip on home */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 56px;
}
.stat {
  border: 1.5px solid var(--rule); background: var(--paper);
  border-radius: var(--radius); padding: 18px 18px;
}
.stat .num { font-family: var(--font-display); font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.stat .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }
@media (max-width: 720px) { .stats-strip { grid-template-columns: repeat(2,1fr); } }

/* Sections */
.section { margin-bottom: 64px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3vw, 32px); margin: 0;
  letter-spacing: -0.015em;
}
.section-link { color: var(--ink-soft); text-decoration: none; font-weight: 700; font-size: 14px; }
.section-link:hover { color: var(--ink); }

/* Game grid */
.game-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px;
}

.game-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 0; overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
  color: inherit; font: inherit;
  text-decoration: none;
}
.game-card * { text-decoration: none; }
.game-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--ink); }
.game-card .thumb {
  height: 140px; display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.game-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg, transparent 0 19px, rgba(31,38,56,.06) 19px 20px);
  pointer-events: none;
}
.game-card .body { padding: 14px 16px 16px; border-top: 1.5px dashed var(--rule); }
.game-card .cat { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }
.game-card .name { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 4px 0 4px; letter-spacing: -0.01em; }
.game-card .desc { font-size: 14px; color: var(--ink-soft); line-height: 1.45; }
.game-card .tag-row { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.tag {
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  background: var(--paper-2); color: var(--ink-soft); font-weight: 700;
  letter-spacing: 0.04em;
}
.tag.tag-pop { background: rgba(246,180,91,.20); color: #ffd188; }
.tag.tag-new { background: rgba(139,212,154,.20); color: #b8f2c0; }

/* Thumb art variants */
.thumb-1 { background: linear-gradient(135deg, #2f2444, #f6b45b); }
.thumb-2 { background: linear-gradient(135deg, #19362b, #8bd49a); }
.thumb-3 { background: linear-gradient(135deg, #202a55, #91a8ff); }
.thumb-4 { background: linear-gradient(135deg, #3d2035, #e27d9d); }
.thumb-5 { background: linear-gradient(135deg, #2f2353, #c8a3ff); }
.thumb-6 { background: linear-gradient(135deg, #4a3413, #f6d36f); }
.thumb-7 { background: linear-gradient(135deg, #14333b, #7bd6d0); }

/* About */
.prose { max-width: 68ch; }
.prose h2 { font-family: var(--font-display); letter-spacing: -0.015em; }
.prose p { color: var(--ink-soft); font-size: 17px; }
.prose ul { color: var(--ink-soft); font-size: 17px; line-height: 1.7; padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.faq-item { border: 1.5px solid var(--rule); border-radius: var(--radius); padding: 16px 18px; background: var(--paper); margin-bottom: 12px; }
.faq-item summary { cursor: pointer; font-weight: 800; font-family: var(--font-display); font-size: 18px; }
.faq-item p { margin: 10px 0 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--rule); padding: 28px 0 32px; background: var(--paper); }
.footer-inner { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; }
.foot-tag { color: var(--ink-soft); margin: 0; }
.foot-sub { color: var(--ink-mute); margin-left: auto; font-size: 13px; }
.foot-links { display: flex; gap: 18px; margin-left: auto; }
.foot-links a { color: var(--ink-soft); text-decoration: none; font-size: 13px; }
.foot-links a:hover { color: var(--ink); text-decoration: underline; }
@media (max-width: 640px) { .foot-sub { margin-left: 0; } .foot-links { margin-left: 0; } }

/* =========================================================
   Player modal
   ========================================================= */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(31,38,56,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-panel {
  position: relative;
  width: min(960px, 94%);
  max-height: 92vh; display: flex; flex-direction: column;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: pop .22s cubic-bezier(.2,.7,.2,1.2);
}
@keyframes pop { from { transform: translateY(8px) scale(.985); opacity: 0; } to { transform: none; opacity: 1; } }
.player-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 18px; border-bottom: 1.5px dashed var(--rule); background: var(--paper-2);
}
.player-eyebrow { margin: 0; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }
#player-title { margin: 2px 0 0; font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.player-actions { display: flex; gap: 8px; align-items: center; }
.player-stats {
  display: flex; gap: 14px; padding: 10px 18px; flex-wrap: wrap;
  border-bottom: 1px solid var(--rule); background: var(--paper-3);
  font-size: 14px; color: var(--ink-soft); font-weight: 700;
}
.player-stats .stat-chip {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 999px; padding: 4px 12px;
}
.player-stats .stat-chip b { color: var(--ink); font-weight: 800; }
.player-howto {
  padding: 14px 18px; border-bottom: 1px solid var(--rule); background: #202b4a;
  color: var(--ink-soft); font-size: 14.5px;
}
.player-howto ul { padding-left: 22px; margin: 6px 0 0; }
.player-howto li { margin-bottom: 4px; }
.player-stage {
  padding: 18px; overflow: auto; flex: 1; min-height: 360px;
  background: var(--paper);
  outline: none;
}

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%);
  background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 999px;
  z-index: 200; font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-lg);
}

/* =========================================================
   Generic game widgets
   ========================================================= */
.center-col { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; }
.center-col > * { max-width: 100%; }

.choice-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.choice-row button {
  padding: 10px 16px; border-radius: 999px; background: var(--paper); border: 1.5px solid var(--rule);
  font-weight: 700; color: var(--ink);
}
.choice-row button.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Memory Match */
.memory-grid {
  display: grid; gap: 10px; margin-inline: auto;
}
.memory-tile {
  aspect-ratio: 1 / 1; min-height: 60px;
  border-radius: 14px; border: 1.5px solid var(--rule);
  background: var(--paper);
  display: grid; place-items: center; font-size: 32px; font-family: var(--font-display); font-weight: 800;
  cursor: pointer; transition: transform .2s ease, background .2s ease;
  user-select: none;
}
.memory-tile.face-down { background: var(--ink); color: transparent; }
.memory-tile.face-down::before {
  content: "?"; color: var(--accent); font-size: 28px;
}
.memory-tile.matched { background: #244b35; border-color: #8bd49a; color: #c9ffd1; }
.memory-tile:focus-visible { transform: translateY(-2px); }

/* Math Dash */
.math-question {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 7vw, 72px); letter-spacing: -0.02em; text-align: center;
}
.math-input {
  width: 180px; padding: 14px 18px; border-radius: 14px; border: 1.5px solid var(--rule);
  background: var(--paper); color: var(--ink); font-size: 26px; text-align: center; font-family: var(--font-mono);
}
.math-input:focus { border-color: var(--ink); outline: none; }
.bar { width: 100%; height: 8px; background: var(--paper-2); border-radius: 999px; overflow: hidden; border: 1px solid var(--rule); }
.bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-4)); transition: width .2s linear; }

/* Word Scramble */
.scramble-letters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.scramble-letter {
  background: var(--paper); border: 1.5px solid var(--rule); border-radius: 10px;
  width: 46px; height: 56px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
}
.word-input {
  width: min(360px, 90%); padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid var(--rule); background: var(--paper); font-size: 18px; font-family: var(--font-mono);
  text-align: center; letter-spacing: 0.12em; text-transform: uppercase;
}
.hint-line { color: var(--ink-soft); font-size: 14px; max-width: 50ch; text-align: center; }

/* Typing */
.typing-text {
  font-family: var(--font-mono);
  font-size: clamp(18px, 2.6vw, 24px); line-height: 1.6;
  background: var(--paper); border: 1.5px solid var(--rule); border-radius: 14px;
  padding: 20px; max-width: 760px; margin-inline: auto;
  letter-spacing: 0.01em;
}
.typing-text .ok { color: var(--accent-2); }
.typing-text .err { color: var(--danger); background: rgba(255,138,112,.18); border-radius: 3px; }
.typing-text .cur { background: var(--ink); color: var(--paper); border-radius: 3px; }
.typing-input {
  display: block; width: min(760px, 100%); margin: 12px auto 0;
  padding: 12px 14px; border: 1.5px solid var(--rule); border-radius: 12px;
  background: var(--paper); font-family: var(--font-mono); font-size: 16px;
}

/* Reaction */
.reaction-pad {
  width: 100%; max-width: 640px; min-height: 320px; border-radius: 18px;
  display: grid; place-items: center; text-align: center;
  color: var(--paper); cursor: pointer; user-select: none;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.01em;
  transition: background .15s ease;
}
.reaction-pad.wait { background: #6c8ef0; }
.reaction-pad.now { background: #7fb685; }
.reaction-pad.early { background: #c0533f; }
.reaction-pad.done { background: var(--ink); }

/* Snake */
.snake-canvas {
  display: block; margin: 0 auto; background: var(--paper-3);
  border: 1.5px solid var(--ink); border-radius: 18px;
  image-rendering: pixelated;
}
.dpad { display: grid; grid-template-columns: 60px 60px 60px; gap: 6px; margin-top: 12px; }
.dpad button {
  width: 60px; height: 48px; border-radius: 12px; border: 1.5px solid var(--rule); background: var(--paper); color: var(--ink); font-size: 22px; font-weight: 800;
}
.dpad .blank { visibility: hidden; }

/* 2048-like */
.tiles-grid {
  width: 100%; max-width: 420px; aspect-ratio: 1/1;
  background: #efe1bf; border-radius: 18px; padding: 10px; margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(4, 1fr); gap: 10px;
  border: 1.5px solid var(--rule);
}
.tile-cell { background: #f7ecd0; border-radius: 10px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 4vw, 30px); }
.tile-cell[data-v="0"] { color: transparent; }
.tile-cell[data-v="2"] { background: #fff3d6; color: #6b5117; }
.tile-cell[data-v="4"] { background: #ffe6b4; color: #6b5117; }
.tile-cell[data-v="8"] { background: #ffcb84; color: #4a2606; }
.tile-cell[data-v="16"] { background: #f4a259; color: #fff; }
.tile-cell[data-v="32"] { background: #ed8e51; color: #fff; }
.tile-cell[data-v="64"] { background: #d96c8c; color: #fff; }
.tile-cell[data-v="128"] { background: #b48ee0; color: #fff; }
.tile-cell[data-v="256"] { background: #6c8ef0; color: #fff; }
.tile-cell[data-v="512"] { background: #7fb685; color: #fff; }
.tile-cell[data-v="1024"] { background: #2c5e34; color: #fff; }
.tile-cell[data-v="2048"] { background: #1f2638; color: #f4a259; }

/* Lights Out (puzzle) */
.lights-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; width: 100%; max-width: 360px; margin-inline: auto; }
.light {
  aspect-ratio: 1/1; border-radius: 14px; border: 1.5px solid var(--rule);
  background: #2a3146; transition: background .15s ease, transform .15s ease;
}
.light.on { background: #f4a259; border-color: #b07033; box-shadow: 0 0 0 2px #f4a25933 inset; }
.light:focus-visible { transform: scale(1.04); }

/* End-state banner inside stage */
.end-banner {
  margin: 20px auto 0; max-width: 520px; text-align: center;
  background: var(--paper-2); border: 1.5px dashed var(--ink); border-radius: 18px;
  padding: 18px 22px;
}
.end-banner h3 { font-family: var(--font-display); font-weight: 800; margin: 0 0 4px; font-size: 22px; }
.end-banner p { margin: 0; color: var(--ink-soft); }

/* Utility */
.center-text { text-align: center; }
.muted { color: var(--ink-mute); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
