/* ==========================================================================
   Game Zone Mobile - interface-compact-0f27e8.css
   Mobile-first styles for gamezonemobile.homes (320-430px phone canvas).
   Class prefix: shell0f27e-   |   Palette: #0F0F23 / #FFB74D / #CCCCCC
   Direction: poster headings + narrow body, mixed radii, compact square
   game catalogue, scene-branching rhythm, short-distance transitions,
   compact dual-button CTAs, slide-up route drawer, amber-accent bottom bar.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --shell0f27e-bg: #0f0f23;
  --shell0f27e-bg-page: #080817;
  --shell0f27e-panel: #171732;
  --shell0f27e-panel-2: #1d1d3d;
  --shell0f27e-line: #2a2a4a;
  --shell0f27e-line-soft: #24244a;
  --shell0f27e-ink: #cccccc;
  --shell0f27e-ink-bright: #f2f2f7;
  --shell0f27e-ink-mute: #9a9ab4;
  --shell0f27e-ink-faint: #8a8aa3;
  --shell0f27e-amber: #ffb74d;
  --shell0f27e-amber-hi: #ffc873;
  --shell0f27e-amber-deep: #f29b2e;
  --shell0f27e-amber-ink: #1a1207;
  --shell0f27e-radius-xl: 20px;
  --shell0f27e-radius-lg: 16px;
  --shell0f27e-radius-md: 12px;
  --shell0f27e-radius-sm: 10px;
  --shell0f27e-font-head: "Archivo", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --shell0f27e-font-body: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --shell0f27e-tap: 44px;
  --shell0f27e-bnav-space: calc(86px + env(safe-area-inset-bottom, 0px));
  --shell0f27e-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--shell0f27e-bg-page);
  color: var(--shell0f27e-ink);
  font-family: var(--shell0f27e-font-body);
  font-size: 14px;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: var(--shell0f27e-amber);
}

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

/* --------------------------------------------------------------------------
   3. Phone canvas (keeps the literal 430px mobile frame on any screen)
   -------------------------------------------------------------------------- */
.shell0f27e-canvas {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--shell0f27e-bg);
  box-shadow: 0 0 0 1px rgba(255, 183, 77, 0.08), 0 0 48px rgba(0, 0, 0, 0.6);
  overflow-x: clip;
}

/* --------------------------------------------------------------------------
   4. Header: brand strip on top, action strip below
   -------------------------------------------------------------------------- */
.shell0f27e-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, #14142e 0%, #0f0f23 100%);
  border-bottom: 1px solid var(--shell0f27e-line);
}

.shell0f27e-brandrow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 7px;
  border-bottom: 1px solid rgba(255, 183, 77, 0.16);
}

.shell0f27e-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(255, 183, 77, 0.5);
  object-fit: cover;
  flex: 0 0 auto;
}

.shell0f27e-brandname {
  font-family: var(--shell0f27e-font-head);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--shell0f27e-ink-bright);
  white-space: nowrap;
}

.shell0f27e-brandaccent {
  color: var(--shell0f27e-amber);
}

.shell0f27e-actionrow {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 8px 14px 10px;
}

/* Compact dual CTA group */
.shell0f27e-btn {
  flex: 1 1 auto;
  min-height: var(--shell0f27e-tap);
  border: 0;
  border-radius: var(--shell0f27e-radius-md);
  font-family: var(--shell0f27e-font-head);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.shell0f27e-btn--solid {
  background: linear-gradient(180deg, var(--shell0f27e-amber-hi), var(--shell0f27e-amber));
  color: var(--shell0f27e-amber-ink);
  box-shadow: 0 4px 14px rgba(255, 183, 77, 0.22);
}

.shell0f27e-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 183, 77, 0.55);
  color: var(--shell0f27e-amber);
}

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

.shell0f27e-menubtn {
  flex: 0 0 48px;
  min-height: var(--shell0f27e-tap);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--shell0f27e-panel-2);
  border: 1px solid var(--shell0f27e-line);
  border-radius: var(--shell0f27e-radius-md);
  color: var(--shell0f27e-ink);
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.shell0f27e-menubtn:active {
  transform: scale(0.94);
  border-color: rgba(255, 183, 77, 0.6);
}

.shell0f27e-menubtn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   5. Slide-up route drawer + scrim
   -------------------------------------------------------------------------- */
.shell0f27e-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(5, 5, 16, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.shell0f27e-scrim.shell0f27e-is-open {
  opacity: 1;
  visibility: visible;
}

.shell0f27e-drawer {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 90;
  width: 100%;
  max-width: 430px;
  max-height: 82vh;
  overflow-y: auto;
  transform: translate(-50%, 105%);
  visibility: hidden;
  background: #14142e;
  border: 1px solid var(--shell0f27e-line);
  border-bottom: 0;
  border-radius: var(--shell0f27e-radius-xl) var(--shell0f27e-radius-xl) 0 0;
  padding: 10px 16px calc(22px + env(safe-area-inset-bottom, 0px));
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.3s;
}

.shell0f27e-drawer.shell0f27e-is-open {
  transform: translate(-50%, 0);
  visibility: visible;
}

.shell0f27e-drawerhandle {
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: var(--shell0f27e-line);
  margin: 0 auto 10px;
}

.shell0f27e-drawerhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.shell0f27e-drawerhead b {
  font-family: var(--shell0f27e-font-head);
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--shell0f27e-ink-bright);
}

.shell0f27e-drawerclose {
  min-width: 44px;
  min-height: 44px;
  margin-right: -10px;
  background: none;
  border: 0;
  color: var(--shell0f27e-ink-mute);
  font-size: 20px;
  line-height: 1;
}

.shell0f27e-drawerclose:active {
  color: var(--shell0f27e-amber);
}

.shell0f27e-dgroup {
  margin-top: 12px;
}

.shell0f27e-dgrouplabel {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--shell0f27e-ink-faint);
  padding: 0 2px 4px;
}

.shell0f27e-dlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--shell0f27e-line-soft);
  border-radius: var(--shell0f27e-radius-sm);
  background: var(--shell0f27e-panel);
  color: var(--shell0f27e-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  transition: border-color 0.12s ease, transform 0.12s ease;
}

.shell0f27e-dlink:active {
  transform: scale(0.98);
  border-color: rgba(255, 183, 77, 0.55);
}

.shell0f27e-dlink svg {
  width: 14px;
  height: 14px;
  fill: var(--shell0f27e-ink-faint);
  flex: 0 0 auto;
}

.shell0f27e-dlink.shell0f27e-is-live {
  border-color: rgba(255, 183, 77, 0.6);
  color: var(--shell0f27e-amber);
}

.shell0f27e-drawercta {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.shell0f27e-main {
  padding-bottom: var(--shell0f27e-bnav-space);
}

.shell0f27e-hero {
  padding: 18px 14px 0;
}

.shell0f27e-herokicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--shell0f27e-font-head);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--shell0f27e-amber);
  border: 1px solid rgba(255, 183, 77, 0.4);
  border-radius: 999px;
  padding: 5px 11px;
  margin-bottom: 10px;
}

.shell0f27e-h1 {
  font-family: var(--shell0f27e-font-head);
  font-weight: 900;
  font-size: clamp(26px, 7.4vw, 33px);
  line-height: 1.04;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: var(--shell0f27e-ink-bright);
  text-wrap: balance;
}

.shell0f27e-h1 em {
  font-style: normal;
  color: var(--shell0f27e-amber);
}

.shell0f27e-herosub {
  margin-top: 10px;
  color: var(--shell0f27e-ink);
  font-size: 14.5px;
  line-height: 1.55;
}

.shell0f27e-ctapair {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   7. Banner carousel
   -------------------------------------------------------------------------- */
.shell0f27e-carousel {
  position: relative;
  margin: 16px 14px 0;
  border: 1px solid var(--shell0f27e-line);
  border-radius: var(--shell0f27e-radius-lg);
  overflow: hidden;
  background: var(--shell0f27e-panel);
}

.shell0f27e-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shell0f27e-slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  text-decoration: none;
}

.shell0f27e-slide img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.shell0f27e-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 35, 0) 42%, rgba(8, 8, 23, 0.88) 100%);
  pointer-events: none;
}

.shell0f27e-slidecap {
  position: absolute;
  left: 12px;
  right: 64px;
  bottom: 10px;
  z-index: 2;
}

.shell0f27e-slidekick {
  display: inline-block;
  font-family: var(--shell0f27e-font-head);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--shell0f27e-amber);
  background: rgba(15, 15, 35, 0.72);
  border: 1px solid rgba(255, 183, 77, 0.4);
  border-radius: 999px;
  padding: 3px 9px;
  margin-bottom: 5px;
}

.shell0f27e-slidetitle {
  font-family: var(--shell0f27e-font-head);
  font-weight: 800;
  font-size: 14.5px;
  line-height: 1.2;
  color: var(--shell0f27e-ink-bright);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.shell0f27e-slidecta {
  font-size: 11px;
  font-weight: 700;
  color: var(--shell0f27e-amber);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.shell0f27e-dots {
  position: absolute;
  right: 10px;
  bottom: 11px;
  z-index: 3;
  display: flex;
  gap: 6px;
}

.shell0f27e-dot {
  width: 12px;
  min-height: 12px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 183, 77, 0.65);
  background: rgba(15, 15, 35, 0.55);
  transition: background 0.2s ease, width 0.2s ease;
}

.shell0f27e-dot.shell0f27e-is-live {
  width: 22px;
  background: var(--shell0f27e-amber);
}

/* --------------------------------------------------------------------------
   8. Category chip bar
   -------------------------------------------------------------------------- */
.shell0f27e-catbar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.shell0f27e-catbar::-webkit-scrollbar {
  display: none;
}

.shell0f27e-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--shell0f27e-line);
  background: var(--shell0f27e-panel);
  color: var(--shell0f27e-ink);
  text-decoration: none;
  font-family: var(--shell0f27e-font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

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

.shell0f27e-chip--hot {
  border-color: rgba(255, 183, 77, 0.55);
}

.shell0f27e-chip b {
  color: var(--shell0f27e-amber);
  font-weight: 900;
}

/* --------------------------------------------------------------------------
   9. Game sections and compact square catalogue
   -------------------------------------------------------------------------- */
.shell0f27e-gsec {
  padding: 10px 14px 6px;
  scroll-margin-top: 118px;
}

.shell0f27e-gsechead {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.shell0f27e-gnum {
  font-family: var(--shell0f27e-font-head);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--shell0f27e-amber);
}

.shell0f27e-gsechead h2 {
  flex: 1 1 auto;
  font-family: var(--shell0f27e-font-head);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.14;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: var(--shell0f27e-ink-bright);
}

.shell0f27e-gcount {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--shell0f27e-ink-mute);
  border: 1px solid var(--shell0f27e-line);
  border-radius: 999px;
  padding: 3px 8px;
  white-space: nowrap;
}

.shell0f27e-gblurb {
  margin: 8px 0 12px;
  color: var(--shell0f27e-ink);
  font-size: 13.5px;
  line-height: 1.55;
}

.shell0f27e-ilink {
  color: var(--shell0f27e-amber);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.shell0f27e-ilink:active {
  color: var(--shell0f27e-amber-hi);
}

.shell0f27e-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 6px;
}

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

.shell0f27e-game {
  display: block;
  background: var(--shell0f27e-panel);
  border: 1px solid var(--shell0f27e-line-soft);
  border-radius: var(--shell0f27e-radius-sm);
  padding: 6px 4px 7px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.13s ease, border-color 0.13s ease;
}

.shell0f27e-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 7px;
  background: #101024;
}

.shell0f27e-game-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 5px;
  min-height: 26px;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--shell0f27e-ink);
  overflow-wrap: anywhere;
}

.shell0f27e-game:active,
.shell0f27e-game:focus-visible {
  transform: translateY(-2px) scale(0.97);
  border-color: rgba(255, 183, 77, 0.6);
}

.shell0f27e-game:active .shell0f27e-game-name {
  color: var(--shell0f27e-ink-bright);
}

/* --------------------------------------------------------------------------
   10. Content modules
   -------------------------------------------------------------------------- */
.shell0f27e-mod {
  margin: 24px 14px 0;
}

.shell0f27e-modhead {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.shell0f27e-modtag {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--shell0f27e-amber);
  transform: rotate(45deg);
}

.shell0f27e-mod h2 {
  font-family: var(--shell0f27e-font-head);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.14;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: var(--shell0f27e-ink-bright);
}

.shell0f27e-p {
  color: var(--shell0f27e-ink);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 10px;
}

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

.shell0f27e-strong {
  color: var(--shell0f27e-ink-bright);
  font-weight: 700;
}

/* RTP stat tiles */
.shell0f27e-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.shell0f27e-stat {
  background: var(--shell0f27e-panel);
  border: 1px solid var(--shell0f27e-line-soft);
  border-radius: var(--shell0f27e-radius-md);
  padding: 10px 6px 9px;
  text-align: center;
}

.shell0f27e-stat b {
  display: block;
  font-family: var(--shell0f27e-font-head);
  font-weight: 900;
  font-size: 17px;
  line-height: 1.1;
  color: var(--shell0f27e-amber);
  margin-bottom: 3px;
}

.shell0f27e-stat span {
  display: block;
  font-size: 10px;
  line-height: 1.35;
  color: var(--shell0f27e-ink-mute);
}

/* Trick rows */
.shell0f27e-tricks {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.shell0f27e-trick {
  display: flex;
  gap: 10px;
  background: var(--shell0f27e-panel);
  border: 1px solid var(--shell0f27e-line-soft);
  border-left: 3px solid var(--shell0f27e-amber);
  border-radius: var(--shell0f27e-radius-sm);
  padding: 10px 12px;
}

.shell0f27e-tricknum {
  flex: 0 0 auto;
  font-family: var(--shell0f27e-font-head);
  font-weight: 900;
  font-size: 16px;
  color: var(--shell0f27e-amber);
  min-width: 20px;
  line-height: 1.3;
}

.shell0f27e-trick p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--shell0f27e-ink);
}

/* Review quotes */
.shell0f27e-quotes {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.shell0f27e-quote {
  background: var(--shell0f27e-panel);
  border: 1px solid var(--shell0f27e-line-soft);
  border-radius: var(--shell0f27e-radius-lg);
  padding: 12px 13px;
}

.shell0f27e-qtop {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
}

.shell0f27e-qavatar {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--shell0f27e-amber-hi), var(--shell0f27e-amber-deep));
  color: var(--shell0f27e-amber-ink);
  font-family: var(--shell0f27e-font-head);
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shell0f27e-qmeta b {
  display: block;
  font-family: var(--shell0f27e-font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: var(--shell0f27e-ink-bright);
}

.shell0f27e-qmeta span {
  font-size: 10.5px;
  color: var(--shell0f27e-ink-faint);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.shell0f27e-stars {
  margin-left: auto;
  display: flex;
  gap: 2px;
}

.shell0f27e-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--shell0f27e-amber);
}

.shell0f27e-stars svg.shell0f27e-star--off {
  fill: var(--shell0f27e-line);
}

.shell0f27e-quote p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--shell0f27e-ink);
}

/* Play-style comparison rows */
.shell0f27e-styles {
  margin-top: 4px;
}

.shell0f27e-style {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 2px;
  border-bottom: 1px dashed var(--shell0f27e-line);
}

.shell0f27e-style:last-child {
  border-bottom: 0;
}

.shell0f27e-styletag {
  font-family: var(--shell0f27e-font-head);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--shell0f27e-amber);
  background: rgba(255, 183, 77, 0.1);
  border: 1px solid rgba(255, 183, 77, 0.35);
  border-radius: 8px;
  padding: 5px 7px;
  text-align: center;
  line-height: 1.3;
}

.shell0f27e-style p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--shell0f27e-ink);
  align-self: center;
}

/* Scenario answer card */
.shell0f27e-scenario {
  background: linear-gradient(180deg, rgba(255, 183, 77, 0.08), rgba(23, 23, 50, 0.65));
  border: 1px solid rgba(255, 183, 77, 0.4);
  border-radius: var(--shell0f27e-radius-lg);
  padding: 14px 13px;
}

.shell0f27e-scenario h3 {
  font-family: var(--shell0f27e-font-head);
  font-weight: 800;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--shell0f27e-ink-bright);
  margin-bottom: 8px;
}

.shell0f27e-answer {
  border-left: 3px solid var(--shell0f27e-amber);
  padding-left: 10px;
  margin-bottom: 10px;
}

.shell0f27e-answer p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--shell0f27e-ink-bright);
}

.shell0f27e-steps {
  list-style: none;
  display: grid;
  gap: 7px;
}

.shell0f27e-steps li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--shell0f27e-ink);
}

.shell0f27e-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--shell0f27e-amber);
  transform: rotate(45deg);
}

/* Scene guidance cards */
.shell0f27e-scenes {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.shell0f27e-scene {
  background: var(--shell0f27e-panel);
  border: 1px solid var(--shell0f27e-line-soft);
  border-radius: var(--shell0f27e-radius-md);
  padding: 11px 12px;
}

.shell0f27e-scenetag {
  display: inline-block;
  font-family: var(--shell0f27e-font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--shell0f27e-amber);
  margin-bottom: 4px;
}

.shell0f27e-scene p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--shell0f27e-ink);
}

/* --------------------------------------------------------------------------
   11. Extended homepage footer
   -------------------------------------------------------------------------- */
.shell0f27e-xfoot {
  margin-top: 28px;
  border-top: 1px solid var(--shell0f27e-line);
  background: #12122b;
  padding: 18px 14px 6px;
}

.shell0f27e-xftitle {
  font-family: var(--shell0f27e-font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--shell0f27e-ink-faint);
  margin: 0 0 8px;
}

.shell0f27e-xgroup {
  margin-bottom: 18px;
}

.shell0f27e-xdir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.shell0f27e-xdlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 42px;
  padding: 7px 10px;
  background: var(--shell0f27e-panel);
  border: 1px solid var(--shell0f27e-line-soft);
  border-radius: 9px;
  color: var(--shell0f27e-ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color 0.12s ease, transform 0.12s ease;
}

.shell0f27e-xdlink:active {
  transform: scale(0.97);
  border-color: rgba(255, 183, 77, 0.55);
}

.shell0f27e-xdlink svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  fill: var(--shell0f27e-ink-faint);
}

.shell0f27e-xbrand {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.shell0f27e-xbrand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 183, 77, 0.45);
  object-fit: cover;
  flex: 0 0 auto;
}

.shell0f27e-xbrand p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--shell0f27e-ink);
}

.shell0f27e-xpromos {
  display: grid;
  gap: 6px;
}

.shell0f27e-xpromo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: var(--shell0f27e-radius-sm);
  border: 1px solid rgba(255, 183, 77, 0.4);
  background: linear-gradient(180deg, rgba(255, 183, 77, 0.14), rgba(255, 183, 77, 0.05));
  color: var(--shell0f27e-ink-bright);
  font-family: var(--shell0f27e-font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  text-align: left;
  transition: transform 0.12s ease, border-color 0.12s ease;
}

.shell0f27e-xpromo span {
  color: var(--shell0f27e-amber);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.shell0f27e-xpromo:active {
  transform: scale(0.97);
  border-color: var(--shell0f27e-amber);
}

.shell0f27e-xpromo--lead {
  background: linear-gradient(180deg, var(--shell0f27e-amber-hi), var(--shell0f27e-amber));
  border-color: var(--shell0f27e-amber);
  color: var(--shell0f27e-amber-ink);
}

.shell0f27e-xpromo--lead span {
  color: var(--shell0f27e-amber-ink);
}

.shell0f27e-xdisclaimer {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--shell0f27e-ink-faint);
  border-top: 1px dashed var(--shell0f27e-line);
  padding-top: 10px;
}

/* --------------------------------------------------------------------------
   12. Common footer, bottom navigation, back-to-top
   -------------------------------------------------------------------------- */
.shell0f27e-footer {
  padding: 14px 14px 10px;
  border-top: 1px solid var(--shell0f27e-line);
  text-align: center;
  color: var(--shell0f27e-ink-faint);
  font-size: 11.5px;
  letter-spacing: 0.4px;
}

.shell0f27e-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 70;
  display: flex;
  gap: 2px;
  padding: 5px 4px calc(5px + env(safe-area-inset-bottom, 0px));
  background: rgba(16, 16, 38, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 2px solid var(--shell0f27e-amber);
}

.shell0f27e-bnav {
  flex: 1 1 0;
  min-width: 0;
  min-height: var(--shell0f27e-tap);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: none;
  border: 0;
  text-decoration: none;
  color: var(--shell0f27e-ink-mute);
  font-family: var(--shell0f27e-font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: var(--shell0f27e-radius-sm);
  transition: color 0.15s ease, transform 0.12s ease;
}

.shell0f27e-bnav svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  opacity: 0.82;
}

.shell0f27e-bnav.shell0f27e-is-live {
  color: var(--shell0f27e-amber);
}

.shell0f27e-bnav.shell0f27e-is-live svg {
  opacity: 1;
}

.shell0f27e-bnav:active {
  transform: scale(0.9);
  color: var(--shell0f27e-amber-hi);
}

.shell0f27e-totop {
  position: fixed;
  bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  right: max(12px, calc(50% - 215px + 12px));
  z-index: 65;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 183, 77, 0.5);
  background: rgba(20, 20, 46, 0.95);
  color: var(--shell0f27e-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.shell0f27e-totop.shell0f27e-is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.shell0f27e-totop svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   13. Motion and contrast preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .shell0f27e-track,
  .shell0f27e-drawer,
  .shell0f27e-scrim,
  .shell0f27e-totop,
  .shell0f27e-game,
  .shell0f27e-btn,
  .shell0f27e-bnav {
    transition: none;
  }
}

@media (min-width: 431px) {
  body {
    padding: 0;
  }

  .shell0f27e-canvas {
    min-height: 100vh;
  }
}
