/* ==========================================================================
   bxbjili.cfd — responsive display stylesheet
   Mobile-first canvas (320–430px). Class prefix: view46585-
   Palette: #0E1621 (background) · #999999 (secondary text) · #32CD32 (accent)
   Design: geometric headings, low rounded zoning, image + name-strip cards,
   square-corner high-contrast CTAs, scenario-branch content rhythm.
   ========================================================================== */

:root {
  --view46585-bg: #0E1621;
  --view46585-bg-2: #121c2a;
  --view46585-panel: #16202d;
  --view46585-panel-2: #1b2838;
  --view46585-line: #24344a;
  --view46585-line-2: #2f425b;
  --view46585-ink: #e8eef6;
  --view46585-ink-soft: #c2cdd9;
  --view46585-mute: #999999;
  --view46585-mute-2: #6f7c8d;
  --view46585-accent: #32CD32;
  --view46585-accent-deep: #25a625;
  --view46585-accent-soft: rgba(50, 205, 50, 0.14);
  --view46585-warn: #ffce4d;
  --view46585-radius: 6px;
  --view46585-radius-lg: 10px;
  --view46585-shadow: 0 6px 22px rgba(0, 0, 0, 0.42);
  --view46585-header-h: 56px;
  --view46585-bottomnav-h: 62px;
  --view46585-container: 430px;
  --view46585-font-head: "SF Pro Display", "Helvetica Neue", "Segoe UI", Roboto, "PingFang SC", system-ui, sans-serif;
  --view46585-font-body: "SF Pro Text", "Helvetica Neue", "Segoe UI", Roboto, "PingFang SC", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--view46585-font-body);
  background: var(--view46585-bg);
  color: var(--view46585-ink-soft);
  line-height: 1.6;
  font-size: 14px;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--view46585-accent); text-decoration: none; }
a:focus-visible { outline: 2px solid var(--view46585-accent); outline-offset: 2px; border-radius: 3px; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--view46585-font-head); color: var(--view46585-ink); line-height: 1.3; font-weight: 700; }

ul, ol { list-style: none; }

/* Center the mobile canvas on wider screens while preserving the phone layout */
.view46585-shell {
  width: 100%;
  max-width: var(--view46585-container);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--view46585-bg);
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 431px) {
  body { background: #060a10; }
}

/* ==========================================================================
   Top header — edge-aligned function row
   ========================================================================== */
.view46585-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--view46585-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background: linear-gradient(180deg, #0d1622 0%, #0b1320 100%);
  border-bottom: 1px solid var(--view46585-line);
}

.view46585-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.view46585-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: var(--view46585-radius);
  object-fit: cover;
  border: 1px solid var(--view46585-line-2);
  flex-shrink: 0;
}

.view46585-brand-name {
  font-family: var(--view46585-font-head);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.4px;
  color: var(--view46585-ink);
  text-transform: lowercase;
  white-space: nowrap;
}

.view46585-brand-name span { color: var(--view46585-accent); }

.view46585-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.view46585-btn {
  font-family: var(--view46585-font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  padding: 9px 16px;
  border-radius: 0;            /* square-corner CTA */
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  text-transform: capitalize;
  white-space: nowrap;
}

.view46585-btn:active { transform: translateY(1px); }

.view46585-btn--primary {
  background: var(--view46585-accent);
  color: #07120a;
  box-shadow: 0 2px 0 var(--view46585-accent-deep);
}

.view46585-btn--primary:active { background: var(--view46585-accent-deep); }

.view46585-btn--ghost {
  background: transparent;
  color: var(--view46585-ink);
  border: 1px solid var(--view46585-line-2);
}

.view46585-btn--ghost:active { background: var(--view46585-panel); }

.view46585-icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--view46585-radius);
  color: var(--view46585-ink);
  border: 1px solid var(--view46585-line);
}

.view46585-icon-btn svg { width: 20px; height: 20px; }

.view46585-icon-btn:active { background: var(--view46585-panel); }

/* ==========================================================================
   Slide-down zoned menu (drawer)
   ========================================================================== */
.view46585-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
}

.view46585-menu.view46585-open { visibility: visible; pointer-events: auto; }

.view46585-menu-scrim {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.7);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.view46585-menu.view46585-open .view46585-menu-scrim { opacity: 1; }

.view46585-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 86%;
  max-width: 340px;
  height: 100%;
  background: var(--view46585-bg-2);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 16px 18px calc(var(--view46585-bottomnav-h) + 18px);
  overflow-y: auto;
}

.view46585-menu.view46585-open .view46585-menu-panel { transform: translateX(0); }

.view46585-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--view46585-line);
  margin-bottom: 14px;
}

.view46585-menu-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--view46585-ink);
  letter-spacing: 0.4px;
}

.view46585-menu-close {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--view46585-ink);
}

.view46585-menu-close svg { width: 18px; height: 18px; }

.view46585-menu-zone { margin-bottom: 18px; }

.view46585-menu-zone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--view46585-mute-2);
  margin-bottom: 8px;
}

.view46585-menu-zone ul { display: flex; flex-direction: column; gap: 2px; }

.view46585-menu-zone a {
  display: block;
  padding: 10px 12px;
  color: var(--view46585-ink-soft);
  font-size: 14px;
  border-radius: var(--view46585-radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.view46585-menu-zone a:active { background: var(--view46585-panel); color: var(--view46585-accent); }

.view46585-menu-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--view46585-line);
}

/* ==========================================================================
   Main content
   ========================================================================== */
.view46585-main { padding-bottom: calc(var(--view46585-bottomnav-h) + 24px); }

.view46585-lead {
  padding: 16px 14px 4px;
}

.view46585-h1 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

.view46585-lead p {
  font-size: 13px;
  color: var(--view46585-mute);
  max-width: 38em;
}

/* ==========================================================================
   Carousel — local promo banners
   ========================================================================== */
.view46585-carousel {
  position: relative;
  margin: 12px 0 4px;
  padding: 0 14px;
}

.view46585-carousel-viewport {
  position: relative;
  border-radius: var(--view46585-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--view46585-panel);
  border: 1px solid var(--view46585-line);
}

.view46585-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.view46585-slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.view46585-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.view46585-slide-cap {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.view46585-slide-cap strong {
  display: block;
  font-family: var(--view46585-font-head);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.view46585-slide-cap span {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  color: #f3fff0;
  background: rgba(50, 205, 50, 0.85);
  padding: 3px 8px;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.view46585-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.view46585-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: var(--view46585-line-2);
  border-radius: 50%;
  transition: background 0.2s ease, width 0.2s ease;
}

.view46585-carousel-dots button.view46585-active {
  background: var(--view46585-accent);
  width: 18px;
  border-radius: 4px;
}

/* ==========================================================================
   Promo strip under carousel
   ========================================================================== */
.view46585-strip {
  margin: 14px 14px 4px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #15263a 0%, #1c1530 100%);
  border: 1px solid var(--view46585-line);
  border-left: 3px solid var(--view46585-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.view46585-strip-text strong {
  display: block;
  font-family: var(--view46585-font-head);
  color: var(--view46585-ink);
  font-size: 14px;
  font-weight: 700;
}

.view46585-strip-text span { font-size: 12px; color: var(--view46585-mute); }

.view46585-strip .view46585-btn { padding: 8px 14px; font-size: 12px; min-height: 34px; }

/* ==========================================================================
   Section heading
   ========================================================================== */
.view46585-section { padding: 18px 0 6px; }

.view46585-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 14px 10px;
  gap: 8px;
}

.view46585-section-head h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--view46585-ink);
  position: relative;
  padding-left: 12px;
}

.view46585-section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: var(--view46585-accent);
  border-radius: 2px;
}

.view46585-section-head a {
  font-size: 11px;
  color: var(--view46585-mute);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.view46585-section-intro {
  padding: 0 14px 10px;
  font-size: 12.5px;
  color: var(--view46585-mute);
  max-width: 40em;
}

/* ==========================================================================
   Game grid — 4 cols default, 5 cols at wider phone
   ========================================================================== */
.view46585-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 10px;
}

@media (min-width: 380px) {
  .view46585-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}

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

/* Card: image + bottom name strip */
.view46585-card {
  background: var(--view46585-panel);
  border: 1px solid var(--view46585-line);
  border-radius: var(--view46585-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  min-width: 0;
}

.view46585-card:active {
  transform: translateY(1px) scale(0.98);
  border-color: var(--view46585-accent);
}

.view46585-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0a121d;
  overflow: hidden;
}

.view46585-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.view46585-card-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(50, 205, 50, 0.92);
  color: #07120a;
  padding: 2px 5px;
  border-radius: 0;
}

.view46585-card-name {
  font-size: 11px;
  line-height: 1.25;
  color: var(--view46585-ink-soft);
  padding: 5px 6px 6px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-top: 1px solid var(--view46585-line);
  background: var(--view46585-panel-2);
}

/* Category label badges per section */
.view46585-cat-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--view46585-accent);
  border: 1px solid var(--view46585-accent);
  padding: 2px 6px;
  border-radius: 0;
  margin-left: 8px;
  vertical-align: middle;
}

/* ==========================================================================
   Info / content modules
   ========================================================================== */
.view46585-modules { padding: 22px 14px 6px; }

.view46585-block {
  background: var(--view46585-bg-2);
  border: 1px solid var(--view46585-line);
  border-left: 3px solid var(--view46585-accent);
  border-radius: var(--view46585-radius);
  padding: 14px 14px 12px;
  margin-bottom: 14px;
}

.view46585-block h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--view46585-ink);
  letter-spacing: 0.1px;
}

.view46585-block h3 {
  font-size: 13.5px;
  font-weight: 700;
  margin: 12px 0 4px;
  color: var(--view46585-accent);
}

.view46585-block p {
  font-size: 13px;
  color: var(--view46585-ink-soft);
  margin-bottom: 8px;
}

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

.view46585-block ul.view46585-list,
.view46585-block ol.view46585-list { margin: 6px 0 8px; }

.view46585-block ul.view46585-list li,
.view46585-block ol.view46585-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--view46585-ink-soft);
  margin-bottom: 4px;
}

.view46585-block ul.view46585-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--view46585-accent);
  border-radius: 50%;
}

.view46585-block ol.view46585-list { counter-reset: stepc; padding-left: 0; }

.view46585-block ol.view46585-list li::before {
  counter-increment: stepc;
  content: counter(stepc);
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background: var(--view46585-accent);
  color: #07120a;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.view46585-block .view46585-inline-link {
  color: var(--view46585-accent);
  font-weight: 700;
  border-bottom: 1px dashed rgba(50, 205, 50, 0.45);
}

.view46585-qa { margin-top: 8px; }

.view46585-qa dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--view46585-ink);
  margin-bottom: 3px;
}

.view46585-qa dd {
  font-size: 13px;
  color: var(--view46585-ink-soft);
  margin-bottom: 10px;
  margin-left: 0;
}

.view46585-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.view46585-cta-row .view46585-btn { flex: 1; min-width: 120px; }

/* ==========================================================================
   Extended footer — two-column directory
   ========================================================================== */
.view46585-extended {
  margin: 18px 14px 4px;
  border-top: 1px solid var(--view46585-line);
  padding-top: 18px;
}

.view46585-extended-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--view46585-mute-2);
  margin-bottom: 10px;
}

.view46585-extended-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.view46585-extended-actions .view46585-btn {
  padding: 11px 8px;
  font-size: 12px;
  min-height: 42px;
}

.view46585-dir {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
  margin-bottom: 18px;
}

.view46585-dir-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--view46585-ink);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.view46585-dir-col ul li { margin-bottom: 5px; }

.view46585-dir-col a {
  font-size: 12.5px;
  color: var(--view46585-ink-soft);
  line-height: 1.35;
}

.view46585-dir-col a:active { color: var(--view46585-accent); }

.view46585-brand-blurb {
  font-size: 12.5px;
  color: var(--view46585-mute);
  margin-bottom: 14px;
  border-left: 2px solid var(--view46585-line-2);
  padding-left: 10px;
}

.view46585-disclaimer {
  font-size: 11.5px;
  color: var(--view46585-mute-2);
  line-height: 1.55;
  padding-top: 12px;
  border-top: 1px dashed var(--view46585-line);
}

/* ==========================================================================
   Common footer (above bottom nav)
   ========================================================================== */
.view46585-footer {
  padding: 18px 14px calc(var(--view46585-bottomnav-h) + 18px);
  border-top: 1px solid var(--view46585-line);
  background: #0a1119;
}

.view46585-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.view46585-footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--view46585-ink);
  font-weight: 700;
  font-size: 13px;
}

.view46585-footer-brand img { width: 22px; height: 22px; border-radius: 4px; }

.view46585-footer-copy { font-size: 11px; color: var(--view46585-mute-2); }

.view46585-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 8px;
}

.view46585-footer-links a { font-size: 11.5px; color: var(--view46585-mute); }

.view46585-footer-note {
  font-size: 11px;
  color: var(--view46585-mute-2);
  line-height: 1.5;
}

/* ==========================================================================
   Fixed bottom nav — 5 segmented roles, linear icons with fill activation
   ========================================================================== */
.view46585-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  height: var(--view46585-bottomnav-h);
  background: linear-gradient(180deg, #0c1521 0%, #08111b 100%);
  border-top: 1px solid var(--view46585-line);
  display: flex;
  align-items: stretch;
  max-width: var(--view46585-container);
  margin: 0 auto;
}

.view46585-bottomnav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--view46585-mute);
  font-size: 10px;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 6px 2px 4px;
  position: relative;
  transition: color 0.2s ease;
  min-height: 44px;
}

.view46585-bottomnav a svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.view46585-bottomnav a.view46585-active { color: var(--view46585-accent); }

.view46585-bottomnav a.view46585-active svg {
  fill: var(--view46585-accent-soft);
  stroke: var(--view46585-accent);
  transform: translateY(-2px);
}

.view46585-bottomnav a.view46585-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30%;
  right: 30%;
  height: 2px;
  background: var(--view46585-accent);
  border-radius: 0 0 2px 2px;
}

.view46585-bottomnav a:active { color: var(--view46585-accent); }

.view46585-bottomnav .view46585-nav-label {
  font-weight: 600;
  line-height: 1;
}

.view46585-bottomnav-promo {
  color: var(--view46585-accent);
  font-weight: 700;
}

/* Help-page variations: safety uses checkpoints, the play guide uses a step rail */
.view46585-help-hero {
  margin: 14px;
  padding: 18px 16px;
  border: 1px solid var(--view46585-line-2);
  background: linear-gradient(145deg, #17283a 0%, #101b2a 70%);
  border-radius: var(--view46585-radius-lg);
}

.view46585-help-hero h1 { font-size: 23px; margin-bottom: 8px; }
.view46585-help-hero p { color: var(--view46585-ink-soft); font-size: 13px; }
.view46585-help-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--view46585-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.view46585-check-grid { display: grid; gap: 9px; margin: 12px 14px; }
.view46585-check {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 12px;
  background: var(--view46585-panel);
  border: 1px solid var(--view46585-line);
  border-radius: var(--view46585-radius);
}
.view46585-check-mark {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--view46585-accent);
  color: var(--view46585-accent);
  font-weight: 800;
  border-radius: 50%;
}
.view46585-check h3 { margin: 0 0 3px; color: var(--view46585-ink); font-size: 13px; }
.view46585-check p { margin: 0; color: var(--view46585-mute); font-size: 12px; line-height: 1.5; }
.view46585-note {
  margin: 12px 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--view46585-warn);
  background: rgba(255, 206, 77, 0.08);
  color: var(--view46585-ink-soft);
  font-size: 12.5px;
}
.view46585-step-rail { margin: 10px 14px 16px; counter-reset: guide; }
.view46585-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 0 0 16px;
}
.view46585-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px; top: 31px; bottom: 0;
  width: 1px; background: var(--view46585-line-2);
}
.view46585-step-num {
  z-index: 1;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--view46585-accent);
  color: #07120a;
  font-weight: 800;
}
.view46585-step h2 { font-size: 15px; margin: 2px 0 4px; }
.view46585-step p { font-size: 13px; color: var(--view46585-ink-soft); }
.view46585-choice-row { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 10px; }
.view46585-choice {
  padding: 11px 12px;
  border: 1px solid var(--view46585-line);
  background: var(--view46585-bg-2);
}
.view46585-choice strong { display: block; color: var(--view46585-accent); font-size: 12px; margin-bottom: 3px; }
.view46585-choice span { color: var(--view46585-mute); font-size: 12px; }
.view46585-table-wrap { overflow-x: auto; margin-top: 10px; }
.view46585-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.view46585-table th, .view46585-table td { padding: 8px; border: 1px solid var(--view46585-line); text-align: left; vertical-align: top; }
.view46585-table th { color: var(--view46585-ink); background: var(--view46585-panel); }
.view46585-table td { color: var(--view46585-ink-soft); }
@media (min-width: 380px) {
  .view46585-check-grid { grid-template-columns: repeat(2, 1fr); }
  .view46585-choice-row { grid-template-columns: repeat(2, 1fr); }
}

/* Visually-hidden helper */
.view46585-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
