/* ============================================================
   f8bet9 co - mobile-first stylesheet (320-430px canvas)
   Class prefix : view654c8-
   Palette      : #DEB887 / #4682B4 / #1E1E1E / #6495ED / #191970
   Direction    : tab-style top bar, compact route panel,
                  outlined bottom dock, linear icons with
                  filled active state, underline markers,
                  short vertical lift micro-interaction.
   ============================================================ */

/* ---------- root tokens ---------- */
:root {
  --view654c8-night: #1E1E1E;          /* page base background */
  --view654c8-deep: #191970;           /* midnight blue panels */
  --view654c8-steel: #4682B4;          /* steel blue support */
  --view654c8-corn: #6495ED;           /* cornflower accent */
  --view654c8-sand: #DEB887;           /* tan gold highlight text */
  --view654c8-paper: #F2E9DA;          /* light body text derived from sand */
  --view654c8-mist: rgba(242, 233, 218, 0.62);
  --view654c8-hair: rgba(222, 184, 135, 0.22);
  --view654c8-hair-strong: rgba(222, 184, 135, 0.42);
  --view654c8-panel: #232338;
  --view654c8-panel-deep: #16162a;
  --view654c8-radius-btn: 999px;       /* buttons are round */
  --view654c8-radius-card: 6px;        /* cards stay square-ish */
  --view654c8-top-h: 96px;             /* fixed header total height */
  --view654c8-dock-h: 64px;            /* fixed bottom dock height */
  --view654c8-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #12121f;
  color: var(--view654c8-paper);
  font-family: var(--view654c8-font);
  font-weight: 400;                    /* light body weight */
  font-size: 15px;
  line-height: 1.62;
  overflow-x: hidden;
}

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

a { color: var(--view654c8-corn); text-decoration: none; }
a:hover { color: var(--view654c8-sand); }

:focus-visible {
  outline: 2px solid var(--view654c8-sand);
  outline-offset: 2px;
  border-radius: 4px;
}

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

/* centered phone canvas on any screen width */
.view654c8-shell {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background:
    radial-gradient(120% 42% at 50% 0%, rgba(25, 25, 112, 0.55) 0%, rgba(30, 30, 30, 0) 62%),
    var(--view654c8-night);
  min-height: 100vh;
  box-shadow: 0 0 0 1px rgba(222, 184, 135, 0.08);
}

/* ============================================================
   Header : tab-style top bar
   ============================================================ */
.view654c8-topbar {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: var(--view654c8-top-h);
  z-index: 60;
  background: linear-gradient(180deg, #20204a 0%, var(--view654c8-deep) 46%, #1a1a2e 100%);
  border-bottom: 1px solid var(--view654c8-hair-strong);
}

/* tier 1 - brand zone : logo image + site name only */
.view654c8-topbrand {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 52px;
  padding: 0 12px;
  border-bottom: 1px solid var(--view654c8-hair);
}

.view654c8-logo {
  width: 34px; height: 34px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--view654c8-hair-strong);
  background: var(--view654c8-panel);
  flex: 0 0 auto;
}

.view654c8-brandname {
  font-size: 18px;
  font-weight: 800;                    /* bold, simple heading voice */
  letter-spacing: 0.3px;
  color: var(--view654c8-sand);
  white-space: nowrap;
}

/* tier 2 - action tabs outside the brand zone */
.view654c8-topact {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  gap: 8px;
  align-items: stretch;
  height: 44px;
  padding: 0 10px;
}

.view654c8-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--view654c8-hair-strong);
  border-radius: var(--view654c8-radius-btn);
  background: transparent;
  color: var(--view654c8-paper);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  transition: transform 0.12s ease, background-color 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.view654c8-tab:active { transform: translateY(-2px); }

.view654c8-tab--primary {
  background: linear-gradient(135deg, var(--view654c8-sand) 0%, #c9a06a 100%);
  border-color: transparent;
  color: #241c0e;
}

.view654c8-tab--ghost {
  background: rgba(70, 130, 180, 0.16);
  color: var(--view654c8-paper);
}

.view654c8-tab--menu { padding: 0 12px; }

/* underline marker for the engaged tab state */
.view654c8-tab--on::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  transform: translateX(-50%);
  width: 20px; height: 3px;
  border-radius: 2px;
  background: var(--view654c8-sand);
}

.view654c8-ico {
  width: 18px; height: 18px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.view654c8-ico--fill { fill: currentColor; stroke: none; }

/* ============================================================
   Compact route panel (expandable menu)
   ============================================================ */
.view654c8-routes {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--view654c8-panel-deep);
  border-bottom: 1px solid var(--view654c8-hair-strong);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.5);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
  z-index: 59;
}

.view654c8-routes.view654c8-open { max-height: 460px; }

.view654c8-routesgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 12px;
}

.view654c8-route {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--view654c8-hair);
  border-radius: var(--view654c8-radius-card);
  color: var(--view654c8-paper);
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(70, 130, 180, 0.08);
  position: relative;
}

.view654c8-route:active { transform: translateY(-1px); }

.view654c8-route .view654c8-ico { width: 16px; height: 16px; color: var(--view654c8-sand); }

/* compact text glyphs used by help-page route links */
.view654c8-route > span { min-width: 0; }
.view654c8-route { overflow-wrap: anywhere; }

.view654c8-dock-ico:not(:has(.view654c8-ico)) {
  color: currentColor;
  font-size: 16px;
  line-height: 1;
}

/* active route : underline marker */
.view654c8-route--on { color: var(--view654c8-sand); }
.view654c8-route--on::after {
  content: "";
  position: absolute;
  left: 10px; bottom: 3px;
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--view654c8-sand);
}

/* ============================================================
   Main flow
   ============================================================ */
.view654c8-main {
  padding: calc(var(--view654c8-top-h) + 14px) 12px
           calc(var(--view654c8-dock-h) + 34px);
}

/* ---------- intro / H1 ---------- */
.view654c8-hero { margin-bottom: 18px; }

.view654c8-hero h1 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fbf6ec;
}

.view654c8-lead {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-left: 3px solid var(--view654c8-sand);
  background: rgba(25, 25, 112, 0.35);
  border-radius: 0 var(--view654c8-radius-card) var(--view654c8-radius-card) 0;
  color: var(--view654c8-paper);
  font-size: 14px;
}

.view654c8-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.view654c8-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--view654c8-hair-strong);
  border-radius: var(--view654c8-radius-btn);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--view654c8-sand);
  background: rgba(222, 184, 135, 0.07);
}

/* ---------- banner reel ---------- */
.view654c8-reel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border: 1px solid var(--view654c8-hair);
  border-radius: 10px;
  background: var(--view654c8-panel-deep);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.view654c8-reel::-webkit-scrollbar { display: none; }

.view654c8-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.view654c8-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 2;
  object-fit: cover;
}

.view654c8-slide:active img { opacity: 0.92; }

.view654c8-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.view654c8-dot {
  width: 22px; height: 22px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.view654c8-dot::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--view654c8-hair-strong);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.view654c8-dot--on::before {
  background: var(--view654c8-sand);
  transform: scale(1.25);
}

/* ============================================================
   Sections + grouped cover-card game crews
   ============================================================ */
.view654c8-sec { margin-top: 26px; }

.view654c8-h2 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
  color: #fbf6ec;
}

.view654c8-alead {           /* intro-led rhythm for article sections */
  margin: 0 0 14px;
  color: var(--view654c8-mist);
  font-size: 14px;
}

.view654c8-crew {
  margin-top: 16px;
  border: 1px solid var(--view654c8-hair);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(25, 25, 112, 0.42) 0%, rgba(22, 22, 42, 0.6) 100%);
  overflow: hidden;
}

.view654c8-crew-cover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--view654c8-hair);
  background: linear-gradient(90deg, rgba(222, 184, 135, 0.14) 0%, rgba(70, 130, 180, 0.10) 100%);
}

.view654c8-crew-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--view654c8-sand);
}

.view654c8-crew-tag .view654c8-ico { width: 17px; height: 17px; }

.view654c8-crew-count {
  flex: 0 0 auto;
  padding: 3px 10px;
  border: 1px solid var(--view654c8-hair-strong);
  border-radius: var(--view654c8-radius-btn);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--view654c8-paper);
  background: rgba(30, 30, 30, 0.55);
}

.view654c8-crew-lead {
  margin: 0;
  padding: 9px 12px 2px;
  font-size: 12.5px;
  color: var(--view654c8-mist);
  line-height: 1.55;
}

.view654c8-crew-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 6px;
  padding: 10px 10px 14px;
}

.view654c8-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--view654c8-paper);
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.view654c8-tile:active { transform: translateY(-2px); }

.view654c8-tile-fig {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--view654c8-radius-card);
  border: 1px solid var(--view654c8-hair);
  object-fit: cover;
  background: var(--view654c8-panel-deep);
}

.view654c8-tile-name {
  font-size: 10.5px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  color: var(--view654c8-paper);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

/* ============================================================
   Article modules (direct answer / payments / tricks / faq)
   ============================================================ */
.view654c8-article {
  margin-top: 26px;
  padding: 14px 13px;
  border: 1px solid var(--view654c8-hair);
  border-radius: 10px;
  background: rgba(35, 35, 56, 0.5);
}

.view654c8-article p { margin: 0 0 10px; font-size: 14px; color: var(--view654c8-paper); }
.view654c8-article p:last-child { margin-bottom: 0; }

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

.view654c8-steps li {
  counter-increment: view654c8-step;
  position: relative;
  padding: 0 0 10px 34px;
  font-size: 13.5px;
  color: var(--view654c8-paper);
}

.view654c8-steps li::before {
  content: counter(view654c8-step);
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--view654c8-sand);
  border-radius: 50%;
  color: var(--view654c8-sand);
  font-size: 11px;
  font-weight: 800;
}

.view654c8-note {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px dashed var(--view654c8-hair-strong);
  border-radius: var(--view654c8-radius-card);
  background: rgba(70, 130, 180, 0.10);
  font-size: 12.5px;
  color: var(--view654c8-mist);
}

/* plain condition list used inside article modules */
.view654c8-conds {
  margin: 10px 0 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.view654c8-conds li {
  font-size: 13.5px;
  color: var(--view654c8-paper);
}

.view654c8-conds li::marker { color: var(--view654c8-sand); }

.view654c8-faq { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }

.view654c8-qa {
  border: 1px solid var(--view654c8-hair);
  border-radius: 8px;
  background: rgba(22, 22, 42, 0.55);
  overflow: hidden;
}

.view654c8-qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  min-height: 44px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--view654c8-sand);
}

.view654c8-qa summary::-webkit-details-marker { display: none; }

.view654c8-qa summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 800;
  color: var(--view654c8-corn);
}

.view654c8-qa[open] summary::after { content: "–"; }

.view654c8-qa view654c8-body, .view654c8-qa p {
  margin: 0;
  padding: 0 12px 12px;
  font-size: 13px;
  color: var(--view654c8-paper);
}

/* ============================================================
   Extended footer (sectioned list) then common footer
   ============================================================ */
.view654c8-ext {
  margin-top: 30px;
  border-top: 2px solid var(--view654c8-hair-strong);
  padding-top: 6px;
}

.view654c8-ext h2 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: #fbf6ec;
}

.view654c8-extblock {
  margin-top: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--view654c8-hair);
}

.view654c8-extblock:last-child { border-bottom: 0; }

.view654c8-extblock h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--view654c8-corn);
}

.view654c8-dir {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}

.view654c8-diritem {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid var(--view654c8-hair);
  border-radius: var(--view654c8-radius-card);
  background: rgba(22, 22, 42, 0.45);
  color: var(--view654c8-paper);
  font-size: 13px;
  min-height: 44px;
}

.view654c8-diritem .view654c8-ico {
  width: 16px; height: 16px;
  margin-top: 2px;
  color: var(--view654c8-sand);
}

.view654c8-diritem strong { display: block; font-size: 13px; font-weight: 700; }
.view654c8-diritem span { display: block; font-size: 11.5px; color: var(--view654c8-mist); }

.view654c8-extbrand p {
  margin: 0;
  font-size: 12.5px;
  color: var(--view654c8-mist);
}

.view654c8-promo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0; padding: 0;
}

.view654c8-promoitem {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid var(--view654c8-hair-strong);
  border-radius: var(--view654c8-radius-btn);   /* rounded CTA list */
  background: rgba(222, 184, 135, 0.08);
  color: var(--view654c8-paper);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.view654c8-promoitem:active { transform: translateY(-2px); }

.view654c8-promoitem .view654c8-ico { color: var(--view654c8-sand); }

.view654c8-extdisc {
  font-size: 12px;
  color: var(--view654c8-mist);
  border: 1px dashed var(--view654c8-hair-strong);
  border-radius: var(--view654c8-radius-card);
  padding: 10px 12px;
  background: rgba(30, 30, 30, 0.4);
}

/* common copyright footer */
.view654c8-foot {
  margin-top: 18px;
  padding: 14px 4px 6px;
  border-top: 1px solid var(--view654c8-hair);
  text-align: center;
  font-size: 12px;
  color: var(--view654c8-mist);
}

.view654c8-foot strong { color: var(--view654c8-sand); font-weight: 700; }

/* ============================================================
   Bottom dock : outlined function bar, 5 roles
   ============================================================ */
.view654c8-dock {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: calc(var(--view654c8-dock-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  z-index: 60;
  background: rgba(18, 18, 31, 0.97);
  border-top: 1px solid var(--view654c8-hair-strong);
}

.view654c8-docklist {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  height: var(--view654c8-dock-h);
  align-items: stretch;
  margin: 0; padding: 0;
  list-style: none;
}

.view654c8-dockitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  min-height: 44px;
  padding-top: 6px;
  color: var(--view654c8-mist);
  position: relative;
  cursor: pointer;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 600;
  transition: transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.view654c8-dockitem:active { transform: translateY(-2px); }

/* outlined icon frame, fills when active */
.view654c8-dock-ico {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--view654c8-hair-strong);
  border-radius: 9px;
  background: transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.view654c8-dock-ico .view654c8-ico { width: 17px; height: 17px; }

.view654c8-dock-lb { letter-spacing: 0.2px; white-space: nowrap; }

.view654c8-dockitem--on { color: var(--view654c8-sand); }

.view654c8-dockitem--on .view654c8-dock-ico {
  background: rgba(222, 184, 135, 0.16);
  border-color: var(--view654c8-sand);
}

/* linear icon switches to filled on the active role */
.view654c8-dockitem--on .view654c8-ico { stroke: none; fill: currentColor; }

/* underline marker on the active dock role */
.view654c8-dockitem--on::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2.5px;
  border-radius: 2px;
  background: var(--view654c8-sand);
}

/* ============================================================
   Responsive steps : 320 -> 375 -> 430
   ============================================================ */
@media (min-width: 375px) {
  body { font-size: 15.5px; }
  .view654c8-hero h1 { font-size: 25px; }
  .view654c8-crew-grid { gap: 12px 8px; }
  .view654c8-tile-name { font-size: 11px; }
  .view654c8-h2 { font-size: 20px; }
}

@media (min-width: 430px) {
  .view654c8-crew-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .view654c8-hero h1 { font-size: 27px; }
  .view654c8-main { padding-left: 16px; padding-right: 16px; }
  .view654c8-dir { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
}

/* ---------- help-page variations ---------- */
.view654c8-guide-intro {
  border-top: 3px solid var(--view654c8-corn);
  padding: 13px 13px 2px;
  background: linear-gradient(135deg, rgba(70, 130, 180, 0.17), rgba(25, 25, 112, 0.28));
  border-radius: 0 0 10px 10px;
}

.view654c8-route-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: view654c8-route;
}

.view654c8-route-map li {
  counter-increment: view654c8-route;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-left: 2px solid var(--view654c8-steel);
  background: rgba(22, 22, 42, 0.68);
}

.view654c8-route-map li::before {
  content: counter(view654c8-route);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--view654c8-corn);
  color: #101329;
  font-size: 12px;
  font-weight: 800;
}

.view654c8-route-map strong,
.view654c8-compare strong { color: var(--view654c8-sand); }
.view654c8-route-map span { display: block; color: var(--view654c8-mist); font-size: 13px; }

.view654c8-actionline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.view654c8-actionline button,
.view654c8-risk-action {
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid var(--view654c8-hair-strong);
  border-radius: var(--view654c8-radius-btn);
  background: rgba(222, 184, 135, 0.10);
  color: var(--view654c8-paper);
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

.view654c8-actionline button:active,
.view654c8-risk-action:active { transform: translateY(-2px); }

.view654c8-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.view654c8-compare > div {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--view654c8-hair);
  border-radius: var(--view654c8-radius-card);
  background: rgba(25, 25, 112, 0.30);
}

.view654c8-compare p { margin: 5px 0 0; font-size: 12.5px; color: var(--view654c8-mist); }

.view654c8-checkdeck {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

.view654c8-checkitem {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--view654c8-hair);
  border-radius: 7px;
  background: rgba(35, 35, 56, 0.62);
}

.view654c8-checkmark {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--view654c8-sand);
  border-radius: 6px;
  color: var(--view654c8-sand);
  font-size: 14px;
  font-weight: 800;
}

.view654c8-checkitem strong { display: block; color: var(--view654c8-paper); font-size: 13px; }
.view654c8-checkitem p { margin: 3px 0 0; color: var(--view654c8-mist); font-size: 12.5px; }

.view654c8-safety-band {
  margin: 12px 0 0;
  padding: 12px;
  border: 1px solid rgba(100, 149, 237, 0.55);
  border-radius: 10px;
  background: linear-gradient(110deg, rgba(70, 130, 180, 0.22), rgba(25, 25, 112, 0.42));
}

.view654c8-safety-band strong { color: var(--view654c8-sand); }
.view654c8-safety-band p { margin: 5px 0 0; color: var(--view654c8-paper); font-size: 13px; }

.view654c8-decision {
  margin-top: 12px;
  overflow-x: auto;
  border: 1px solid var(--view654c8-hair);
  border-radius: 8px;
}

.view654c8-decision table { width: 100%; min-width: 390px; border-collapse: collapse; font-size: 12px; }
.view654c8-decision th,
.view654c8-decision td { padding: 9px 8px; border-bottom: 1px solid var(--view654c8-hair); text-align: left; vertical-align: top; }
.view654c8-decision th { color: var(--view654c8-sand); background: rgba(25, 25, 112, 0.52); font-weight: 800; }
.view654c8-decision td { color: var(--view654c8-paper); background: rgba(22, 22, 42, 0.42); }
.view654c8-decision tr:last-child td { border-bottom: 0; }

.view654c8-risk-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(70, 130, 180, 0.17);
}

.view654c8-summarybar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 11px 12px;
  border-left: 3px solid var(--view654c8-sand);
  background: rgba(222, 184, 135, 0.08);
  color: var(--view654c8-paper);
  font-size: 13px;
}

/* motion-sensitive users keep everything calm */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .view654c8-tab,
  .view654c8-tile,
  .view654c8-dockitem,
  .view654c8-promoitem,
  .view654c8-route { transition: none; }
}
