/* ==========================================================================
   fairplayregister.click - shell visuals
   Prefix   : shella5d1b-
   Canvas   : 320-430px mobile-first, centered on wide screens (max 430px)
   Palette  : #0F0F23 deep indigo base / #FFEFD5 cream text
   Voice    : humanist serif headings + clear sans body, pill buttons,
              squared grouped cover cards, short-list rhythm, restrained fades
   ========================================================================== */

:root {
  --shella5d1b-ink: #0F0F23;
  --shella5d1b-ink-deep: #0A0A19;
  --shella5d1b-cream: #FFEFD5;
  --shella5d1b-cream-88: rgba(255, 239, 213, 0.88);
  --shella5d1b-cream-72: rgba(255, 239, 213, 0.72);
  --shella5d1b-cream-55: rgba(255, 239, 213, 0.55);
  --shella5d1b-cream-38: rgba(255, 239, 213, 0.38);
  --shella5d1b-line: rgba(255, 239, 213, 0.14);
  --shella5d1b-line-soft: rgba(255, 239, 213, 0.08);
  --shella5d1b-panel: rgba(255, 239, 213, 0.045);
  --shella5d1b-panel-lift: rgba(255, 239, 213, 0.09);
  --shella5d1b-glow: rgba(255, 239, 213, 0.16);
  --shella5d1b-font-head: "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", Georgia, serif;
  --shella5d1b-font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shella5d1b-r-card: 6px;
  --shella5d1b-r-chip: 4px;
  --shella5d1b-r-pill: 999px;
  --shella5d1b-top-h: 58px;
  --shella5d1b-dock-h: 62px;
  --shella5d1b-gutter: 14px;
}

/* ---------- base ---------- */

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  background: var(--shella5d1b-ink-deep);
  color: var(--shella5d1b-cream);
  font-family: var(--shella5d1b-font-body);
  font-size: 14px;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--shella5d1b-cream);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--shella5d1b-cream);
  outline-offset: 2px;
  border-radius: var(--shella5d1b-r-chip);
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3 {
  font-family: var(--shella5d1b-font-head);
  font-weight: 600;
  line-height: 1.22;
  margin: 0 0 8px;
  letter-spacing: 0.2px;
}

p {
  margin: 0 0 10px;
  color: var(--shella5d1b-cream-88);
}

/* ---------- phone canvas ---------- */

.shella5d1b-canvas {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(120% 42% at 50% -4%, var(--shella5d1b-glow) 0%, rgba(15, 15, 35, 0) 62%),
    radial-gradient(90% 30% at 88% 108%, rgba(255, 239, 213, 0.05) 0%, rgba(15, 15, 35, 0) 70%),
    var(--shella5d1b-ink);
  box-shadow: 0 0 0 1px var(--shella5d1b-line-soft);
}

.shella5d1b-main {
  padding: calc(var(--shella5d1b-top-h) + 14px) var(--shella5d1b-gutter) calc(var(--shella5d1b-dock-h) + 58px);
}

/* ---------- top action bar ---------- */

.shella5d1b-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 60;
  background: rgba(10, 10, 25, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--shella5d1b-line);
}

.shella5d1b-toprow {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: var(--shella5d1b-top-h);
  padding: 9px var(--shella5d1b-gutter);
}

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

.shella5d1b-brand-logo {
  width: 30px;
  height: 30px;
  border-radius: var(--shella5d1b-r-chip);
  border: 1px solid var(--shella5d1b-line);
  flex: 0 0 auto;
}

.shella5d1b-brand-name {
  font-family: var(--shella5d1b-font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--shella5d1b-cream);
}

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

/* pill buttons: primary large, secondary lean (staggered sizes) */

.shella5d1b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: var(--shella5d1b-r-pill);
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.shella5d1b-btn:active {
  transform: scale(0.96);
}

.shella5d1b-btn-register {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 12.5px;
  background: linear-gradient(180deg, #FFF6E3 0%, var(--shella5d1b-cream) 100%);
  color: var(--shella5d1b-ink);
  box-shadow: 0 4px 14px rgba(255, 239, 213, 0.22);
}

.shella5d1b-btn-login {
  min-height: 34px;
  padding: 6px 12px;
  font-size: 11.5px;
  background: transparent;
  color: var(--shella5d1b-cream);
  border: 1px solid var(--shella5d1b-cream-38);
}

.shella5d1b-burger {
  width: 34px;
  height: 34px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--shella5d1b-line);
  border-radius: var(--shella5d1b-r-chip);
  flex: 0 0 auto;
}

.shella5d1b-burger span {
  display: block;
  width: 16px;
  height: 1.6px;
  background: var(--shella5d1b-cream);
  border-radius: 2px;
  transition: transform 0.24s ease, opacity 0.18s ease, width 0.24s ease;
}

/* icon state morph: hamburger shrinks and folds into an X */

.shella5d1b-burger.is-open span:nth-child(1) {
  transform: translateY(5.6px) rotate(45deg);
}

.shella5d1b-burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 4px;
}

.shella5d1b-burger.is-open span:nth-child(3) {
  transform: translateY(-5.6px) rotate(-45deg);
}

/* ---------- expandable drawer nav ---------- */

.shella5d1b-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  background: rgba(12, 12, 28, 0.97);
  border-bottom: 1px solid transparent;
}

.shella5d1b-drawer.is-open {
  max-height: 560px;
  border-bottom-color: var(--shella5d1b-line);
}

.shella5d1b-drawer-inner {
  padding: 10px var(--shella5d1b-gutter) 16px;
}

.shella5d1b-drawer-tag {
  display: block;
  margin: 12px 2px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--shella5d1b-cream-38);
}

.shella5d1b-drawer-tag:first-child {
  margin-top: 2px;
}

.shella5d1b-drawer-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 10px;
}

.shella5d1b-drawer-link {
  display: block;
  min-height: 40px;
  padding: 9px 10px;
  font-size: 12.5px;
  color: var(--shella5d1b-cream-88);
  border-radius: var(--shella5d1b-r-chip);
  border: 1px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.16s ease, color 0.16s ease;
}

.shella5d1b-drawer-link:active,
.shella5d1b-drawer-link:hover {
  background: var(--shella5d1b-panel-lift);
  color: var(--shella5d1b-cream);
}

.shella5d1b-drawer-link.is-here {
  border-color: var(--shella5d1b-line);
  background: var(--shella5d1b-panel);
  color: var(--shella5d1b-cream);
}

/* ---------- hero ---------- */

.shella5d1b-hero {
  padding: 14px 2px 4px;
}

.shella5d1b-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--shella5d1b-cream-72);
  border: 1px solid var(--shella5d1b-line);
  border-radius: var(--shella5d1b-r-pill);
}

.shella5d1b-hero h1 {
  font-size: clamp(26px, 7.4vw, 34px);
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.shella5d1b-lede {
  font-size: 13.5px;
  color: var(--shella5d1b-cream-88);
  max-width: 40ch;
}

.shella5d1b-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 14px 0 4px;
}

.shella5d1b-cta-main {
  min-height: 48px;
  padding: 13px 30px;
  font-size: 15px;
}

.shella5d1b-cta-sub {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 13px;
}

.shella5d1b-cta-note {
  font-size: 11.5px;
  color: var(--shella5d1b-cream-55);
}

/* ---------- carousel ---------- */

.shella5d1b-carousel {
  position: relative;
  display: grid;
  margin: 16px 0 6px;
  border: 1px solid var(--shella5d1b-line);
  border-radius: var(--shella5d1b-r-card);
  overflow: hidden;
  background: var(--shella5d1b-panel);
}

.shella5d1b-slide {
  position: relative;
  display: block;
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.shella5d1b-slide.is-on {
  opacity: 1;
  visibility: visible;
}

.shella5d1b-slide-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.shella5d1b-slide-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 14px 12px;
  background: linear-gradient(180deg, rgba(10, 10, 25, 0) 0%, rgba(10, 10, 25, 0.88) 78%);
}

.shella5d1b-slide-title {
  display: block;
  font-family: var(--shella5d1b-font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--shella5d1b-cream);
}

.shella5d1b-slide-sub {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: var(--shella5d1b-cream-72);
}

.shella5d1b-dots {
  position: absolute;
  right: 10px;
  bottom: 8px;
  display: flex;
  gap: 5px;
  z-index: 2;
}

.shella5d1b-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--shella5d1b-cream-38);
  transition: background 0.2s ease, transform 0.2s ease;
}

.shella5d1b-dot.is-on {
  background: var(--shella5d1b-cream);
  transform: scale(1.15);
}

/* ---------- sections ---------- */

.shella5d1b-section {
  margin: 26px 0;
}

.shella5d1b-sectiontag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--shella5d1b-cream-38);
}

.shella5d1b-h2 {
  font-size: clamp(19px, 5.4vw, 22px);
  margin-bottom: 10px;
}

.shella5d1b-h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

/* ---------- grouped cover-card game board ---------- */

.shella5d1b-group {
  margin: 16px 0;
  border: 1px solid var(--shella5d1b-line);
  border-radius: var(--shella5d1b-r-card);
  background: var(--shella5d1b-panel);
  overflow: hidden;
}

.shella5d1b-group-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 11px 12px 9px;
  background: var(--shella5d1b-panel-lift);
  border-left: 3px solid var(--shella5d1b-cream);
  border-bottom: 1px solid var(--shella5d1b-line-soft);
}

.shella5d1b-group-head h3 {
  margin: 0;
  font-size: 15.5px;
}

.shella5d1b-group-count {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--shella5d1b-cream-55);
  white-space: nowrap;
}

.shella5d1b-group-blurb {
  margin: 0;
  padding: 9px 12px 2px;
  font-size: 12.5px;
  color: var(--shella5d1b-cream-72);
}

.shella5d1b-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px 12px 12px;
}

@media (min-width: 392px) {
  .shella5d1b-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.shella5d1b-tile {
  display: block;
  border-radius: var(--shella5d1b-r-chip);
  border: 1px solid var(--shella5d1b-line-soft);
  background: rgba(10, 10, 25, 0.5);
  padding: 3px 3px 5px;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.shella5d1b-tile:active {
  transform: scale(0.94);
  border-color: var(--shella5d1b-cream-55);
}

.shella5d1b-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 3px;
}

.shella5d1b-tile-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.1px;
  color: var(--shella5d1b-cream-88);
}

/* ---------- short-list rhythm ---------- */

.shella5d1b-list {
  margin: 8px 0 12px;
  padding: 0;
  list-style: none;
}

.shella5d1b-list li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 13px;
  color: var(--shella5d1b-cream-88);
  border-bottom: 1px dashed var(--shella5d1b-line-soft);
}

.shella5d1b-list li:last-child {
  border-bottom: none;
}

.shella5d1b-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--shella5d1b-cream-55);
  border-radius: 1px;
}

.shella5d1b-steps {
  margin: 8px 0 12px;
  padding: 0;
  list-style: none;
  counter-reset: shella5d1b-step;
}

.shella5d1b-steps li {
  counter-increment: shella5d1b-step;
  position: relative;
  padding: 7px 0 7px 34px;
  font-size: 13px;
  color: var(--shella5d1b-cream-88);
}

.shella5d1b-steps li::before {
  content: counter(shella5d1b-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 8px;
  font-family: var(--shella5d1b-font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--shella5d1b-ink);
  background: var(--shella5d1b-cream-55);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--shella5d1b-r-chip);
}

/* ---------- fact strip / inline promo ---------- */

.shella5d1b-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}

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

.shella5d1b-fact-num {
  display: block;
  font-family: var(--shella5d1b-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--shella5d1b-cream);
}

.shella5d1b-fact-label {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: 0.6px;
  color: var(--shella5d1b-cream-55);
}

.shella5d1b-inline-cta {
  color: var(--shella5d1b-cream);
  font-weight: 700;
  border-bottom: 1px solid var(--shella5d1b-cream-55);
  padding-bottom: 1px;
}

/* ---------- extended footer ---------- */

.shella5d1b-extfoot {
  margin-top: 30px;
  padding: 18px 0 0;
  border-top: 1px solid var(--shella5d1b-line);
}

.shella5d1b-extfoot-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--shella5d1b-cream-38);
  margin: 0 0 8px;
}

.shella5d1b-brandblurb {
  font-size: 12.5px;
  color: var(--shella5d1b-cream-72);
}

.shella5d1b-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 10px 0 4px;
}

.shella5d1b-directory a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  font-size: 11.5px;
  color: var(--shella5d1b-cream-88);
  border: 1px solid var(--shella5d1b-line-soft);
  border-radius: var(--shella5d1b-r-chip);
  background: var(--shella5d1b-panel);
  transition: background 0.16s ease, color 0.16s ease;
}

.shella5d1b-directory a:active,
.shella5d1b-directory a:hover {
  background: var(--shella5d1b-panel-lift);
  color: var(--shella5d1b-cream);
}

/* horizontal shortcut chips for promo actions */

.shella5d1b-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 8px;
  margin: 8px 0 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shella5d1b-chips::-webkit-scrollbar {
  display: none;
}

.shella5d1b-chip {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--shella5d1b-ink);
  background: linear-gradient(180deg, #FFF6E3 0%, var(--shella5d1b-cream) 100%);
  border: none;
  border-radius: var(--shella5d1b-r-pill);
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(255, 239, 213, 0.14);
  transition: transform 0.16s ease;
}

.shella5d1b-chip:active {
  transform: scale(0.95);
}

.shella5d1b-chip-alt {
  background: transparent;
  color: var(--shella5d1b-cream);
  border: 1px solid var(--shella5d1b-cream-38);
  box-shadow: none;
}

.shella5d1b-disclaim {
  margin-top: 14px;
  padding: 11px 12px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--shella5d1b-cream-55);
  border: 1px dashed var(--shella5d1b-line);
  border-radius: var(--shella5d1b-r-card);
}

/* ---------- common footline ---------- */

.shella5d1b-footline {
  margin-top: 18px;
  padding: 14px var(--shella5d1b-gutter) 10px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.4px;
  color: var(--shella5d1b-cream-38);
  border-top: 1px solid var(--shella5d1b-line-soft);
}

/* ---------- floating bottom dock ---------- */

.shella5d1b-dock {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: var(--shella5d1b-dock-h);
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 25, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--shella5d1b-line);
}

.shella5d1b-dockbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 48px;
  padding: 4px 2px;
  background: transparent;
  border: none;
  border-radius: var(--shella5d1b-r-chip);
  color: var(--shella5d1b-cream-55);
  position: relative;
  transition: transform 0.18s ease, color 0.18s ease;
}

.shella5d1b-dockbtn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease;
}

.shella5d1b-dockbtn-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* active state: slight lift + light marker dot */

.shella5d1b-dockbtn.is-here {
  color: var(--shella5d1b-cream);
  transform: translateY(-2px);
}

.shella5d1b-dockbtn.is-here::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--shella5d1b-cream);
}

/* icon state morph on press */

.shella5d1b-dockbtn:active svg {
  transform: scale(0.86) rotate(-4deg);
}

/* ---------- help-page layouts ---------- */

.shella5d1b-help-intro {
  margin: 8px 0 18px;
  padding: 14px 14px 12px;
  border-left: 3px solid var(--shella5d1b-cream);
  background: var(--shella5d1b-panel);
}

.shella5d1b-help-intro p:last-child {
  margin-bottom: 0;
}

.shella5d1b-help-rail {
  display: grid;
  gap: 8px;
  margin: 14px 0 20px;
}

.shella5d1b-help-rail-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px 10px;
  border: 1px solid var(--shella5d1b-line);
  border-radius: var(--shella5d1b-r-card);
  background: var(--shella5d1b-panel);
}

.shella5d1b-help-rail-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--shella5d1b-r-pill);
  background: var(--shella5d1b-cream);
  color: var(--shella5d1b-ink);
  font-family: var(--shella5d1b-font-head);
  font-weight: 700;
}

.shella5d1b-help-rail-item h3,
.shella5d1b-help-rail-item p {
  margin-bottom: 3px;
}

.shella5d1b-help-rail-item p {
  font-size: 12px;
}

.shella5d1b-help-note {
  padding: 12px;
  border-top: 1px solid var(--shella5d1b-line);
  border-bottom: 1px solid var(--shella5d1b-line);
}

.shella5d1b-help-note strong {
  color: var(--shella5d1b-cream);
}

.shella5d1b-help-table {
  width: 100%;
  margin: 12px 0 16px;
  border-collapse: collapse;
  font-size: 12px;
}

.shella5d1b-help-table th,
.shella5d1b-help-table td {
  padding: 9px 8px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--shella5d1b-line-soft);
}

.shella5d1b-help-table th {
  color: var(--shella5d1b-cream);
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.shella5d1b-help-table td {
  color: var(--shella5d1b-cream-88);
}

.shella5d1b-help-faq {
  margin: 9px 0;
  border: 1px solid var(--shella5d1b-line);
  border-radius: var(--shella5d1b-r-card);
  background: var(--shella5d1b-panel);
}

.shella5d1b-help-faq summary {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
  font-family: var(--shella5d1b-font-head);
  font-size: 14px;
  font-weight: 700;
}

.shella5d1b-help-faq summary::-webkit-details-marker {
  display: none;
}

.shella5d1b-help-faq summary::after {
  content: "+";
  margin-left: auto;
  padding-left: 8px;
  color: var(--shella5d1b-cream-55);
  font-family: var(--shella5d1b-font-body);
  font-size: 19px;
}

.shella5d1b-help-faq[open] summary::after {
  content: "-";
}

.shella5d1b-help-faq-answer {
  padding: 0 12px 11px;
  border-top: 1px solid var(--shella5d1b-line-soft);
}

.shella5d1b-help-faq-answer p:last-child {
  margin-bottom: 0;
}

.shella5d1b-help-promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  padding: 12px;
  border: 1px solid var(--shella5d1b-line);
  border-radius: var(--shella5d1b-r-card);
  background: linear-gradient(110deg, var(--shella5d1b-panel-lift), var(--shella5d1b-panel));
}

.shella5d1b-help-promo p {
  flex: 1 1 180px;
  margin: 0;
  font-size: 12px;
}

.shella5d1b-help-promo .shella5d1b-chip {
  min-height: 44px;
}

/* ---------- restrained reveal ---------- */

.shella5d1b-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.shella5d1b-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- helpers ---------- */

.shella5d1b-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .shella5d1b-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- narrow canvas fine-tuning (320px) ---------- */

@media (max-width: 339px) {
  :root {
    --shella5d1b-gutter: 11px;
  }
  .shella5d1b-btn-register {
    padding: 8px 12px;
  }
  .shella5d1b-btn-login {
    padding: 6px 9px;
  }
  .shella5d1b-facts {
    grid-template-columns: 1fr 1fr;
  }
}
