/* =====================================================================
   bet 365 - bet-365.sbs
   File: responsive-340570-canvas.css
   Mobile-first canvas stylesheet tuned for a 320-430px phone frame.
   Every class name carries the shell05700- prefix.
   Palette anchors: #0000CD / #1C2833 / #40E0D0 / #FF1493 / #ADD8E6
   Visual direction: high-contrast display type over readable body,
   low-radius sectional zoning, light floating image cards,
   step-driven content rhythm, segmented action buttons.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------------------- */
:root {
  --shell05700-void: #070c12;
  --shell05700-bg: #0e1721;
  --shell05700-panel: #1c2833;
  --shell05700-panelUp: #24333f;
  --shell05700-line: rgba(173, 216, 230, 0.18);
  --shell05700-lineSoft: rgba(173, 216, 230, 0.09);
  --shell05700-royal: #0000cd;
  --shell05700-royalHi: #2a35e0;
  --shell05700-royalDeep: #00069b;
  --shell05700-aqua: #40e0d0;
  --shell05700-aquaSoft: rgba(64, 224, 208, 0.14);
  --shell05700-pink: #ff1493;
  --shell05700-pinkHi: #ff47a8;
  --shell05700-text: #f1f7fb;
  --shell05700-mist: #add8e6;
  --shell05700-dim: #90a7b6;
  --shell05700-r: 5px;
  --shell05700-r2: 9px;
  --shell05700-display: 'Anton', 'Be Vietnam Pro', system-ui, sans-serif;
  --shell05700-body: 'Be Vietnam Pro', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --shell05700-topH: 60px;
  --shell05700-dockH: 66px;
}

/* ---------------------------------------------------------------------
   2. Base layer
   --------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--shell05700-body);
  font-size: 14px;
  line-height: 1.62;
  color: var(--shell05700-text);
  background:
    radial-gradient(120% 60% at 50% 0%, #101d2b 0%, var(--shell05700-void) 62%);
  min-height: 100dvh;
}

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

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

a { color: var(--shell05700-aqua); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--shell05700-aqua);
  outline-offset: 2px;
  border-radius: 3px;
}

.shell05700-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--shell05700-aqua);
  color: #05221e;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 0 0 var(--shell05700-r) 0;
  z-index: 200;
}
.shell05700-skip:focus { left: 0; }

/* ---------------------------------------------------------------------
   3. Centered phone canvas (wide screens keep the mobile frame)
   --------------------------------------------------------------------- */
.shell05700-shell {
  max-width: 480px;
  margin: 0 auto;
  background: var(--shell05700-bg);
  min-height: 100dvh;
  position: relative;
}

.shell05700-main {
  padding: calc(var(--shell05700-topH) + 10px) 12px
           calc(var(--shell05700-dockH) + 26px + env(safe-area-inset-bottom));
}

/* ---------------------------------------------------------------------
   4. Top action band: minimal brand strip + segmented actions
   --------------------------------------------------------------------- */
.shell05700-topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  padding-top: calc(8px + env(safe-area-inset-top));
  min-height: var(--shell05700-topH);
  background: linear-gradient(180deg, #14202c 0%, rgba(20, 32, 44, 0.97) 100%);
  border-bottom: 1px solid var(--shell05700-line);
  backdrop-filter: blur(10px);
}

.shell05700-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--shell05700-text);
  min-width: 0;
}
.shell05700-brand:hover { text-decoration: none; }

.shell05700-logo {
  width: 38px;
  height: 38px;
  border-radius: var(--shell05700-r);
  border: 1px solid var(--shell05700-line);
  background: var(--shell05700-panel);
  object-fit: cover;
  flex: none;
}

.shell05700-brandName {
  font-family: var(--shell05700-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--shell05700-mist);
  white-space: nowrap;
}
.shell05700-brandName b { color: var(--shell05700-aqua); font-weight: 400; }

.shell05700-topActs {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: none;
}

.shell05700-btnReg,
.shell05700-btnLog {
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--shell05700-r);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.12s ease, filter 0.12s ease;
}
.shell05700-btnReg {
  background: linear-gradient(160deg, var(--shell05700-pinkHi), var(--shell05700-pink));
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 20, 147, 0.32);
}
.shell05700-btnLog {
  background: transparent;
  color: var(--shell05700-mist);
  border: 1px solid var(--shell05700-line);
}
.shell05700-btnReg:active,
.shell05700-btnLog:active { transform: scale(0.94); }

.shell05700-burger {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 4px;
  border: 1px solid var(--shell05700-line);
  border-radius: var(--shell05700-r);
  background: var(--shell05700-panel);
}
.shell05700-burger span {
  width: 18px;
  height: 2px;
  background: var(--shell05700-mist);
  border-radius: 1px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.shell05700-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.shell05700-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.shell05700-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   5. Compact route panel (slide-down menu)
   --------------------------------------------------------------------- */
.shell05700-panel {
  position: fixed;
  top: calc(var(--shell05700-topH) + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: calc(100% - 16px);
  max-width: 464px;
  z-index: 85;
  background: var(--shell05700-panel);
  border: 1px solid var(--shell05700-line);
  border-radius: var(--shell05700-r2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  padding: 10px 10px 12px;
  max-height: calc(100dvh - var(--shell05700-topH) - 24px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.shell05700-panel.shell05700-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.shell05700-panelTag {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--shell05700-aqua);
  margin: 8px 4px 6px;
}

.shell05700-panelGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}

.shell05700-route {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--shell05700-lineSoft);
  border-radius: var(--shell05700-r);
  background: var(--shell05700-panelUp);
  color: var(--shell05700-text);
  font-size: 12.5px;
  font-weight: 600;
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.shell05700-route:hover { text-decoration: none; border-color: var(--shell05700-aqua); }
.shell05700-route:active { transform: scale(0.97); }
.shell05700-route i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--shell05700-pink);
  flex: none;
}
.shell05700-route--home i { background: var(--shell05700-aqua); }
.shell05700-route--game i { background: #ffd24d; }
.shell05700-route em {
  font-style: normal;
  margin-left: auto;
  color: var(--shell05700-dim);
  font-size: 14px;
  line-height: 1;
}

/* ---------------------------------------------------------------------
   6. Hero block
   --------------------------------------------------------------------- */
.shell05700-hero { padding: 6px 2px 2px; }

.shell05700-heroTitle {
  font-family: var(--shell05700-display);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.22;
  letter-spacing: 0.015em;
  margin: 0 0 10px;
  color: var(--shell05700-text);
}
.shell05700-heroTitle b { color: var(--shell05700-aqua); font-weight: 400; }

.shell05700-hero p {
  margin: 0 0 10px;
  color: var(--shell05700-mist);
}

.shell05700-heroNote {
  font-size: 12px;
  color: var(--shell05700-dim);
  border-left: 3px solid var(--shell05700-royalHi);
  padding: 2px 0 2px 10px;
}

.shell05700-heroActs {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin: 14px 0 4px;
  flex-wrap: wrap;
}

/* Segmented action button: label cell + trigger cell */
.shell05700-seg {
  display: inline-flex;
  align-items: stretch;
  min-height: 46px;
  border-radius: var(--shell05700-r);
  overflow: hidden;
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 6px 18px rgba(0, 0, 205, 0.28);
  transition: transform 0.12s ease;
}
.shell05700-seg:active { transform: scale(0.96); }
.shell05700-seg b {
  display: grid;
  place-content: center;
  padding: 10px 14px;
  color: #fff;
  background: linear-gradient(160deg, var(--shell05700-pinkHi), var(--shell05700-pink));
  white-space: nowrap;
}
.shell05700-seg i {
  display: grid;
  place-content: center;
  padding: 10px 11px;
  font-style: normal;
  background: var(--shell05700-royalDeep);
  color: var(--shell05700-aqua);
}
.shell05700-seg--aqua b {
  background: linear-gradient(160deg, #54ecdd, var(--shell05700-aqua));
  color: #06322c;
}

.shell05700-segGhost {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px dashed var(--shell05700-line);
  border-radius: var(--shell05700-r);
  color: var(--shell05700-mist);
  font-weight: 600;
  font-size: 13px;
}
.shell05700-segGhost:hover { border-color: var(--shell05700-aqua); text-decoration: none; }

/* Quick fact strip under hero */
.shell05700-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 16px 0 2px;
  padding: 0;
  list-style: none;
}
.shell05700-fact {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border: 1px solid var(--shell05700-lineSoft);
  border-left: 3px solid var(--shell05700-aqua);
  background: var(--shell05700-panel);
  border-radius: var(--shell05700-r);
  padding: 8px 10px;
}
.shell05700-fact b {
  font-family: var(--shell05700-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--shell05700-text);
  letter-spacing: 0.02em;
}
.shell05700-fact span { font-size: 11.5px; color: var(--shell05700-dim); line-height: 1.35; }

/* ---------------------------------------------------------------------
   7. Banner carousel
   --------------------------------------------------------------------- */
.shell05700-caro {
  margin: 18px 0 4px;
  border: 1px solid var(--shell05700-line);
  border-radius: var(--shell05700-r2);
  overflow: hidden;
  background: var(--shell05700-panel);
}

.shell05700-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shell05700-track::-webkit-scrollbar { display: none; }

.shell05700-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 10;
  overflow: hidden;
}
.shell05700-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shell05700-slideCap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(180deg, rgba(7, 12, 18, 0) 0%, rgba(7, 12, 18, 0.88) 78%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
}
.shell05700-slideCap small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  color: var(--shell05700-aqua);
  letter-spacing: 0.04em;
}

.shell05700-caroCtl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  border-top: 1px solid var(--shell05700-lineSoft);
}

.shell05700-arrow {
  width: 44px;
  height: 40px;
  display: grid;
  place-content: center;
  border: 1px solid var(--shell05700-line);
  border-radius: var(--shell05700-r);
  color: var(--shell05700-mist);
  background: var(--shell05700-panelUp);
  transition: transform 0.12s ease;
}
.shell05700-arrow:active { transform: scale(0.9); }
.shell05700-arrow svg { width: 18px; height: 18px; }

.shell05700-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}
.shell05700-dot {
  width: 34px;
  height: 34px;
  display: grid;
  place-content: center;
}
.shell05700-dot i {
  width: 16px;
  height: 4px;
  border-radius: 2px;
  background: var(--shell05700-line);
  transition: background 0.15s ease, width 0.15s ease;
}
.shell05700-dot.shell05700-on i {
  background: var(--shell05700-pink);
  width: 24px;
}

/* ---------------------------------------------------------------------
   8. Section shells
   --------------------------------------------------------------------- */
.shell05700-sec { margin: 26px 0; }

.shell05700-secHead { margin-bottom: 10px; }

.shell05700-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--shell05700-aqua);
}
.shell05700-kicker::before {
  content: "";
  width: 14px;
  height: 3px;
  background: var(--shell05700-pink);
  border-radius: 2px;
}
.shell05700-count {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--shell05700-dim);
  border: 1px solid var(--shell05700-lineSoft);
  border-radius: 999px;
  padding: 1px 8px;
}

.shell05700-h2 {
  font-family: var(--shell05700-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: 0.02em;
  margin: 6px 0 6px;
  color: var(--shell05700-text);
}
.shell05700-h2 b { color: var(--shell05700-aqua); font-weight: 400; }

.shell05700-secIntro {
  margin: 0 0 12px;
  font-size: 12.5px;
  color: var(--shell05700-dim);
}
.shell05700-secIntro a { font-weight: 600; }

/* ---------------------------------------------------------------------
   9. Game grid and floating image tiles
   --------------------------------------------------------------------- */
.shell05700-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell05700-tileHit {
  width: 100%;
  min-height: 44px;
  display: block;
  text-align: center;
  border-radius: var(--shell05700-r);
  transition: transform 0.14s ease;
}
.shell05700-tileHit:active { transform: scale(0.94) translateY(1px); }

.shell05700-tileImg {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--shell05700-r);
  border: 1px solid var(--shell05700-lineSoft);
  background: var(--shell05700-panel);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.34);
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.shell05700-tileHit:hover .shell05700-tileImg,
.shell05700-tileHit:focus-visible .shell05700-tileImg {
  transform: translateY(-3px);
  border-color: var(--shell05700-aqua);
}

.shell05700-tileName {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 10.5px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--shell05700-mist);
  margin-top: 5px;
  min-height: 2.6em;
}

/* Corner marker for hot category tiles */
.shell05700-tileHit::after { content: none; }

/* ---------------------------------------------------------------------
   10. Step blocks (progressive information rhythm)
   --------------------------------------------------------------------- */
.shell05700-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: shell05700step;
}
.shell05700-step {
  counter-increment: shell05700step;
  position: relative;
  padding: 0 0 16px 40px;
  border-left: 2px solid var(--shell05700-lineSoft);
  margin-left: 14px;
}
.shell05700-step:last-child { padding-bottom: 2px; border-left-color: transparent; }
.shell05700-step::before {
  content: counter(shell05700step, decimal-leading-zero);
  position: absolute;
  left: -15px;
  top: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  background: linear-gradient(160deg, var(--shell05700-royalHi), var(--shell05700-royalDeep));
  color: var(--shell05700-aqua);
  border-radius: var(--shell05700-r);
  font-family: var(--shell05700-display);
  font-size: 13px;
  border: 1px solid rgba(64, 224, 208, 0.3);
}
.shell05700-step b {
  display: block;
  font-size: 13.5px;
  color: var(--shell05700-text);
  margin-bottom: 2px;
}
.shell05700-step p { margin: 0; font-size: 12.5px; color: var(--shell05700-dim); }

/* ---------------------------------------------------------------------
   11. Security checklist
   --------------------------------------------------------------------- */
.shell05700-checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.shell05700-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--shell05700-panel);
  border: 1px solid var(--shell05700-lineSoft);
  border-radius: var(--shell05700-r);
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--shell05700-mist);
}
.shell05700-check::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 4px;
  background:
    linear-gradient(160deg, var(--shell05700-aqua), #2bb3a6) border-box;
  mask: none;
  background-image: linear-gradient(160deg, rgba(64, 224, 208, 0.25), rgba(64, 224, 208, 0.08)),
    radial-gradient(circle at 50% 55%, var(--shell05700-aqua) 0 30%, transparent 32%);
  border: 1px solid rgba(64, 224, 208, 0.45);
}

/* ---------------------------------------------------------------------
   12. RTP meters
   --------------------------------------------------------------------- */
.shell05700-rtp {
  background: var(--shell05700-panel);
  border: 1px solid var(--shell05700-lineSoft);
  border-radius: var(--shell05700-r2);
  padding: 12px;
}
.shell05700-rtp p { margin: 0 0 10px; font-size: 12.5px; color: var(--shell05700-mist); }

.shell05700-meters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}
.shell05700-meter b {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 11.5px;
  color: var(--shell05700-text);
  font-weight: 700;
  margin-bottom: 4px;
}
.shell05700-meter b span { color: var(--shell05700-aqua); }
.shell05700-barWrap {
  height: 6px;
  border-radius: 3px;
  background: rgba(173, 216, 230, 0.12);
  overflow: hidden;
}
.shell05700-bar {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--shell05700-royalHi), var(--shell05700-aqua));
}
.shell05700-bar--pink { background: linear-gradient(90deg, var(--shell05700-pink), var(--shell05700-pinkHi)); }

.shell05700-note {
  font-size: 11.5px;
  color: var(--shell05700-dim);
  border-top: 1px dashed var(--shell05700-lineSoft);
  padding-top: 8px;
  margin: 0;
}

/* ---------------------------------------------------------------------
   13. Winners ledger
   --------------------------------------------------------------------- */
.shell05700-ledger {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--shell05700-lineSoft);
  border-radius: var(--shell05700-r2);
  overflow: hidden;
}
.shell05700-win {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 11px;
  background: var(--shell05700-panel);
  border-bottom: 1px solid var(--shell05700-lineSoft);
}
.shell05700-win:last-child { border-bottom: 0; }
.shell05700-winAva {
  width: 34px;
  height: 34px;
  border-radius: var(--shell05700-r);
  display: grid;
  place-content: center;
  font-family: var(--shell05700-display);
  font-size: 15px;
  color: #fff;
  background: linear-gradient(160deg, var(--shell05700-royalHi), var(--shell05700-royalDeep));
}
.shell05700-winWho { font-size: 12.5px; font-weight: 700; color: var(--shell05700-text); }
.shell05700-winWho small {
  display: block;
  font-weight: 500;
  font-size: 11px;
  color: var(--shell05700-dim);
}
.shell05700-winCash {
  text-align: right;
  font-family: var(--shell05700-display);
  font-size: 15px;
  color: var(--shell05700-aqua);
  letter-spacing: 0.02em;
}
.shell05700-winCash small {
  display: block;
  font-family: var(--shell05700-body);
  font-size: 10px;
  color: var(--shell05700-dim);
  letter-spacing: 0;
}

/* ---------------------------------------------------------------------
   14. Selection criteria rows
   --------------------------------------------------------------------- */
.shell05700-crit {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.shell05700-crit li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  background: var(--shell05700-panel);
  border: 1px solid var(--shell05700-lineSoft);
  border-left: 3px solid var(--shell05700-pink);
  border-radius: var(--shell05700-r);
  padding: 9px 11px;
  font-size: 12.5px;
  color: var(--shell05700-mist);
}
.shell05700-crit b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--shell05700-text);
  background: rgba(255, 20, 147, 0.16);
  border-radius: 4px;
  padding: 3px 7px;
  white-space: nowrap;
}

/* ---------------------------------------------------------------------
   15. Extended footer: promo shortcuts, brand, directory, disclaimer
   --------------------------------------------------------------------- */
.shell05700-ext {
  margin-top: 30px;
  border-top: 1px solid var(--shell05700-line);
  padding-top: 18px;
}

.shell05700-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
  padding: 0;
  list-style: none;
}
.shell05700-quick li { flex: 1 1 44%; }

.shell05700-quickHit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 46px;
  padding: 9px 11px;
  border: 1px solid var(--shell05700-lineSoft);
  border-left: 3px solid var(--shell05700-aqua);
  border-radius: var(--shell05700-r);
  background: linear-gradient(120deg, var(--shell05700-panelUp), var(--shell05700-panel));
  font-size: 12.5px;
  font-weight: 700;
  color: var(--shell05700-text);
  text-align: left;
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.shell05700-quickHit:active { transform: scale(0.97); }
.shell05700-quickHit em {
  font-style: normal;
  color: var(--shell05700-pinkHi);
  font-size: 15px;
  line-height: 1;
}

.shell05700-brandBlock {
  background: var(--shell05700-panel);
  border: 1px solid var(--shell05700-lineSoft);
  border-radius: var(--shell05700-r2);
  padding: 12px;
  margin: 16px 0;
}
.shell05700-brandBlock p { margin: 0; font-size: 12.5px; color: var(--shell05700-mist); }

.shell05700-dir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.shell05700-dir a {
  display: block;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--shell05700-lineSoft);
  border-radius: var(--shell05700-r);
  background: var(--shell05700-panel);
  font-size: 12px;
  font-weight: 700;
  color: var(--shell05700-text);
  line-height: 1.35;
}
.shell05700-dir a small {
  display: block;
  font-weight: 500;
  font-size: 10.5px;
  color: var(--shell05700-dim);
}
.shell05700-dir a:hover { text-decoration: none; border-color: var(--shell05700-aqua); }

.shell05700-disclaim {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--shell05700-dim);
  background: rgba(0, 6, 155, 0.22);
  border: 1px solid rgba(64, 224, 208, 0.16);
  border-radius: var(--shell05700-r);
  padding: 9px 11px;
}

/* ---------------------------------------------------------------------
   16. Footer bar
   --------------------------------------------------------------------- */
.shell05700-footBar {
  text-align: center;
  padding: 14px 12px 6px;
  border-top: 1px solid var(--shell05700-lineSoft);
  font-size: 11.5px;
  color: var(--shell05700-dim);
}
.shell05700-footBar b { color: var(--shell05700-mist); }

/* ---------------------------------------------------------------------
   17. Segmented bottom dock (5 roles)
   --------------------------------------------------------------------- */
.shell05700-dock {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 95;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 5px 4px calc(5px + env(safe-area-inset-bottom));
  background: rgba(14, 23, 33, 0.97);
  border-top: 1px solid var(--shell05700-line);
  backdrop-filter: blur(10px);
}
.shell05700-dockItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 52px;
  padding: 4px 2px;
  border-radius: var(--shell05700-r);
  color: var(--shell05700-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.12s ease, color 0.12s ease;
}
.shell05700-dockItem:active { transform: scale(0.9); }
.shell05700-dockItem:hover { text-decoration: none; }

.shell05700-dockIco {
  display: grid;
  place-content: center;
  width: 36px;
  height: 26px;
  border-radius: 6px;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.shell05700-dockIco svg { width: 21px; height: 21px; }

.shell05700-dockItem.shell05700-on { color: var(--shell05700-text); }
.shell05700-dockItem.shell05700-on .shell05700-dockIco {
  background: var(--shell05700-aquaSoft);
  color: var(--shell05700-aqua);
  box-shadow: inset 0 -2px 0 var(--shell05700-aqua);
}
.shell05700-dockPromo { color: var(--shell05700-pinkHi); }
.shell05700-dockPromo .shell05700-dockIco { color: var(--shell05700-pinkHi); }

/* ---------------------------------------------------------------------
   18. Progressive reveal (only active when JS flags the document)
   --------------------------------------------------------------------- */
.shell05700-js .shell05700-rise {
  opacity: 0;
  transform: translateY(12px);
}
.shell05700-js .shell05700-rise.shell05700-isIn {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* ---------------------------------------------------------------------
   19. Breakpoints
   --------------------------------------------------------------------- */
@media (min-width: 375px) {
  .shell05700-grid { gap: 10px; }
  .shell05700-tileName { font-size: 11px; }
  .shell05700-heroTitle { font-size: 30px; }
  .shell05700-h2 { font-size: 21px; }
}

/* 430px: widen grid to five stable tracks */
@media (min-width: 430px) {
  .shell05700-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 11px; }
  .shell05700-heroTitle { font-size: 33px; }
  .shell05700-h2 { font-size: 23px; }
  .shell05700-meters { grid-template-columns: 1fr 1fr; }
  .shell05700-quick li { flex: 1 1 100%; }
  .shell05700-quickHit { max-width: 460px; }
}

@media (min-width: 481px) {
  body { padding: 16px 0; }
  .shell05700-shell {
    border-inline: 1px solid var(--shell05700-line);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6);
  }
}

/* ---------------------------------------------------------------------
   20. Motion preferences
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .shell05700-js .shell05700-rise {
    opacity: 1;
    transform: none;
  }
}

/* ---------------------------------------------------------------------
   21. Help page layouts: two different reading rhythms
   --------------------------------------------------------------------- */
.shell05700-helpLead {
  margin: 8px 0 18px;
  padding: 14px 13px 15px;
  border-left: 4px solid var(--shell05700-pink);
  background: linear-gradient(135deg, rgba(0, 0, 205, 0.42), var(--shell05700-panel));
  border-radius: var(--shell05700-r2);
}
.shell05700-helpLead h1 {
  font-family: var(--shell05700-display);
  font-size: 27px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 9px;
  color: var(--shell05700-text);
}
.shell05700-helpLead h1 b { color: var(--shell05700-aqua); font-weight: 400; }
.shell05700-helpLead p { margin: 0 0 8px; color: var(--shell05700-mist); }
.shell05700-helpLead p:last-child { margin-bottom: 0; }
.shell05700-helpSignal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  color: var(--shell05700-aqua);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.shell05700-helpSignal::before {
  content: "";
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--shell05700-pink);
}
.shell05700-helpCtaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}
.shell05700-helpCta {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: var(--shell05700-r);
  background: linear-gradient(155deg, var(--shell05700-pinkHi), var(--shell05700-pink));
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  box-shadow: 0 5px 16px rgba(255, 20, 147, 0.25);
}
.shell05700-helpCta:hover { text-decoration: none; filter: brightness(1.08); }
.shell05700-helpCta:active { transform: scale(0.96); }
.shell05700-helpCta--quiet {
  background: var(--shell05700-panelUp);
  border: 1px solid var(--shell05700-line);
  color: var(--shell05700-aqua);
  box-shadow: none;
}
.shell05700-aboutRail {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: shell05700-about;
}
.shell05700-aboutRail li {
  counter-increment: shell05700-about;
  position: relative;
  margin: 0 0 9px 13px;
  padding: 11px 12px 12px 43px;
  border-left: 2px solid var(--shell05700-line);
  background: var(--shell05700-panel);
  border-radius: 0 var(--shell05700-r) var(--shell05700-r) 0;
  color: var(--shell05700-mist);
  font-size: 12.5px;
}
.shell05700-aboutRail li::before {
  content: counter(shell05700-about, decimal-leading-zero);
  position: absolute;
  left: -16px;
  top: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--shell05700-royal);
  border: 2px solid var(--shell05700-aqua);
  color: var(--shell05700-aqua);
  font-family: var(--shell05700-display);
  font-size: 12px;
}
.shell05700-aboutRail li b { display: block; margin-bottom: 3px; color: var(--shell05700-text); }
.shell05700-aboutRail li p { margin: 0; }
.shell05700-answerStack { display: grid; gap: 8px; }
.shell05700-answer {
  border: 1px solid var(--shell05700-lineSoft);
  border-top: 3px solid var(--shell05700-aqua);
  background: var(--shell05700-panel);
  border-radius: var(--shell05700-r);
  padding: 10px 12px;
}
.shell05700-answer summary {
  min-height: 24px;
  cursor: pointer;
  color: var(--shell05700-text);
  font-size: 13px;
  font-weight: 800;
}
.shell05700-answer p { margin: 8px 0 0; color: var(--shell05700-mist); font-size: 12.5px; }
.shell05700-branch {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shell05700-branch li {
  padding: 10px 12px;
  border-right: 3px solid var(--shell05700-pink);
  background: linear-gradient(90deg, var(--shell05700-panel), rgba(36, 51, 63, 0.62));
  border-radius: var(--shell05700-r);
  color: var(--shell05700-mist);
  font-size: 12.5px;
}
.shell05700-branch b { color: var(--shell05700-aqua); }
.shell05700-termGrid {
  display: grid;
  gap: 7px;
  margin: 0;
}
.shell05700-term {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 9px;
  padding: 9px 10px;
  border-bottom: 1px dashed var(--shell05700-line);
}
.shell05700-term dt { color: var(--shell05700-aqua); font-size: 12px; font-weight: 800; }
.shell05700-term dd { margin: 0; color: var(--shell05700-mist); font-size: 12px; }
.shell05700-chooseGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 0;
}
.shell05700-choose {
  min-height: 106px;
  padding: 10px;
  border: 1px solid var(--shell05700-lineSoft);
  border-left: 3px solid var(--shell05700-aqua);
  background: var(--shell05700-panel);
  border-radius: var(--shell05700-r);
}
.shell05700-choose b { display: block; color: var(--shell05700-text); font-size: 12px; margin-bottom: 4px; }
.shell05700-choose span { color: var(--shell05700-dim); font-size: 11.5px; line-height: 1.45; }

/* Review pages use evidence rows instead of the about-page rail. */
.shell05700-reviewHero {
  margin: 8px 0 18px;
  padding: 13px;
  border: 1px solid var(--shell05700-line);
  background: var(--shell05700-panel);
  box-shadow: inset 0 4px 0 var(--shell05700-aqua);
  border-radius: var(--shell05700-r2);
}
.shell05700-reviewHero h1 {
  margin: 0 0 8px;
  font-family: var(--shell05700-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.18;
  color: var(--shell05700-text);
}
.shell05700-reviewHero h1 b { color: var(--shell05700-pinkHi); font-weight: 400; }
.shell05700-reviewHero p { margin: 0 0 8px; color: var(--shell05700-mist); }
.shell05700-reviewHero p:last-child { margin-bottom: 0; }
.shell05700-scoreBand {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 11px;
  align-items: center;
  margin: 12px 0 0;
  padding-top: 11px;
  border-top: 1px dashed var(--shell05700-line);
}
.shell05700-score {
  width: 74px;
  height: 64px;
  display: grid;
  place-content: center;
  background: var(--shell05700-royal);
  border: 1px solid var(--shell05700-aqua);
  color: var(--shell05700-aqua);
  font-family: var(--shell05700-display);
  font-size: 21px;
  line-height: 1;
  border-radius: var(--shell05700-r);
}
.shell05700-score small { display: block; margin-top: 4px; color: var(--shell05700-mist); font-family: var(--shell05700-body); font-size: 9px; text-align: center; }
.shell05700-scoreBand p { margin: 0; color: var(--shell05700-dim); font-size: 12px; }
.shell05700-evidence {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shell05700-evidence li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 9px;
  padding: 9px 10px;
  background: var(--shell05700-panel);
  border: 1px solid var(--shell05700-lineSoft);
  border-radius: var(--shell05700-r);
}
.shell05700-evidence b {
  display: grid;
  place-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--shell05700-pink);
  color: #fff;
  font-size: 11px;
}
.shell05700-evidence span { color: var(--shell05700-mist); font-size: 12.5px; }
.shell05700-evidence span strong { color: var(--shell05700-text); }
.shell05700-mistakes {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shell05700-mistakes li {
  padding: 10px 11px 10px 43px;
  position: relative;
  background: rgba(255, 20, 147, 0.08);
  border: 1px solid rgba(255, 20, 147, 0.25);
  border-radius: var(--shell05700-r);
  color: var(--shell05700-mist);
  font-size: 12.5px;
}
.shell05700-mistakes li::before {
  content: "!";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 22px;
  height: 22px;
  display: grid;
  place-content: center;
  border: 1px solid var(--shell05700-pinkHi);
  border-radius: 50%;
  color: var(--shell05700-pinkHi);
  font-weight: 800;
}
.shell05700-mistakes b { display: block; margin-bottom: 3px; color: var(--shell05700-text); }
.shell05700-trouble {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 0;
}
.shell05700-trouble article {
  padding: 10px;
  background: var(--shell05700-panelUp);
  border-top: 3px solid var(--shell05700-royalHi);
  border-radius: var(--shell05700-r);
}
.shell05700-trouble article:nth-child(3n) { border-top-color: var(--shell05700-pink); }
.shell05700-trouble h3 { margin: 0 0 5px; color: var(--shell05700-text); font-size: 12px; line-height: 1.3; }
.shell05700-trouble p { margin: 0; color: var(--shell05700-dim); font-size: 11.5px; }
.shell05700-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: shell05700-check;
}
.shell05700-checklist li {
  counter-increment: shell05700-check;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 46px;
  padding: 7px 9px;
  border-bottom: 1px solid var(--shell05700-lineSoft);
  color: var(--shell05700-mist);
  font-size: 12.5px;
}
.shell05700-checklist li::before {
  content: counter(shell05700-check, decimal-leading-zero);
  display: grid;
  place-content: center;
  width: 29px;
  height: 29px;
  background: var(--shell05700-aquaSoft);
  border: 1px solid rgba(64, 224, 208, 0.5);
  border-radius: var(--shell05700-r);
  color: var(--shell05700-aqua);
  font-family: var(--shell05700-display);
  font-size: 12px;
}
.shell05700-checklist li strong { color: var(--shell05700-text); }

@media (min-width: 375px) {
  .shell05700-helpLead h1,
  .shell05700-reviewHero h1 { font-size: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  .shell05700-helpCta:active { transform: none; }
}
