:root {
  --shelle88ca-ink: #d3d3d3;
  --shelle88ca-muted: #a8aaa9;
  --shelle88ca-night: #2c2c2c;
  --shelle88ca-panel: #3c3c3c;
  --shelle88ca-panel-deep: #2f2f2f;
  --shelle88ca-line: #696969;
  --shelle88ca-aqua: #40e0d0;
  --shelle88ca-aqua-soft: rgba(64, 224, 208, 0.13);
  --shelle88ca-white: #f5f7f6;
  --shelle88ca-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  --shelle88ca-head: "Trebuchet MS", "Arial Rounded MT Bold", sans-serif;
  --shelle88ca-body: "Arial Narrow", "Roboto Condensed", Tahoma, sans-serif;
  --shelle88ca-top: 104px;
  --shelle88ca-bottom: 72px;
}

* {
  box-sizing: border-box;
}

html {
  background: #1f1f1f;
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--shelle88ca-ink);
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(64, 224, 208, 0.025) 49% 51%, transparent 51%),
    radial-gradient(circle at 8% 16%, rgba(64, 224, 208, 0.09), transparent 31%),
    var(--shelle88ca-night);
  font-family: var(--shelle88ca-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--shelle88ca-aqua);
  text-underline-offset: 3px;
}

button {
  font: inherit;
}

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

.shelle88ca-canvas {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: clip;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.012) 18px 19px),
    var(--shelle88ca-night);
  box-shadow: var(--shelle88ca-shadow);
  isolation: isolate;
}

.shelle88ca-skip {
  position: fixed;
  z-index: 100;
  top: 6px;
  left: 50%;
  padding: 10px 14px;
  border: 2px solid var(--shelle88ca-aqua);
  border-radius: 4px;
  color: var(--shelle88ca-night);
  background: var(--shelle88ca-aqua);
  font-weight: 800;
  transform: translate(-50%, -150%);
  transition: transform 0.18s ease;
}

.shelle88ca-skip:focus {
  transform: translate(-50%, 0);
}

.shelle88ca-topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 50%;
  width: min(100%, 430px);
  min-width: 320px;
  border-bottom: 1px solid rgba(64, 224, 208, 0.45);
  background: rgba(44, 44, 44, 0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.shelle88ca-brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 54px;
  padding: 6px 8px 4px 10px;
  gap: 8px;
}

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

.shelle88ca-brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: cover;
  border: 1px solid var(--shelle88ca-aqua);
  border-radius: 5px;
  background: var(--shelle88ca-panel-deep);
}

.shelle88ca-brand strong {
  overflow: hidden;
  font-family: var(--shelle88ca-head);
  font-size: 23px;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.shelle88ca-head-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(58px, auto)) 44px;
  gap: 4px;
}

.shelle88ca-action,
.shelle88ca-menu-toggle {
  min-height: 44px;
  padding: 0 9px;
  border: 1px solid var(--shelle88ca-line);
  border-radius: 4px;
  color: var(--shelle88ca-ink);
  background: var(--shelle88ca-panel);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.shelle88ca-action:first-child {
  border-color: var(--shelle88ca-aqua);
  color: #172624;
  background: var(--shelle88ca-aqua);
}

.shelle88ca-menu-toggle {
  position: relative;
  width: 44px;
  padding: 0;
  font-size: 0;
}

.shelle88ca-menu-toggle::before,
.shelle88ca-menu-toggle::after {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 0.18s ease, top 0.18s ease;
}

.shelle88ca-menu-toggle::before {
  top: 16px;
  box-shadow: 0 6px 0 currentColor;
}

.shelle88ca-menu-toggle::after {
  top: 28px;
}

.shelle88ca-menu-toggle[aria-expanded="true"]::before {
  top: 21px;
  box-shadow: none;
  transform: rotate(45deg);
}

.shelle88ca-menu-toggle[aria-expanded="true"]::after {
  top: 21px;
  transform: rotate(-45deg);
}

.shelle88ca-route-strip {
  display: flex;
  min-height: 44px;
  padding: 0 8px 6px;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shelle88ca-route-strip::-webkit-scrollbar,
.shelle88ca-filter-rail::-webkit-scrollbar,
.shelle88ca-shortcut-rail::-webkit-scrollbar {
  display: none;
}

.shelle88ca-route-strip a {
  display: inline-flex;
  min-width: max-content;
  min-height: 38px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #515151;
  border-radius: 4px;
  color: var(--shelle88ca-ink);
  background: #333;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.shelle88ca-route-strip a[aria-current="page"] {
  border-color: var(--shelle88ca-aqua);
  color: var(--shelle88ca-aqua);
  background: var(--shelle88ca-aqua-soft);
}

.shelle88ca-expand-menu {
  position: absolute;
  top: 100%;
  right: 8px;
  left: 8px;
  max-height: calc(100vh - 128px);
  padding: 8px;
  overflow-y: auto;
  border: 1px solid var(--shelle88ca-aqua);
  border-radius: 5px;
  background: #292929;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.shelle88ca-expand-menu[hidden] {
  display: none;
}

.shelle88ca-expand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.shelle88ca-expand-grid a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 8px 9px;
  border: 1px solid #4c4c4c;
  border-radius: 3px;
  color: var(--shelle88ca-ink);
  background: var(--shelle88ca-panel-deep);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.shelle88ca-expand-grid a::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border: 1px solid var(--shelle88ca-aqua);
  content: "";
  transform: rotate(45deg);
}

.shelle88ca-main {
  padding: calc(var(--shelle88ca-top) + 8px) 8px calc(var(--shelle88ca-bottom) + 34px);
}

.shelle88ca-intro {
  position: relative;
  padding: 18px 14px 14px;
  overflow: hidden;
  border: 1px solid #555;
  border-left: 4px solid var(--shelle88ca-aqua);
  border-radius: 5px;
  background:
    linear-gradient(100deg, rgba(64, 224, 208, 0.08), transparent 56%),
    var(--shelle88ca-panel-deep);
}

.shelle88ca-intro::after {
  position: absolute;
  top: -38px;
  right: -34px;
  width: 104px;
  height: 104px;
  border: 16px solid rgba(64, 224, 208, 0.08);
  border-radius: 50%;
  content: "";
}

.shelle88ca-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 7px;
  color: var(--shelle88ca-aqua);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shelle88ca-kicker::before {
  width: 20px;
  height: 2px;
  margin-right: 7px;
  content: "";
  background: currentColor;
}

.shelle88ca-intro h1,
.shelle88ca-section-head h2,
.shelle88ca-copy h2,
.shelle88ca-footer-title {
  font-family: var(--shelle88ca-head);
}

.shelle88ca-intro h1 {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0;
  color: var(--shelle88ca-white);
  font-size: clamp(25px, 7.5vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.shelle88ca-intro p {
  position: relative;
  z-index: 1;
  max-width: 365px;
  margin: 11px 0 0;
  color: #c5c8c7;
  font-size: 14px;
}

.shelle88ca-intro-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 13px;
  gap: 6px;
}

.shelle88ca-primary-cta,
.shelle88ca-text-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid var(--shelle88ca-aqua);
  border-radius: 4px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.shelle88ca-primary-cta {
  color: #172624;
  background: var(--shelle88ca-aqua);
}

.shelle88ca-text-cta {
  color: var(--shelle88ca-aqua);
  background: transparent;
}

.shelle88ca-metric-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 7px 0 0;
  border: 1px solid #4b4b4b;
  border-radius: 4px;
  background: #303030;
}

.shelle88ca-metric {
  min-width: 0;
  padding: 9px 5px;
  text-align: center;
}

.shelle88ca-metric + .shelle88ca-metric {
  border-left: 1px solid #4b4b4b;
}

.shelle88ca-metric strong,
.shelle88ca-metric span {
  display: block;
}

.shelle88ca-metric strong {
  color: var(--shelle88ca-aqua);
  font-family: var(--shelle88ca-head);
  font-size: 17px;
}

.shelle88ca-metric span {
  overflow: hidden;
  color: var(--shelle88ca-muted);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.shelle88ca-slider {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #565656;
  border-radius: 5px;
  background: var(--shelle88ca-panel-deep);
}

.shelle88ca-slide-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.shelle88ca-slide {
  position: relative;
  min-width: 100%;
  min-height: 166px;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--shelle88ca-white);
  background: #252525;
  cursor: pointer;
  text-align: left;
}

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

.shelle88ca-slide-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 11px 10px;
  background: linear-gradient(transparent, rgba(20, 20, 20, 0.95));
}

.shelle88ca-slide-caption strong,
.shelle88ca-slide-caption span {
  display: block;
}

.shelle88ca-slide-caption strong {
  font-family: var(--shelle88ca-head);
  font-size: 18px;
}

.shelle88ca-slide-caption span {
  color: #d9dddc;
  font-size: 12px;
}

.shelle88ca-slider-tools {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
}

.shelle88ca-slider-tools button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  color: var(--shelle88ca-white);
  background: rgba(32, 32, 32, 0.82);
  font-size: 21px;
  cursor: pointer;
}

.shelle88ca-dots {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 4px;
}

.shelle88ca-dot {
  width: 16px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 1px;
  background: #858585;
}

.shelle88ca-dot[aria-current="true"] {
  width: 26px;
  background: var(--shelle88ca-aqua);
}

.shelle88ca-filter-rail,
.shelle88ca-shortcut-rail {
  display: flex;
  margin: 10px -8px 0;
  padding: 0 8px 3px;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shelle88ca-filter-rail a,
.shelle88ca-shortcut-rail a {
  display: inline-flex;
  min-width: max-content;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #565656;
  border-radius: 4px;
  color: var(--shelle88ca-ink);
  background: #333;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.shelle88ca-filter-rail a::before,
.shelle88ca-shortcut-rail a::before {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border: 1px solid var(--shelle88ca-aqua);
  border-radius: 2px;
  content: "";
}

.shelle88ca-game-group,
.shelle88ca-copy,
.shelle88ca-feature-band,
.shelle88ca-promo-band,
.shelle88ca-takeaways {
  margin-top: 14px;
}

.shelle88ca-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 7px;
  padding: 0 2px;
  gap: 10px;
}

.shelle88ca-section-head h2 {
  margin: 0;
  color: var(--shelle88ca-white);
  font-size: 20px;
  line-height: 1.12;
}

.shelle88ca-section-head p {
  margin: 0;
  color: var(--shelle88ca-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.shelle88ca-game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.shelle88ca-game {
  display: flex;
  min-width: 0;
  min-height: 112px;
  flex-direction: column;
  align-items: stretch;
  padding: 4px;
  border: 1px solid #4e4e4e;
  border-radius: 4px;
  color: var(--shelle88ca-ink);
  background: var(--shelle88ca-panel-deep);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.shelle88ca-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  background: #202020;
}

.shelle88ca-game span {
  display: -webkit-box;
  min-height: 31px;
  margin-top: 4px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.shelle88ca-copy {
  padding: 14px 12px;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  background: linear-gradient(90deg, #333, #303030);
}

.shelle88ca-copy h2 {
  margin: 0 0 8px;
  color: var(--shelle88ca-white);
  font-size: 21px;
  line-height: 1.15;
}

.shelle88ca-copy p {
  margin: 0 0 10px;
}

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

.shelle88ca-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #515151;
  border-radius: 5px;
  overflow: hidden;
  background: #303030;
}

.shelle88ca-feature {
  min-width: 0;
  padding: 12px 10px;
}

.shelle88ca-feature:nth-child(odd) {
  border-right: 1px solid #515151;
}

.shelle88ca-feature:nth-child(n + 3) {
  border-top: 1px solid #515151;
}

.shelle88ca-feature b,
.shelle88ca-feature small {
  display: block;
}

.shelle88ca-feature b {
  margin-bottom: 4px;
  color: var(--shelle88ca-aqua);
  font-family: var(--shelle88ca-head);
  font-size: 14px;
}

.shelle88ca-feature small {
  color: #c0c3c2;
  font-size: 12px;
  line-height: 1.35;
}

.shelle88ca-category-notes {
  display: grid;
  gap: 5px;
}

.shelle88ca-category-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 66px;
  align-items: center;
  border: 1px solid #505050;
  border-radius: 4px;
  background: var(--shelle88ca-panel-deep);
}

.shelle88ca-note-symbol {
  display: grid;
  width: 32px;
  height: 32px;
  margin-left: 6px;
  place-items: center;
  border: 1px solid var(--shelle88ca-aqua);
  border-radius: 3px;
  color: var(--shelle88ca-aqua);
  font-family: var(--shelle88ca-head);
  font-size: 13px;
  font-weight: 900;
}

.shelle88ca-category-note div:last-child {
  padding: 8px 8px 8px 3px;
}

.shelle88ca-category-note b,
.shelle88ca-category-note span {
  display: block;
}

.shelle88ca-category-note b {
  color: var(--shelle88ca-white);
  font-size: 13px;
}

.shelle88ca-category-note span {
  color: var(--shelle88ca-muted);
  font-size: 11px;
}

.shelle88ca-promo-band {
  position: relative;
  padding: 13px 12px;
  border: 1px solid var(--shelle88ca-aqua);
  border-radius: 4px;
  background:
    linear-gradient(120deg, rgba(64, 224, 208, 0.16), rgba(64, 224, 208, 0.025)),
    #303030;
}

.shelle88ca-promo-band h2,
.shelle88ca-promo-band p {
  margin: 0;
}

.shelle88ca-promo-band h2 {
  color: var(--shelle88ca-white);
  font-family: var(--shelle88ca-head);
  font-size: 21px;
}

.shelle88ca-promo-band p {
  margin-top: 6px;
  color: #cbd0ce;
  font-size: 13px;
}

.shelle88ca-promo-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
  gap: 5px;
}

.shelle88ca-promo-actions button,
.shelle88ca-footer-promos button {
  min-height: 44px;
  padding: 7px 8px;
  border: 1px solid #717171;
  border-radius: 4px;
  color: var(--shelle88ca-white);
  background: #3a3a3a;
  font-weight: 800;
  cursor: pointer;
}

.shelle88ca-promo-actions button:first-child {
  border-color: var(--shelle88ca-aqua);
  color: #172624;
  background: var(--shelle88ca-aqua);
}

.shelle88ca-faqs {
  border-top: 1px solid #535353;
}

.shelle88ca-faqs details {
  border-bottom: 1px solid #535353;
  background: #303030;
}

.shelle88ca-faqs summary {
  position: relative;
  min-height: 50px;
  padding: 14px 42px 12px 10px;
  color: var(--shelle88ca-white);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.shelle88ca-faqs summary::-webkit-details-marker {
  display: none;
}

.shelle88ca-faqs summary::after {
  position: absolute;
  top: 12px;
  right: 9px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid #5e5e5e;
  border-radius: 3px;
  color: var(--shelle88ca-aqua);
  content: "+";
  font-size: 18px;
}

.shelle88ca-faqs details[open] summary::after {
  content: "−";
}

.shelle88ca-faqs p {
  margin: 0;
  padding: 0 10px 13px;
  color: #bfc3c1;
  font-size: 13px;
}

.shelle88ca-takeaways ol {
  margin: 0;
  padding: 0;
  counter-reset: shelle88ca-step;
  list-style: none;
}

.shelle88ca-takeaways li {
  position: relative;
  min-height: 48px;
  padding: 8px 8px 8px 48px;
  border-bottom: 1px solid #4f4f4f;
  counter-increment: shelle88ca-step;
}

.shelle88ca-takeaways li::before {
  position: absolute;
  top: 7px;
  left: 4px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--shelle88ca-aqua);
  border-radius: 3px;
  color: var(--shelle88ca-aqua);
  content: counter(shelle88ca-step, decimal-leading-zero);
  font-family: var(--shelle88ca-head);
  font-size: 11px;
  font-weight: 900;
}

.shelle88ca-extended-footer {
  padding: 15px 10px 12px;
  border-top: 2px solid var(--shelle88ca-aqua);
  background: #272727;
}

.shelle88ca-footer-brand {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.shelle88ca-footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid var(--shelle88ca-aqua);
  border-radius: 4px;
}

.shelle88ca-footer-brand p {
  margin: 0;
  color: #c3c6c5;
  font-size: 12px;
}

.shelle88ca-footer-brand b {
  display: block;
  color: var(--shelle88ca-white);
  font-family: var(--shelle88ca-head);
  font-size: 16px;
}

.shelle88ca-footer-title {
  margin: 15px 0 7px;
  color: var(--shelle88ca-white);
  font-size: 15px;
}

.shelle88ca-footer-promos {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shelle88ca-footer-promos button {
  min-width: max-content;
}

.shelle88ca-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.shelle88ca-directory a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 7px 8px;
  border: 1px solid #484848;
  border-radius: 3px;
  color: #c9cccb;
  background: #303030;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.shelle88ca-directory a::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border: 1px solid var(--shelle88ca-aqua);
  content: "";
  transform: rotate(45deg);
}

.shelle88ca-disclaimer {
  margin: 13px 0 0;
  padding-top: 10px;
  border-top: 1px solid #474747;
  color: #999e9c;
  font-size: 11px;
}

.shelle88ca-copyright {
  margin: 0;
  padding: 12px 10px calc(var(--shelle88ca-bottom) + 14px);
  color: #969a99;
  background: #242424;
  font-size: 11px;
  text-align: center;
}

.shelle88ca-bottom-nav {
  position: fixed;
  z-index: 35;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: min(100%, 430px);
  min-width: 320px;
  min-height: var(--shelle88ca-bottom);
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto;
  padding: 5px 4px max(5px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--shelle88ca-aqua);
  background: rgba(40, 40, 40, 0.97);
  box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.shelle88ca-bottom-nav a,
.shelle88ca-bottom-nav button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 56px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3px 1px;
  border: 0;
  border-right: 1px solid #424242;
  color: #aeb2b0;
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.shelle88ca-bottom-nav > :last-child {
  border-right: 0;
}

.shelle88ca-nav-icon {
  display: grid;
  width: 29px;
  height: 27px;
  margin-bottom: 2px;
  place-items: center;
  border: 1px solid #5a5a5a;
  border-radius: 3px;
  color: var(--shelle88ca-ink);
  font-family: var(--shelle88ca-head);
  font-size: 12px;
  line-height: 1;
}

.shelle88ca-bottom-nav a[aria-current="page"] {
  color: var(--shelle88ca-aqua);
  transform: translateY(-2px);
}

.shelle88ca-bottom-nav a[aria-current="page"] .shelle88ca-nav-icon {
  border-color: var(--shelle88ca-aqua);
  color: #172624;
  background: var(--shelle88ca-aqua);
}

.shelle88ca-bottom-nav button.shelle88ca-promoted .shelle88ca-nav-icon {
  border-color: var(--shelle88ca-aqua);
  color: var(--shelle88ca-aqua);
}

.shelle88ca-action:active,
.shelle88ca-menu-toggle:active,
.shelle88ca-primary-cta:active,
.shelle88ca-text-cta:active,
.shelle88ca-game:active,
.shelle88ca-footer-promos button:active,
.shelle88ca-promo-actions button:active,
.shelle88ca-bottom-nav button:active,
.shelle88ca-bottom-nav a:active {
  transform: translateY(1px) scale(0.98);
}

.shelle88ca-action:hover,
.shelle88ca-menu-toggle:hover,
.shelle88ca-game:hover,
.shelle88ca-route-strip a:hover,
.shelle88ca-expand-grid a:hover,
.shelle88ca-filter-rail a:hover,
.shelle88ca-shortcut-rail a:hover,
.shelle88ca-directory a:hover {
  border-color: var(--shelle88ca-aqua);
  color: var(--shelle88ca-aqua);
  background: #343f3e;
}

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

.shelle88ca-reveal {
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.shelle88ca-reveal.shelle88ca-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 375px) {
  .shelle88ca-game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .shelle88ca-game {
    min-height: 108px;
  }

  .shelle88ca-head-actions {
    grid-template-columns: repeat(2, 70px) 44px;
  }

  .shelle88ca-action {
    font-size: 12px;
  }
}

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

  .shelle88ca-canvas {
    border-right: 1px solid #4d4d4d;
    border-left: 1px solid #4d4d4d;
  }
}

@media (max-width: 345px) {
  :root {
    --shelle88ca-top: 100px;
  }

  .shelle88ca-brand strong {
    font-size: 19px;
  }

  .shelle88ca-brand img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .shelle88ca-head-actions {
    grid-template-columns: repeat(2, 52px) 44px;
  }

  .shelle88ca-action {
    padding: 0 5px;
    font-size: 10px;
  }

  .shelle88ca-game {
    min-height: 103px;
  }

  .shelle88ca-game span {
    font-size: 9px;
  }
}

.shelle88ca-page-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
  margin-bottom: 12px;
  padding: 14px 12px;
  border: 1px solid #555;
  border-right: 4px solid var(--shelle88ca-aqua);
  border-radius: 5px;
  background: linear-gradient(135deg, #343434, #292929);
}

.shelle88ca-page-intro h1 {
  margin: 0;
  color: var(--shelle88ca-white);
  font-family: var(--shelle88ca-head);
  font-size: clamp(25px, 7vw, 33px);
  line-height: 1.05;
}

.shelle88ca-page-intro p {
  grid-column: 1 / -1;
  margin: 0;
  color: #c8ccca;
  font-size: 13px;
}

.shelle88ca-page-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--shelle88ca-aqua);
  border-radius: 50%;
  color: var(--shelle88ca-aqua);
  font-family: var(--shelle88ca-head);
  font-size: 15px;
  font-weight: 900;
}

.shelle88ca-answer-stack {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.shelle88ca-answer-card {
  padding: 12px;
  border-left: 3px solid var(--shelle88ca-aqua);
  border-radius: 3px;
  background: #303030;
}

.shelle88ca-answer-card h3 {
  margin: 0 0 5px;
  color: var(--shelle88ca-white);
  font-family: var(--shelle88ca-head);
  font-size: 16px;
  line-height: 1.2;
}

.shelle88ca-answer-card p {
  margin: 0;
  color: #c3c7c5;
  font-size: 13px;
}

.shelle88ca-checklist {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shelle88ca-checklist li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  min-height: 44px;
  align-items: center;
  padding: 6px 8px 6px 4px;
  border: 1px solid #515151;
  border-radius: 3px;
  background: #303030;
  font-size: 13px;
}

.shelle88ca-checklist li::before {
  display: grid;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  place-items: center;
  border: 1px solid var(--shelle88ca-aqua);
  border-radius: 50%;
  color: var(--shelle88ca-aqua);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.shelle88ca-symptom-map {
  display: grid;
  gap: 7px;
}

.shelle88ca-symptom {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  border: 1px solid #535353;
  border-radius: 4px;
  overflow: hidden;
  background: #303030;
}

.shelle88ca-symptom b {
  display: grid;
  min-height: 58px;
  padding: 7px;
  place-items: center;
  color: #172624;
  background: var(--shelle88ca-aqua);
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

.shelle88ca-symptom span {
  padding: 8px;
  color: #c3c7c5;
  font-size: 12px;
}

.shelle88ca-step-lane {
  display: grid;
  gap: 0;
  counter-reset: shelle88ca-lane;
}

.shelle88ca-step-lane article {
  position: relative;
  min-height: 78px;
  padding: 12px 10px 12px 48px;
  border-left: 2px solid #5c5c5c;
  counter-increment: shelle88ca-lane;
}

.shelle88ca-step-lane article::before {
  position: absolute;
  top: 12px;
  left: -16px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--shelle88ca-aqua);
  border-radius: 50%;
  color: var(--shelle88ca-aqua);
  background: var(--shelle88ca-panel-deep);
  content: counter(shelle88ca-lane);
  font-family: var(--shelle88ca-head);
  font-weight: 900;
}

.shelle88ca-step-lane h3 {
  margin: 0 0 3px;
  color: var(--shelle88ca-white);
  font-family: var(--shelle88ca-head);
  font-size: 15px;
}

.shelle88ca-step-lane p {
  margin: 0;
  color: #bec3c1;
  font-size: 12px;
}

.shelle88ca-caution {
  padding: 12px;
  border: 1px dashed var(--shelle88ca-aqua);
  border-radius: 4px;
  color: #d9dddc;
  background: rgba(64, 224, 208, 0.08);
  font-size: 13px;
}

.shelle88ca-caution strong {
  color: var(--shelle88ca-aqua);
}

@media (max-width: 345px) {
  .shelle88ca-page-intro {
    grid-template-columns: 1fr;
  }

  .shelle88ca-page-mark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .shelle88ca-reveal {
    opacity: 1;
    transform: none;
  }
}
