/* ============================================================
   luckypot.cyou — responsive canvas stylesheet
   Class prefix : view84231-
   Palette     : #FFF176 | #0000FF | #48D1CC | #2C3E50 | #4169E1
   Direction   : competitive-arena VIP club, grouped enclosed
                 panels, compact indicator rhythm, sharp tool feel
   ============================================================ */

:root {
  --view84231-bg:           #2C3E50;
  --view84231-bg-deep:      #1c2735;
  --view84231-bg-panel:     #243447;
  --view84231-bg-card:      #2a3c50;
  --view84231-bg-card-hi:   #314863;
  --view84231-text:         #f4f7fb;
  --view84231-text-soft:    #b9c6d6;
  --view84231-text-mute:    #8090a4;
  --view84231-yellow:       #FFF176;
  --view84231-yellow-deep:  #f0dd4a;
  --view84231-blue:         #2746e6;
  --view84231-blue-deep:    #0000FF;
  --view84231-teal:         #48D1CC;
  --view84231-teal-deep:    #2bb3ae;
  --view84231-royal:        #4169E1;
  --view84231-royal-deep:   #2f4fc0;
  --view84231-line:         rgba(255,255,255,.08);
  --view84231-line-strong:  rgba(255,255,255,.20);
  --view84231-line-teal:    rgba(72,209,204,.35);
  --view84231-shadow:       0 12px 30px rgba(0,0,0,.38);
  --view84231-shadow-sm:    0 4px 10px rgba(0,0,0,.28);
  --view84231-radius-xs:    3px;
  --view84231-radius-sm:    5px;
  --view84231-radius:       8px;
  --view84231-radius-lg:    14px;
  --view84231-header-h:     58px;
  --view84231-bottomnav-h:  66px;
  --view84231-canvas-max:   480px;
  --view84231-font:         "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --view84231-mono:         "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* , *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--view84231-bg-deep);
  color: var(--view84231-text);
  font-family: var(--view84231-font);
  font-size: 15px;
  line-height: 1.56;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--view84231-teal); text-decoration: none; }
a:hover { color: var(--view84231-yellow); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- phone canvas ---------- */
.view84231-canvas {
  max-width: var(--view84231-canvas-max);
  margin: 0 auto;
  background: var(--view84231-bg);
  min-height: 100vh;
  position: relative;
  box-shadow: var(--view84231-shadow);
  overflow: hidden;
}
.view84231-canvas::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  background:
    radial-gradient(circle at 15% 0%, rgba(72,209,204,.18), transparent 55%),
    radial-gradient(circle at 85% 5%, rgba(65,105,225,.22), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- skip link ---------- */
.view84231-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--view84231-yellow);
  color: #1c2735;
  padding: 8px 14px;
  font-weight: 700;
  border-radius: 0 0 var(--view84231-radius-sm) 0;
  z-index: 200;
}
.view84231-skip:focus { left: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.view84231-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--view84231-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(180deg, rgba(28,39,53,.96), rgba(36,52,71,.94));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--view84231-line);
}
.view84231-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  flex: 1;
}
.view84231-brand-img {
  width: 34px;
  height: 34px;
  border-radius: var(--view84231-radius-sm);
  object-fit: cover;
  border: 1px solid var(--view84231-line-teal);
  box-shadow: 0 0 0 2px rgba(72,209,204,.12);
  flex-shrink: 0;
}
.view84231-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.view84231-brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--view84231-text);
}
.view84231-brand-name em {
  font-style: normal;
  color: var(--view84231-yellow);
}
.view84231-brand-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--view84231-teal);
}

.view84231-head-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.view84231-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  border-radius: var(--view84231-radius-sm);
  transition: transform .12s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.view84231-btn:active { transform: scale(.96); }
.view84231-btn--ghost {
  color: var(--view84231-teal);
  border: 1px solid var(--view84231-line-teal);
  background: rgba(72,209,204,.08);
}
.view84231-btn--ghost:hover { background: rgba(72,209,204,.16); color: var(--view84231-text); }
.view84231-btn--solid {
  color: #fff;
  background: linear-gradient(135deg, var(--view84231-royal), var(--view84231-royal-deep));
  box-shadow: 0 4px 12px rgba(65,105,225,.35);
}
.view84231-btn--solid:hover { background: linear-gradient(135deg, #4f78ec, #3654c9); }
.view84231-btn--yellow {
  color: #1c2735;
  background: linear-gradient(135deg, var(--view84231-yellow), var(--view84231-yellow-deep));
  box-shadow: 0 4px 12px rgba(255,241,118,.30);
}
.view84231-btn--yellow:hover { filter: brightness(1.05); }

.view84231-menu-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--view84231-radius-sm);
  border: 1px solid var(--view84231-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
}
.view84231-menu-btn:hover { background: rgba(255,255,255,.09); }
.view84231-menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--view84231-text);
  position: relative;
  border-radius: 2px;
}
.view84231-menu-btn span::before,
.view84231-menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--view84231-text);
  border-radius: 2px;
}
.view84231-menu-btn span::before { top: -5px; }
.view84231-menu-btn span::after { top: 5px; }

/* ---------- slide menu ---------- */
.view84231-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 84%;
  max-width: 340px;
  height: 100%;
  background: var(--view84231-bg-panel);
  border-left: 1px solid var(--view84231-line);
  z-index: 120;
  transform: translateX(105%);
  transition: transform .26s cubic-bezier(.4,.1,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.view84231-menu.is-open { transform: translateX(0); }
.view84231-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--view84231-line);
}
.view84231-menu-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--view84231-yellow);
}
.view84231-menu-close {
  width: 32px;
  height: 32px;
  border-radius: var(--view84231-radius-sm);
  border: 1px solid var(--view84231-line);
  font-size: 20px;
  line-height: 1;
  color: var(--view84231-text-soft);
}
.view84231-menu-close:hover { color: var(--view84231-yellow); border-color: var(--view84231-line-strong); }
.view84231-menu-section {
  padding: 14px 16px 6px;
}
.view84231-menu-label {
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--view84231-text-mute);
  margin-bottom: 8px;
  font-weight: 700;
}
.view84231-menu-list li { margin-bottom: 2px; }
.view84231-menu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--view84231-radius-sm);
  color: var(--view84231-text);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
}
.view84231-menu-list a:hover {
  background: rgba(72,209,204,.10);
  border-color: var(--view84231-line-teal);
  color: var(--view84231-teal);
}
.view84231-menu-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--view84231-royal);
  flex-shrink: 0;
}
.view84231-menu-cta {
  margin-top: auto;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid var(--view84231-line);
}
.view84231-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,14,22,.55);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.view84231-overlay.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   MAIN
   ============================================================ */
.view84231-main {
  position: relative;
  z-index: 1;
  padding: 14px 12px calc(var(--view84231-bottomnav-h) + 28px);
}

/* ---------- hero / carousel ---------- */
.view84231-hero {
  position: relative;
  border-radius: var(--view84231-radius-lg);
  overflow: hidden;
  border: 1px solid var(--view84231-line);
  box-shadow: var(--view84231-shadow-sm);
  background: var(--view84231-bg-panel);
  margin-bottom: 14px;
}
.view84231-hero-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,.1,.2,1);
}
.view84231-hero-slide {
  flex: 0 0 100%;
  position: relative;
}
.view84231-hero-slide img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}
.view84231-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 14px 12px;
  background: linear-gradient(0deg, rgba(20,30,42,.92), rgba(20,30,42,.45) 60%, transparent);
}
.view84231-hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #1c2735;
  background: var(--view84231-yellow);
  padding: 3px 8px;
  border-radius: var(--view84231-radius-xs);
  margin-bottom: 6px;
}
.view84231-hero-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 4px;
}
.view84231-hero-sub {
  font-size: 12px;
  color: var(--view84231-text-soft);
}
.view84231-hero-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 2;
}
.view84231-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background .2s, width .2s;
}
.view84231-hero-dot.is-active {
  background: var(--view84231-yellow);
  width: 16px;
  border-radius: 3px;
}

/* ---------- quick stat strip ---------- */
.view84231-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: var(--view84231-bg-panel);
  border: 1px solid var(--view84231-line);
  border-radius: var(--view84231-radius);
  padding: 10px 8px;
  margin-bottom: 14px;
}
.view84231-strip-cell {
  text-align: center;
  padding: 4px 2px;
  border-right: 1px solid var(--view84231-line);
}
.view84231-strip-cell:last-child { border-right: 0; }
.view84231-strip-num {
  font-family: var(--view84231-mono);
  font-size: 16px;
  font-weight: 800;
  color: var(--view84231-yellow);
  line-height: 1.1;
}
.view84231-strip-lab {
  font-size: 10px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--view84231-text-mute);
  margin-top: 3px;
}

/* ---------- H1 / section intro ---------- */
.view84231-h1 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--view84231-text);
  margin: 6px 0 8px;
  letter-spacing: .2px;
}
.view84231-h1 em {
  font-style: normal;
  color: var(--view84231-yellow);
  position: relative;
}
.view84231-h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--view84231-teal);
  border-radius: 2px;
  opacity: .55;
}
.view84231-lead {
  font-size: 13.5px;
  color: var(--view84231-text-soft);
  margin-bottom: 14px;
}

.view84231-h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--view84231-text);
  letter-spacing: .2px;
  line-height: 1.3;
}
.view84231-h2 em { font-style: normal; color: var(--view84231-yellow); }
.view84231-h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--view84231-teal);
  letter-spacing: .2px;
}

.view84231-section {
  margin-top: 22px;
}
.view84231-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.view84231-section-badge {
  width: 26px;
  height: 26px;
  border-radius: var(--view84231-radius-xs);
  background: linear-gradient(135deg, var(--view84231-royal), var(--view84231-blue-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--view84231-mono);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(65,105,225,.4);
}
.view84231-section-meta {
  font-size: 11px;
  color: var(--view84231-text-mute);
  margin-left: auto;
  font-family: var(--view84231-mono);
  letter-spacing: .5px;
}
.view84231-live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1c2735;
  background: var(--view84231-yellow);
  padding: 2px 6px;
  border-radius: var(--view84231-radius-xs);
}
.view84231-live-pulse::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d33;
  animation: view84231pulse 1.4s ease-in-out infinite;
}
@keyframes view84231pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.7); }
}

/* ============================================================
   GAME PANEL  (grouped enclosed cards)
   ============================================================ */
.view84231-panel {
  background: var(--view84231-bg-panel);
  border: 1px solid var(--view84231-line);
  border-radius: var(--view84231-radius);
  overflow: hidden;
  margin-bottom: 14px;
}
.view84231-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(90deg, rgba(65,105,225,.18), rgba(65,105,225,0));
  border-bottom: 1px solid var(--view84231-line);
}
.view84231-panel-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--view84231-radius-xs);
  background: var(--view84231-bg-card-hi);
  border: 1px solid var(--view84231-line-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--view84231-mono);
  font-weight: 800;
  font-size: 13px;
  color: var(--view84231-teal);
}
.view84231-panel-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--view84231-text);
  line-height: 1.1;
}
.view84231-panel-title small {
  display: block;
  font-size: 10px;
  letter-spacing: .5px;
  text-transform: none;
  color: var(--view84231-text-mute);
  font-weight: 600;
  margin-top: 2px;
}
.view84231-panel-count {
  margin-left: auto;
  font-family: var(--view84231-mono);
  font-size: 11px;
  color: var(--view84231-yellow);
  background: rgba(255,241,118,.10);
  border: 1px solid rgba(255,241,118,.25);
  padding: 2px 8px;
  border-radius: 999px;
}
.view84231-panel-body { padding: 10px; }

/* ---------- game grid ---------- */
.view84231-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.view84231-game {
  position: relative;
  border-radius: var(--view84231-radius-sm);
  background: var(--view84231-bg-card);
  border: 1px solid var(--view84231-line);
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform .12s ease, border-color .2s ease, box-shadow .2s ease;
  display: block;
  color: inherit;
}
.view84231-game:hover {
  border-color: var(--view84231-line-teal);
  box-shadow: 0 4px 12px rgba(72,209,204,.18);
  color: inherit;
}
.view84231-game:active { transform: scale(.95); }
.view84231-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: var(--view84231-bg-deep);
}
.view84231-game-name {
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--view84231-text);
  padding: 5px 4px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view84231-game-hot {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .5px;
  background: var(--view84231-yellow);
  color: #1c2735;
  padding: 1px 4px;
  border-radius: var(--view84231-radius-xs);
}
.view84231-game-rt {
  position: absolute;
  bottom: 18px;
  right: 3px;
  font-family: var(--view84231-mono);
  font-size: 8.5px;
  font-weight: 700;
  color: var(--view84231-yellow);
  background: rgba(20,30,42,.78);
  padding: 1px 4px;
  border-radius: var(--view84231-radius-xs);
  border: 1px solid rgba(255,241,118,.3);
}

/* ---------- wider grid at >=375px ---------- */
@media (min-width: 375px) {
  .view84231-grid { gap: 8px; }
  .view84231-game-name { font-size: 11px; }
}

/* ============================================================
   PROMOTIONS
   ============================================================ */
.view84231-promo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}
.view84231-promo-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--view84231-bg-card);
  border: 1px solid var(--view84231-line);
  border-left: 3px solid var(--view84231-yellow);
  border-radius: var(--view84231-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .12s ease, border-color .2s;
}
.view84231-promo-card:hover { transform: translateY(-1px); border-color: var(--view84231-line-strong); }
.view84231-promo-card:active { transform: scale(.99); }
.view84231-promo-tag {
  width: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--view84231-royal-deep), var(--view84231-blue-deep));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--view84231-mono);
  padding: 8px 4px;
  text-align: center;
}
.view84231-promo-tag-num {
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}
.view84231-promo-tag-lab {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
  color: var(--view84231-yellow);
}
.view84231-promo-body {
  flex: 1;
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.view84231-promo-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--view84231-text);
  margin-bottom: 2px;
}
.view84231-promo-desc {
  font-size: 11.5px;
  color: var(--view84231-text-soft);
  line-height: 1.4;
}
.view84231-promo-cta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--view84231-yellow);
  margin-top: 4px;
}

/* ============================================================
   GUIDE / FAQ / ENTITY / SCENARIO  (info rhythm)
   ============================================================ */
.view84231-info {
  background: var(--view84231-bg-panel);
  border: 1px solid var(--view84231-line);
  border-radius: var(--view84231-radius);
  padding: 14px;
  margin-bottom: 12px;
}
.view84231-info > p {
  font-size: 13px;
  color: var(--view84231-text-soft);
  margin-bottom: 10px;
}
.view84231-info > p:last-child { margin-bottom: 0; }
.view84231-info ul { margin-top: 4px; }
.view84231-info li {
  font-size: 13px;
  color: var(--view84231-text-soft);
  padding: 6px 0 6px 18px;
  position: relative;
  border-top: 1px dashed var(--view84231-line);
}
.view84231-info li:first-child { border-top: 0; }
.view84231-info li::before {
  content: "›";
  position: absolute;
  left: 4px;
  top: 5px;
  color: var(--view84231-teal);
  font-weight: 800;
}
.view84231-info strong { color: var(--view84231-text); font-weight: 700; }
.view84231-info a { color: var(--view84231-teal); border-bottom: 1px dotted rgba(72,209,204,.5); }
.view84231-info a:hover { color: var(--view84231-yellow); border-bottom-color: var(--view84231-yellow); }

/* compact indicator row */
.view84231-kv {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px 12px;
  font-size: 12.5px;
  margin-top: 6px;
}
.view84231-kv dt {
  color: var(--view84231-text-mute);
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 10.5px;
  padding-top: 2px;
}
.view84231-kv dd {
  margin: 0;
  color: var(--view84231-text);
}

/* FAQ accordion */
.view84231-faq { margin-top: 4px; }
.view84231-faq-item {
  border: 1px solid var(--view84231-line);
  border-radius: var(--view84231-radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--view84231-bg-card);
}
.view84231-faq-q {
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--view84231-text);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
}
.view84231-faq-q::before {
  content: "Q";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: var(--view84231-radius-xs);
  background: var(--view84231-yellow);
  color: #1c2735;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--view84231-mono);
}
.view84231-faq-q .view84231-faq-tog {
  margin-left: auto;
  color: var(--view84231-teal);
  font-size: 16px;
  line-height: 1;
  transition: transform .2s ease;
}
.view84231-faq-item.is-open .view84231-faq-tog { transform: rotate(45deg); color: var(--view84231-yellow); }
.view84231-faq-a {
  padding: 0 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  font-size: 12.5px;
  color: var(--view84231-text-soft);
  line-height: 1.55;
}
.view84231-faq-item.is-open .view84231-faq-a {
  max-height: 360px;
  padding: 0 12px 12px;
}

/* entity relationship grid */
.view84231-entity {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 6px;
}
.view84231-entity-cell {
  background: var(--view84231-bg-card);
  border: 1px solid var(--view84231-line);
  border-radius: var(--view84231-radius-sm);
  padding: 10px;
}
.view84231-entity-key {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--view84231-teal);
  font-weight: 800;
  margin-bottom: 4px;
}
.view84231-entity-val {
  font-size: 12px;
  color: var(--view84231-text-soft);
  line-height: 1.45;
}

/* inline promo hooks inside body copy */
.view84231-hook {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--view84231-yellow);
  border-bottom: 1px dotted rgba(255,241,118,.5);
}
.view84231-hook::after { content: "↗"; font-size: 11px; }

/* ---------- CTA block ---------- */
.view84231-cta-block {
  background: linear-gradient(135deg, var(--view84231-royal-deep), var(--view84231-blue-deep));
  border: 1px solid var(--view84231-line-strong);
  border-radius: var(--view84231-radius);
  padding: 16px;
  text-align: center;
  margin-top: 6px;
}
.view84231-cta-block h3 {
  color: var(--view84231-yellow);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: .3px;
}
.view84231-cta-block p {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
}
.view84231-cta-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

/* ============================================================
   EXTENDED FOOTER (two-column directory)
   ============================================================ */
.view84231-ext {
  margin-top: 22px;
  background: var(--view84231-bg-panel);
  border: 1px solid var(--view84231-line);
  border-radius: var(--view84231-radius);
  padding: 14px;
}
.view84231-ext-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--view84231-line);
  margin-bottom: 12px;
}
.view84231-ext-brand img {
  width: 30px;
  height: 30px;
  border-radius: var(--view84231-radius-sm);
  border: 1px solid var(--view84231-line-teal);
}
.view84231-ext-brand b {
  font-size: 14px;
  font-weight: 800;
  color: var(--view84231-text);
}
.view84231-ext-brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--view84231-teal);
  font-weight: 700;
  margin-top: 1px;
}
.view84231-ext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}
.view84231-ext-col h4 {
  font-size: 10.5px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--view84231-yellow);
  font-weight: 800;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--view84231-line);
}
.view84231-ext-col ul li { margin-bottom: 6px; }
.view84231-ext-col a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--view84231-text-soft);
  font-weight: 600;
}
.view84231-ext-col a:hover { color: var(--view84231-teal); }
.view84231-ext-col a::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--view84231-royal);
  border-radius: 50%;
}
.view84231-ext-actions {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--view84231-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.view84231-ext-actions .view84231-btn {
  min-height: 38px;
  font-size: 12px;
  padding: 0 6px;
}
.view84231-ext-disclaimer {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--view84231-line);
  font-size: 10.5px;
  color: var(--view84231-text-mute);
  line-height: 1.5;
}

/* ============================================================
   UNIVERSAL FOOTER
   ============================================================ */
.view84231-footer {
  position: relative;
  z-index: 1;
  padding: 16px 14px calc(var(--view84231-bottomnav-h) + 18px);
  text-align: center;
  background: var(--view84231-bg-deep);
  border-top: 1px solid var(--view84231-line);
}
.view84231-footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
.view84231-footer-mark img {
  width: 24px;
  height: 24px;
  border-radius: var(--view84231-radius-xs);
}
.view84231-footer-mark b {
  font-size: 13px;
  font-weight: 800;
  color: var(--view84231-text);
  letter-spacing: .3px;
}
.view84231-footer-copy {
  font-size: 11px;
  color: var(--view84231-text-mute);
  line-height: 1.55;
}
.view84231-footer-resp {
  display: inline-block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--view84231-teal);
  border: 1px solid var(--view84231-line-teal);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ============================================================
   BOTTOM NAV  (5 roles, hover-resting dock)
   ============================================================ */
.view84231-bnav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 95;
  width: calc(100% - 20px);
  max-width: calc(var(--view84231-canvas-max) - 20px);
  height: var(--view84231-bottomnav-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  background: linear-gradient(180deg, rgba(36,52,71,.97), rgba(28,39,53,.99));
  border: 1px solid var(--view84231-line-strong);
  border-radius: var(--view84231-radius-lg);
  box-shadow: 0 12px 28px rgba(0,0,0,.45), 0 0 0 1px rgba(72,209,204,.08) inset;
  padding: 4px;
  backdrop-filter: blur(10px);
}
.view84231-bnav-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  border-radius: var(--view84231-radius);
  color: var(--view84231-text-soft);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .4px;
  text-align: center;
  transition: transform .15s ease, color .2s ease, background .2s ease;
  position: relative;
  min-height: 44px;
}
.view84231-bnav-cell:hover { color: var(--view84231-text); }
.view84231-bnav-cell:active { transform: scale(.9); }
.view84231-bnav-cell.is-active {
  color: var(--view84231-yellow);
  background: rgba(255,241,118,.08);
}
.view84231-bnav-cell.is-active::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--view84231-yellow);
  border-radius: 2px;
}
.view84231-bnav-ico {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.view84231-bnav-ico svg { width: 100%; height: 100%; display: block; }
.view84231-bnav-promo {
  background: linear-gradient(135deg, var(--view84231-yellow), var(--view84231-yellow-deep));
  color: #1c2735;
  border-radius: var(--view84231-radius);
  font-weight: 800;
}
.view84231-bnav-promo .view84231-bnav-ico { color: #1c2735; }
.view84231-bnav-promo.is-active { color: #1c2735; background: linear-gradient(135deg, #fff080, var(--view84231-yellow-deep)); }
.view84231-bnav-promo.is-active::after { background: #1c2735; }
.view84231-bnav-promo .view84231-bnav-lab { font-size: 9px; }

/* ---------- tiny focus adjustments ---------- */
:focus-visible {
  outline: 2px solid var(--view84231-yellow);
  outline-offset: 2px;
  border-radius: var(--view84231-radius-xs);
}

/* ---------- responsive tweaks (≥430 wide phone) ---------- */
@media (min-width: 430px) {
  .view84231-hero-slide img { height: 188px; }
  .view84231-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- reduced motion ---------- */
@media (max-width: 374px) {
  .view84231-header { padding: 0 8px; gap: 4px; }
  .view84231-brand { gap: 6px; }
  .view84231-brand-name { font-size: 16px; }
  .view84231-brand-tag { font-size: 9px; letter-spacing: 1px; }
  .view84231-head-actions { gap: 3px; }
  .view84231-btn { padding: 0 8px; font-size: 12px; }
  .view84231-menu-btn { width: 34px; }
  .view84231-main { padding-left: 9px; padding-right: 9px; }
  .view84231-grid { gap: 5px; }
  .view84231-game-name { font-size: 9.5px; padding-left: 2px; padding-right: 2px; }
  .view84231-strip { gap: 2px; padding-left: 4px; padding-right: 4px; }
  .view84231-strip-num { font-size: 14px; }
  .view84231-strip-lab { font-size: 9px; letter-spacing: .2px; }
}

.view84231-prose { color: var(--view84231-text-soft); font-size: 13px; }
.view84231-prose p { margin: 0 0 11px; }
.view84231-prose p:last-child { margin-bottom: 0; }
.view84231-prose strong { color: var(--view84231-text); }
.view84231-prose ol { list-style: decimal; padding-left: 20px; margin: 8px 0 12px; }
.view84231-prose ol li { padding: 4px 0 4px 3px; }
.view84231-prose ul { list-style: disc; padding-left: 19px; margin: 8px 0 12px; }
.view84231-prose ul li { padding: 4px 0; }
.view84231-prose blockquote { margin: 10px 0; padding: 10px 12px; border-left: 3px solid var(--view84231-teal); background: rgba(72,209,204,.07); color: var(--view84231-text); }
.view84231-note { border-left: 3px solid var(--view84231-yellow); padding: 10px 12px; background: rgba(255,241,118,.07); color: var(--view84231-text-soft); font-size: 12px; }
.view84231-step-list { counter-reset: view84231-step; display: grid; gap: 8px; }
.view84231-step-list li { counter-increment: view84231-step; display: grid; grid-template-columns: 30px 1fr; gap: 9px; align-items: start; background: var(--view84231-bg-card); border: 1px solid var(--view84231-line); padding: 10px; border-radius: var(--view84231-radius-sm); }
.view84231-step-list li::before { content: counter(view84231-step, decimal-leading-zero); color: var(--view84231-yellow); font-family: var(--view84231-mono); font-weight: 800; }
.view84231-answer { border-top: 2px solid var(--view84231-teal); padding-top: 10px; }
.view84231-faq-q[aria-expanded="true"] { color: var(--view84231-yellow); }

@media (prefers-reduced-motion: reduce) {
  .view84231-hero-track { transition: none; }
  .view84231-live-pulse::before { animation: none; }
  * { scroll-behavior: auto; }
}
