/* ==========================================================================
   adaptive-995158-tokens.css
   tablegameonline.homes - mobile-first design tokens + components
   Palette: #E9967A / #E0FFFF / #FF0000 / #F0FDFF / #6C757D / #1A1A1A
   Direction: rounded headings + compact body, round buttons / square cards,
   compact square game catalogue, scenario-branch rhythm, square high-contrast CTAs.
   All classes and variables use the surface95158- prefix.
   Canvas: 320px - 430px phones, centered app frame on wide screens.
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --surface95158-ink: #E0FFFF;
  --surface95158-paper: #F0FDFF;
  --surface95158-coral: #E9967A;
  --surface95158-alert: #FF0000;
  --surface95158-mute: #6C757D;
  --surface95158-night: #1A1A1A;
  --surface95158-pit: #101010;
  --surface95158-panel: #232323;
  --surface95158-panel-2: #2B2B2B;
  --surface95158-line: #383838;
  --surface95158-soft: rgba(224, 255, 255, 0.66);
  --surface95158-faint: rgba(224, 255, 255, 0.38);
  --surface95158-coral-dim: rgba(233, 150, 122, 0.16);
  --surface95158-font-head: ui-rounded, "Hiragino Maru Gothic ProN", "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  --surface95158-font-body: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --surface95158-top-h: 56px;
  --surface95158-rail-h: 64px;
  --surface95158-r-btn: 12px;
  --surface95158-r-card: 0px;
  --surface95158-pad: 12px;
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

html, body { max-width: 100%; overflow-x: hidden; }

body {
  background: var(--surface95158-pit);
  color: var(--surface95158-ink);
  font-family: var(--surface95158-font-body);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

img { display: block; max-width: 100%; border: 0; }

button, a { -webkit-tap-highlight-color: transparent; }

button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul, ol { list-style: none; }

a {
  color: var(--surface95158-coral);
  text-decoration: none;
}

a:hover, a:focus-visible { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--surface95158-coral);
  outline-offset: 2px;
}

::selection { background: var(--surface95158-coral); color: var(--surface95158-night); }

/* ---------- app frame: centered 430px phone canvas ---------- */
.surface95158-shell {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
  min-height: 100vh;
  background: var(--surface95158-night);
  box-shadow: 0 0 0 1px #2E2E2E, 0 0 48px rgba(0, 0, 0, 0.65);
  overflow-x: clip;
}

/* ---------- skip link ---------- */
.surface95158-skip {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 120;
  padding: 10px 14px;
  background: var(--surface95158-coral);
  color: var(--surface95158-night);
  font-weight: 700;
  border-radius: var(--surface95158-r-btn);
  transition: top 0.15s ease;
}

.surface95158-skip:focus { top: 8px; text-decoration: none; }

/* ==========================================================================
   Top header: edge-aligned functional bar
   ========================================================================== */
.surface95158-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--surface95158-top-h);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  background: rgba(20, 20, 20, 0.96);
  border-bottom: 1px solid var(--surface95158-line);
  backdrop-filter: blur(6px);
}

.surface95158-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-right: auto;
}

.surface95158-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
  border: 1px solid var(--surface95158-line);
  background: var(--surface95158-panel);
}

.surface95158-brandname {
  font-family: var(--surface95158-font-head);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--surface95158-paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.surface95158-topacts {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

/* buttons: round-ish regular actions, square-corner high-contrast CTA */
.surface95158-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--surface95158-r-btn);
  transition: transform 0.12s ease, filter 0.12s ease, background 0.12s ease;
}

.surface95158-btn:active { transform: scale(0.94); }

.surface95158-btn--cta {
  border-radius: var(--surface95158-r-card);
  background: var(--surface95158-coral);
  color: var(--surface95158-night);
  box-shadow: 0 3px 0 rgba(233, 150, 122, 0.35);
}

.surface95158-btn--cta:hover { filter: brightness(1.07); }

.surface95158-btn--ghost {
  border-radius: var(--surface95158-r-card);
  border: 1px solid var(--surface95158-coral);
  color: var(--surface95158-coral);
  background: rgba(233, 150, 122, 0.08);
}

.surface95158-btn--ghost:hover { background: var(--surface95158-coral-dim); }

.surface95158-btn--top {
  min-width: 62px;
  padding: 0 10px;
  font-size: 12px;
}

.surface95158-menubtn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface95158-line);
  border-radius: var(--surface95158-r-btn);
  background: var(--surface95158-panel);
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.surface95158-menubtn:active { transform: scale(0.92); }

.surface95158-menubtn svg { width: 20px; height: 20px; }

/* ==========================================================================
   Expandable nav panel
   ========================================================================== */
.surface95158-menu {
  position: fixed;
  top: var(--surface95158-top-h);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 85;
  max-height: 0;
  overflow: hidden;
  background: #141414;
  border-bottom: 1px solid transparent;
  transition: max-height 0.28s ease, border-color 0.28s ease;
}

.surface95158-menu--open {
  max-height: 560px;
  border-bottom-color: var(--surface95158-line);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.55);
}

.surface95158-menuin { padding: 12px 14px 16px; }

.surface95158-mgroup {
  margin-bottom: 12px;
}

.surface95158-mlabel {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--surface95158-mute);
  margin-bottom: 6px;
}

.surface95158-mlinks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.surface95158-mlink {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 10px;
  background: var(--surface95158-panel);
  border: 1px solid var(--surface95158-line);
  border-radius: var(--surface95158-r-card);
  font-size: 12.5px;
  color: var(--surface95158-paper);
  transition: background 0.12s ease, transform 0.12s ease;
}

.surface95158-mlink:hover, .surface95158-mlink:focus-visible {
  background: var(--surface95158-panel-2);
  text-decoration: none;
}

.surface95158-mlink:active { transform: scale(0.97); }

.surface95158-mlink--now {
  border-color: var(--surface95158-coral);
  color: var(--surface95158-coral);
  background: var(--surface95158-coral-dim);
}

.surface95158-menucta {
  width: 100%;
  margin-top: 2px;
}

/* ==========================================================================
   Main column
   ========================================================================== */
.surface95158-main {
  padding: calc(var(--surface95158-top-h) + 12px) var(--surface95158-pad) calc(var(--surface95158-rail-h) + 44px);
}

.surface95158-section { margin-top: 26px; }

.surface95158-h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--surface95158-font-head);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.22;
  color: var(--surface95158-paper);
  margin-bottom: 10px;
}

.surface95158-h2::before {
  content: "";
  width: 5px;
  height: 20px;
  flex: 0 0 auto;
  background: var(--surface95158-coral);
  border-radius: 2px;
}

.surface95158-h3 {
  font-family: var(--surface95158-font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--surface95158-coral);
  margin-bottom: 4px;
}

.surface95158-p {
  color: var(--surface95158-soft);
  font-size: 13.5px;
  margin-bottom: 10px;
}

.surface95158-p strong { color: var(--surface95158-paper); }

/* ==========================================================================
   Hero
   ========================================================================== */
.surface95158-hero { padding-top: 4px; }

.surface95158-h1 {
  font-family: var(--surface95158-font-head);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 800;
  color: var(--surface95158-paper);
  margin-bottom: 8px;
}

.surface95158-h1 em {
  font-style: normal;
  color: var(--surface95158-coral);
}

.surface95158-lede {
  font-size: 13.5px;
  color: var(--surface95158-soft);
  margin-bottom: 12px;
}

.surface95158-statrow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 12px;
}

.surface95158-stat {
  background: var(--surface95158-panel);
  border: 1px solid var(--surface95158-line);
  border-radius: var(--surface95158-r-card);
  padding: 8px 6px;
  text-align: center;
}

.surface95158-stat b {
  display: block;
  font-family: var(--surface95158-font-head);
  font-size: 17px;
  color: var(--surface95158-coral);
  line-height: 1.1;
}

.surface95158-stat span {
  display: block;
  font-size: 10.5px;
  color: var(--surface95158-mute);
  margin-top: 2px;
}

/* ---------- carousel ---------- */
.surface95158-caro {
  position: relative;
  border: 1px solid var(--surface95158-line);
  border-radius: var(--surface95158-r-card);
  background: var(--surface95158-panel);
  overflow: hidden;
}

.surface95158-ctrack {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.surface95158-ctrack::-webkit-scrollbar { display: none; }

.surface95158-cslide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: center;
  width: 100%;
  height: 178px;
  display: block;
  padding: 0;
}

.surface95158-cslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.surface95158-cslide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 46%, rgba(26, 26, 26, 0.86) 100%);
}

.surface95158-ctag {
  position: absolute;
  left: 10px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: var(--surface95158-coral);
  color: var(--surface95158-night);
  font-size: 12px;
  font-weight: 800;
  border-radius: var(--surface95158-r-card);
  box-shadow: 0 3px 0 rgba(233, 150, 122, 0.35);
}

.surface95158-ctag::after { content: "\2192"; font-weight: 700; }

.surface95158-cdots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  display: flex;
  gap: 6px;
}

.surface95158-cdot {
  width: 22px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.surface95158-cdot i {
  display: block;
  width: 9px;
  height: 9px;
  background: rgba(240, 253, 255, 0.45);
  border: 1px solid rgba(26, 26, 26, 0.5);
  transition: background 0.18s ease, transform 0.18s ease;
}

.surface95158-cdot--on i {
  background: var(--surface95158-coral);
  transform: scale(1.18);
}

/* ==========================================================================
   Game strips: compact square catalogue
   ========================================================================== */
.surface95158-striphead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.surface95158-count {
  flex: 0 0 auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--surface95158-night);
  background: var(--surface95158-coral);
  padding: 3px 7px;
  border-radius: var(--surface95158-r-card);
}

.surface95158-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 7px;
  margin-top: 10px;
}

.surface95158-tile {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  background: var(--surface95158-panel);
  border: 1px solid var(--surface95158-line);
  border-radius: var(--surface95158-r-card);
  text-align: center;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.surface95158-tile:hover { border-color: var(--surface95158-coral); }

.surface95158-tile:active { transform: scale(0.93); }

.surface95158-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #151515;
}

.surface95158-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.surface95158-gname {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--surface95158-paper);
  min-height: 27px;
  word-break: break-word;
}

/* ==========================================================================
   Modules
   ========================================================================== */

/* steps (mobile access) */
.surface95158-steps { counter-reset: surface95158-step; }

.surface95158-steps li {
  position: relative;
  counter-increment: surface95158-step;
  padding: 9px 10px 9px 44px;
  background: var(--surface95158-panel);
  border: 1px solid var(--surface95158-line);
  border-left: 3px solid var(--surface95158-coral);
  border-radius: var(--surface95158-r-card);
  margin-bottom: 7px;
  font-size: 13px;
  color: var(--surface95158-soft);
}

.surface95158-steps li::before {
  content: counter(surface95158-step);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface95158-coral-dim);
  border: 1px solid var(--surface95158-coral);
  color: var(--surface95158-coral);
  font-size: 12px;
  font-weight: 800;
}

/* feature grid */
.surface95158-feats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.surface95158-feat {
  background: var(--surface95158-panel);
  border: 1px solid var(--surface95158-line);
  border-top: 3px solid var(--surface95158-coral);
  border-radius: var(--surface95158-r-card);
  padding: 10px;
}

.surface95158-feat p {
  font-size: 12px;
  color: var(--surface95158-soft);
  line-height: 1.45;
}

/* milestones */
.surface95158-miles { border-left: 2px solid var(--surface95158-line); margin-left: 8px; }

.surface95158-miles li {
  position: relative;
  padding: 0 0 12px 16px;
}

.surface95158-miles li:last-child { padding-bottom: 2px; }

.surface95158-miles li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--surface95158-night);
  border: 2px solid var(--surface95158-coral);
}

.surface95158-miles b {
  display: block;
  font-family: var(--surface95158-font-head);
  font-size: 13.5px;
  color: var(--surface95158-paper);
}

.surface95158-miles span { font-size: 12.5px; color: var(--surface95158-soft); }

/* winners feed */
.surface95158-wins {
  border: 1px solid var(--surface95158-line);
  border-radius: var(--surface95158-r-card);
  background: var(--surface95158-panel);
  overflow: hidden;
}

.surface95158-win {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-bottom: 1px solid var(--surface95158-line);
}

.surface95158-win:last-of-type { border-bottom: 0; }

.surface95158-wbadge {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface95158-coral-dim);
  border: 1px solid var(--surface95158-coral);
  color: var(--surface95158-coral);
  border-radius: var(--surface95158-r-card);
  font-size: 11px;
  font-weight: 800;
}

.surface95158-winfo { min-width: 0; flex: 1 1 auto; }

.surface95158-winfo b {
  display: block;
  font-size: 12.5px;
  color: var(--surface95158-paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.surface95158-winfo span { font-size: 11px; color: var(--surface95158-mute); }

.surface95158-wamt {
  flex: 0 0 auto;
  text-align: right;
}

.surface95158-wamt b {
  display: block;
  font-family: var(--surface95158-font-head);
  font-size: 14px;
  color: var(--surface95158-coral);
}

.surface95158-wamt span { font-size: 10.5px; color: var(--surface95158-mute); }

.surface95158-wnote {
  padding: 8px 11px;
  background: #191919;
  font-size: 11px;
  color: var(--surface95158-mute);
}

/* pros / limitations */
.surface95158-duo { display: grid; gap: 10px; }

.surface95158-box {
  border: 1px solid var(--surface95158-line);
  border-radius: var(--surface95158-r-card);
  background: var(--surface95158-panel);
  padding: 11px 12px;
}

.surface95158-box--pro { border-top: 3px solid var(--surface95158-coral); }

.surface95158-box--limit { border-top: 3px solid var(--surface95158-mute); }

.surface95158-box h3 { margin-bottom: 8px; }

.surface95158-box ul li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 12.5px;
  color: var(--surface95158-soft);
}

.surface95158-box--pro ul li::before {
  content: "+";
  position: absolute;
  left: 2px;
  color: var(--surface95158-coral);
  font-weight: 800;
}

.surface95158-box--limit ul li::before {
  content: "\2013";
  position: absolute;
  left: 2px;
  color: var(--surface95158-mute);
  font-weight: 800;
}

/* decision checklist */
.surface95158-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  margin-bottom: 7px;
  background: var(--surface95158-panel);
  border: 1px solid var(--surface95158-line);
  border-radius: var(--surface95158-r-card);
  font-size: 12.5px;
  color: var(--surface95158-soft);
}

.surface95158-check li::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 2px solid var(--surface95158-coral);
  border-radius: 3px;
  background: var(--surface95158-coral-dim);
}

/* ==========================================================================
   Extended footer: sectioned list - directory > brand > promos > disclaimer
   ========================================================================== */
.surface95158-xf {
  margin-top: 30px;
  border-top: 2px solid var(--surface95158-line);
  padding-top: 16px;
}

.surface95158-xlabel {
  font-family: var(--surface95158-font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--surface95158-paper);
  margin-bottom: 8px;
}

.surface95158-dir {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 18px;
}

.surface95158-dir a {
  display: block;
  min-height: 44px;
  padding: 8px 9px;
  background: var(--surface95158-panel);
  border: 1px solid var(--surface95158-line);
  border-radius: var(--surface95158-r-card);
  font-size: 11.5px;
  line-height: 1.3;
  color: var(--surface95158-paper);
  transition: border-color 0.12s ease, transform 0.12s ease;
}

.surface95158-dir a:hover, .surface95158-dir a:focus-visible {
  border-color: var(--surface95158-coral);
  text-decoration: none;
}

.surface95158-dir a:active { transform: scale(0.97); }

.surface95158-dir a small {
  display: block;
  color: var(--surface95158-mute);
  font-size: 10px;
}

.surface95158-xbrand {
  font-size: 12.5px;
  color: var(--surface95158-soft);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--surface95158-line);
}

.surface95158-promos { display: grid; gap: 7px; margin-bottom: 18px; }

.surface95158-promo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  padding: 9px 11px;
  text-align: left;
  background: var(--surface95158-panel);
  border: 1px solid var(--surface95158-line);
  border-left: 3px solid var(--surface95158-coral);
  border-radius: var(--surface95158-r-card);
  transition: transform 0.12s ease, background 0.12s ease;
}

.surface95158-promo:hover { background: var(--surface95158-panel-2); }

.surface95158-promo:active { transform: scale(0.98); }

.surface95158-promo b {
  display: block;
  font-size: 13px;
  color: var(--surface95158-paper);
}

.surface95158-promo span { font-size: 11px; color: var(--surface95158-mute); }

.surface95158-promo em {
  flex: 0 0 auto;
  margin-left: auto;
  font-style: normal;
  color: var(--surface95158-coral);
  font-weight: 800;
}

.surface95158-xdisclaimer {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--surface95158-mute);
  background: #171717;
  border: 1px dashed var(--surface95158-line);
  border-radius: var(--surface95158-r-card);
  padding: 11px 12px;
}

/* ==========================================================================
   Common footer + fixed bottom rail
   ========================================================================== */
.surface95158-foot {
  margin-top: 22px;
  padding: 14px 4px 6px;
  border-top: 1px solid var(--surface95158-line);
  text-align: center;
}

.surface95158-foot p { font-size: 11.5px; color: var(--surface95158-mute); }

.surface95158-foot b { color: var(--surface95158-soft); font-weight: 600; }

.surface95158-rail {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 95;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  height: var(--surface95158-rail-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(16, 16, 16, 0.97);
  border-top: 1px solid var(--surface95158-line);
  backdrop-filter: blur(6px);
}

.surface95158-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 44px;
  color: var(--surface95158-faint);
  transition: color 0.14s ease, transform 0.14s ease;
}

.surface95158-tab svg {
  width: 22px;
  height: 22px;
  transition: transform 0.14s ease;
}

.surface95158-tab:active { transform: scale(0.9); }

.surface95158-tab span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.surface95158-tab--now { color: var(--surface95158-coral); }

.surface95158-tab--now::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  background: var(--surface95158-coral);
}

.surface95158-tab--hot { color: var(--surface95158-coral); }

.surface95158-tab--hot span { color: var(--surface95158-coral); }

/* ==========================================================================
   Motion helpers
   ========================================================================== */
.surface95158-rise {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.surface95158-rise.surface95158-in {
  opacity: 1;
  transform: none;
}

/* ---------- wider phones: 5 game columns ---------- */
@media (min-width: 375px) {
  .surface95158-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .surface95158-h1 { font-size: 27px; }
  .surface95158-gname { font-size: 11.5px; }
}

@media (min-width: 431px) {
  body { background: radial-gradient(circle at 50% 0%, #1c1c1c 0%, #0d0d0d 62%); }
}

/* ---------- help page layouts ---------- */
.surface95158-helpintro {
  padding: 14px;
  border: 1px solid var(--surface95158-line);
  border-left: 4px solid var(--surface95158-coral);
  background: linear-gradient(135deg, var(--surface95158-panel), #191919);
}

.surface95158-helpintro p:last-child { margin-bottom: 0; }

.surface95158-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.surface95158-fact {
  min-height: 82px;
  padding: 9px;
  border: 1px solid var(--surface95158-line);
  background: var(--surface95158-panel);
}

.surface95158-fact b { display: block; color: var(--surface95158-coral); font-size: 12px; margin-bottom: 4px; }
.surface95158-fact span { color: var(--surface95158-soft); font-size: 12px; line-height: 1.4; }

.surface95158-promo-grid { display: grid; gap: 7px; }
.surface95158-promo-grid .surface95158-promo { min-height: 58px; }

.surface95158-callout {
  padding: 11px 12px;
  border: 1px solid var(--surface95158-line);
  background: var(--surface95158-coral-dim);
  color: var(--surface95158-soft);
  font-size: 12.5px;
}

.surface95158-faq {
  border-top: 1px solid var(--surface95158-line);
}

.surface95158-faq details {
  padding: 11px 0;
  border-bottom: 1px solid var(--surface95158-line);
}

.surface95158-faq summary {
  cursor: pointer;
  color: var(--surface95158-paper);
  font-family: var(--surface95158-font-head);
  font-size: 14px;
  font-weight: 700;
  padding-right: 18px;
}

.surface95158-faq details p { margin: 8px 0 0; color: var(--surface95158-soft); font-size: 13px; }
.surface95158-faq details[open] summary { color: var(--surface95158-coral); }

.surface95158-compare {
  overflow-x: auto;
  border: 1px solid var(--surface95158-line);
}

.surface95158-compare table { width: 100%; min-width: 360px; border-collapse: collapse; font-size: 12px; }
.surface95158-compare th, .surface95158-compare td { padding: 9px 8px; text-align: left; border-bottom: 1px solid var(--surface95158-line); vertical-align: top; }
.surface95158-compare th { color: var(--surface95158-coral); background: var(--surface95158-panel); font-size: 11px; }
.surface95158-compare td { color: var(--surface95158-soft); background: #191919; }
.surface95158-compare tr:last-child td { border-bottom: 0; }

.surface95158-answerbar {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 11px 12px;
  border-left: 3px solid var(--surface95158-coral);
  background: var(--surface95158-panel);
}

.surface95158-answerbar b { flex: 0 0 auto; color: var(--surface95158-coral); font-size: 12px; }
.surface95158-answerbar span { color: var(--surface95158-soft); font-size: 12.5px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .surface95158-rise { opacity: 1; transform: none; }
}
