/* =====================================================================
   arrowhead-layers-4182b7.css
   Arrowhead — mobile-first gaming canvas (vi-VN).
   Every selector in this sheet uses the view82b7e- prefix.
   Palette: #5F9EA0 / #BF360C / #FFCC02 / #34495E / #FFA500.
   Direction: poster titles + narrow body, lightly rounded cards,
   compact buttons, grouped cover cards, short-distance transitions.
   ===================================================================== */

/* ===== Design tokens ===== */
:root {
  --view82b7e-bg:        #16212c;
  --view82b7e-bg-deep:   #0f1820;
  --view82b7e-bg-2:      #34495e;
  --view82b7e-surface:   #243341;
  --view82b7e-card:      #1d2a36;
  --view82b7e-card-2:    #283747;
  --view82b7e-teal:      #5f9ea0;
  --view82b7e-rust:      #bf360c;
  --view82b7e-amber:     #ffcc02;
  --view82b7e-orange:    #ffa500;
  --view82b7e-text:      #f3f6f9;
  --view82b7e-text-soft: #cfd8e0;
  --view82b7e-muted:     #93a1ad;
  --view82b7e-line:      rgba(255, 255, 255, 0.08);
  --view82b7e-line-2:    rgba(255, 255, 255, 0.14);
  --view82b7e-shadow:    0 14px 36px rgba(0, 0, 0, 0.38);
  --view82b7e-shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.32);
  --view82b7e-radius:    16px;
  --view82b7e-radius-lg: 22px;
  --view82b7e-radius-sm: 10px;
  --view82b7e-pad:       16px;
  --view82b7e-gap:       12px;
  --view82b7e-topbar-h:  62px;
  --view82b7e-bottomnav-h: 66px;
  --view82b7e-grad-rust: linear-gradient(135deg, #ff8a3d 0%, #ffa500 35%, #bf360c 100%);
  --view82b7e-grad-teal: linear-gradient(135deg, #7dbfc1 0%, #5f9ea0 55%, #2f6a6c 100%);
  --view82b7e-grad-card: linear-gradient(160deg, #283747 0%, #1d2a36 100%);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--view82b7e-bg-deep);
  color: var(--view82b7e-text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--view82b7e-teal); text-decoration: none; }
button { font: 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; }
:focus-visible {
  outline: 2px solid var(--view82b7e-amber);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== Page canvas (mobile-first, max 430px) ===== */
.view82b7e-page {
  position: relative;
  max-width: 430px;            /* literal 430: stable mobile canvas */
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(1200px 320px at 50% -80px, rgba(255, 165, 0, 0.12), transparent 60%),
    linear-gradient(180deg, #18232f 0%, #16212c 35%, #101a23 100%);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.55);
  overflow-x: hidden;
}

/* ===== Top bar ===== */
.view82b7e-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(15, 24, 32, 0.96) 0%, rgba(15, 24, 32, 0.86) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--view82b7e-line);
}

/* Brand + action two-layer row */
.view82b7e-brandrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px var(--view82b7e-pad);
  min-height: var(--view82b7e-topbar-h);
}

.view82b7e-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.view82b7e-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  object-fit: cover;
  background: var(--view82b7e-grad-rust);
  box-shadow: 0 4px 12px rgba(191, 54, 12, 0.35);
  flex: none;
}
.view82b7e-brandname {
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.4px;
  color: var(--view82b7e-text);
  text-transform: lowercase;
  line-height: 1;
}
.view82b7e-brandname b { color: var(--view82b7e-amber); font-weight: 900; }

.view82b7e-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}
.view82b7e-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 13px;
  min-height: 38px;
  border-radius: var(--view82b7e-radius-sm);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}
.view82b7e-btn:active { transform: translateY(1px) scale(0.98); }
.view82b7e-btn-login {
  background: rgba(95, 158, 160, 0.16);
  color: var(--view82b7e-teal);
  border: 1px solid rgba(95, 158, 160, 0.35);
}
.view82b7e-btn-register {
  background: var(--view82b7e-grad-rust);
  color: #1a1206;
  box-shadow: 0 6px 16px rgba(191, 54, 12, 0.32);
}
.view82b7e-menubtn {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--view82b7e-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.view82b7e-menubtn span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--view82b7e-text);
  position: relative;
  border-radius: 2px;
}
.view82b7e-menubtn span::before,
.view82b7e-menubtn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 2px;
  background: var(--view82b7e-text);
  border-radius: 2px;
}
.view82b7e-menubtn span::before { top: -6px; }
.view82b7e-menubtn span::after  { top: 6px; }

/* ===== Slide menu overlay (stacked overlay direction) ===== */
.view82b7e-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 18, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 55;
}
.view82b7e-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(82vw, 340px);
  background: linear-gradient(180deg, #1c2832 0%, #121c25 100%);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
  transform: translateX(105%);
  transition: transform 0.26s cubic-bezier(0.22, 0.68, 0.26, 1);
  z-index: 60;
  padding: 18px 0 90px;
  overflow-y: auto;
  visibility: hidden;
}
.view82b7e-menu-open .view82b7e-menu { transform: translateX(0); visibility: visible; }
.view82b7e-menu-open .view82b7e-menu-backdrop { opacity: 1; visibility: visible; }

.view82b7e-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 18px 14px;
  border-bottom: 1px solid var(--view82b7e-line);
}
.view82b7e-menu-head b { color: var(--view82b7e-amber); }
.view82b7e-menu-close {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--view82b7e-text);
  font-size: 18px;
  line-height: 1;
}
.view82b7e-menu-list { padding: 8px 12px; }
.view82b7e-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  margin: 2px 0;
  border-radius: 12px;
  color: var(--view82b7e-text-soft);
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.view82b7e-menu-item:hover,
.view82b7e-menu-item:focus-visible {
  background: rgba(255, 204, 2, 0.08);
  color: var(--view82b7e-text);
  border-color: rgba(255, 204, 2, 0.2);
}
.view82b7e-menu-item em {
  font-style: normal;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--view82b7e-teal);
  flex: none;
}
.view82b7e-menu-foot {
  margin: 12px 16px 0;
  padding: 14px;
  border-radius: 14px;
  background: var(--view82b7e-grad-rust);
  color: #1a1206;
  font-weight: 800;
  text-align: center;
}

/* ===== Main wrapper ===== */
.view82b7e-main {
  padding: 14px var(--view82b7e-pad) calc(var(--view82b7e-bottomnav-h) + 26px);
}

/* ===== Hero carousel ===== */
.view82b7e-hero {
  position: relative;
  border-radius: var(--view82b7e-radius-lg);
  overflow: hidden;
  box-shadow: var(--view82b7e-shadow);
  margin-bottom: 18px;
  background: var(--view82b7e-card);
}
.view82b7e-slides {
  position: relative;
  height: 188px;
  background: var(--view82b7e-card);
}
.view82b7e-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
  cursor: pointer;
}
.view82b7e-slide-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.view82b7e-slide img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}
.view82b7e-slide-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: var(--view82b7e-text);
  font-weight: 800;
  font-size: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.2px;
}
.view82b7e-slide-caption small {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: var(--view82b7e-amber);
  margin-top: 3px;
}
.view82b7e-hero-dots {
  position: absolute;
  bottom: 10px;
  right: 14px;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.view82b7e-hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.2s ease, background 0.2s ease;
}
.view82b7e-hero-dot-active {
  width: 20px;
  border-radius: 5px;
  background: var(--view82b7e-amber);
}

/* ===== Section shell ===== */
.view82b7e-section { margin: 22px 0; }
.view82b7e-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0 2px;
}
.view82b7e-section-title {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--view82b7e-text);
  line-height: 1.2;
}
.view82b7e-section-title u {
  text-decoration: none;
  background: var(--view82b7e-grad-rust);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.view82b7e-section-sub {
  font-size: 12.5px;
  color: var(--view82b7e-muted);
  font-weight: 500;
  white-space: nowrap;
}
.view82b7e-rule {
  height: 3px;
  border-radius: 3px;
  width: 40px;
  background: var(--view82b7e-grad-rust);
  margin: 2px 0 14px;
}

/* ===== H1 (poster title) ===== */
.view82b7e-h1 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.6px;
  margin: 4px 0 10px;
  color: var(--view82b7e-text);
}
.view82b7e-h1 b { color: var(--view82b7e-amber); }
.view82b7e-lede {
  color: var(--view82b7e-text-soft);
  font-size: 14px;
  margin-bottom: 14px;
}
.view82b7e-lede a { color: var(--view82b7e-amber); font-weight: 700; }

/* ===== Quick action strip ===== */
.view82b7e-quickrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 4px;
}
.view82b7e-quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: 14px;
  background: var(--view82b7e-grad-card);
  border: 1px solid var(--view82b7e-line);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--view82b7e-text);
  text-align: center;
  transition: transform 0.14s ease, border-color 0.14s ease;
}
.view82b7e-quick:active { transform: scale(0.97); }
.view82b7e-quick i {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--view82b7e-grad-teal);
  display: inline-flex; align-items: center; justify-content: center;
  color: #0e2a2b;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
}

/* ===== Game groups ===== */
.view82b7e-gamegroup {
  border-radius: var(--view82b7e-radius);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--view82b7e-line);
  padding: 14px 12px 16px;
  margin: 14px 0;
}
.view82b7e-grouptitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.view82b7e-grouptitle h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1px;
  color: var(--view82b7e-text);
}
.view82b7e-grouptag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  color: #1a1206;
  background: var(--view82b7e-amber);
}
.view82b7e-grouptag.tag-hot { background: var(--view82b7e-grad-rust); color: #fff; }
.view82b7e-grouptag.tag-live { background: var(--view82b7e-teal); color: #0e2a2b; }
.view82b7e-grouptag.tag-fish { background: #3aa6b8; color: #04252a; }
.view82b7e-grouptag.tag-slot { background: var(--view82b7e-orange); color: #2a1500; }

/* ===== Game grid (stable 4 columns) ===== */
.view82b7e-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px 8px;
}
.view82b7e-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 6px 4px 8px;
  border-radius: 12px;
  background: var(--view82b7e-grad-card);
  border: 1px solid var(--view82b7e-line);
  cursor: pointer;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
  -webkit-tap-highlight-color: transparent;
}
.view82b7e-card:hover,
.view82b7e-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 204, 2, 0.45);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}
.view82b7e-card:active { transform: scale(0.96); }
.view82b7e-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 9px;
  background: #0e1820;
}
.view82b7e-cardname {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--view82b7e-text-soft);
  text-align: center;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 27px;
}
.view82b7e-badge {
  position: absolute;
  top: 3px; left: 3px;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 6px;
  background: var(--view82b7e-grad-rust);
  color: #fff;
  letter-spacing: 0.3px;
}

/* ===== Content modules ===== */
.view82b7e-module {
  margin: 16px 0;
  padding: 16px 14px;
  border-radius: var(--view82b7e-radius);
  background: linear-gradient(160deg, #20303d 0%, #18242f 100%);
  border: 1px solid var(--view82b7e-line);
  box-shadow: var(--view82b7e-shadow-sm);
}
.view82b7e-module-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.view82b7e-module-head i {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--view82b7e-grad-teal);
  color: #0e2a2b;
  font-style: normal; font-weight: 900; font-size: 14px;
}
.view82b7e-module h2 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: var(--view82b7e-text);
  line-height: 1.25;
}

/* Narrow prose body (poster title + narrow body direction) */
.view82b7e-prose { max-width: 38ch; color: var(--view82b7e-text-soft); font-size: 14px; }
.view82b7e-prose p { margin: 0 0 10px; }
.view82b7e-prose p:last-child { margin-bottom: 0; }
.view82b7e-prose a { color: var(--view82b7e-amber); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.view82b7e-prose strong { color: var(--view82b7e-text); font-weight: 700; }

/* Info tiles */
.view82b7e-tilegrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.view82b7e-tile {
  padding: 11px 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--view82b7e-line);
}
.view82b7e-tile b {
  display: block;
  color: var(--view82b7e-amber);
  font-size: 12.5px;
  margin-bottom: 3px;
}
.view82b7e-tile span { color: var(--view82b7e-text-soft); font-size: 12.5px; line-height: 1.4; }

/* Steps */
.view82b7e-steps { counter-reset: step; display: grid; gap: 9px; }
.view82b7e-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: start;
}
.view82b7e-step::before {
  counter-increment: step;
  content: counter(step);
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--view82b7e-grad-rust);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
}
.view82b7e-step b { color: var(--view82b7e-text); font-size: 13.5px; display: block; margin-bottom: 2px; }
.view82b7e-step span { color: var(--view82b7e-text-soft); font-size: 13px; line-height: 1.45; }

/* FAQ */
.view82b7e-faq { display: grid; gap: 8px; }
.view82b7e-faq-item {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--view82b7e-line);
}
.view82b7e-faq-q {
  display: block;
  font-weight: 700;
  color: var(--view82b7e-text);
  font-size: 13.5px;
  margin-bottom: 5px;
}
.view82b7e-faq-q::before {
  content: "Q";
  display: inline-flex;
  width: 18px; height: 18px;
  border-radius: 6px;
  background: var(--view82b7e-amber);
  color: #2a1500;
  font-size: 11px; font-weight: 900;
  align-items: center; justify-content: center;
  margin-right: 7px;
  vertical-align: 2px;
}
.view82b7e-faq-a { color: var(--view82b7e-text-soft); font-size: 13px; line-height: 1.5; padding-left: 25px; }

/* Checklist */
.view82b7e-checklist { display: grid; gap: 7px; }
.view82b7e-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--view82b7e-text-soft);
  font-size: 13px;
  line-height: 1.45;
}
.view82b7e-checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 8px;
  border-left: 3px solid var(--view82b7e-teal);
  border-bottom: 3px solid var(--view82b7e-teal);
  transform: rotate(-45deg);
}

/* Inline promo link inside prose */
.view82b7e-promolink {
  color: var(--view82b7e-amber);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  padding: 0;
}

/* CTA block */
.view82b7e-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}
.view82b7e-cta-btn {
  flex: 1 1 auto;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.view82b7e-cta-btn:active { transform: translateY(1px) scale(0.98); }
.view82b7e-cta-primary { background: var(--view82b7e-grad-rust); color: #1a1206; box-shadow: 0 8px 20px rgba(191, 54, 12, 0.34); }
.view82b7e-cta-ghost { background: rgba(95, 158, 160, 0.14); color: var(--view82b7e-teal); border: 1px solid rgba(95, 158, 160, 0.4); }

/* ===== Help-page comparison and disclosure patterns ===== */
.view82b7e-compare {
  display: grid;
  gap: 8px;
}
.view82b7e-compare-row {
  display: grid;
  grid-template-columns: minmax(88px, 0.75fr) minmax(0, 1.6fr);
  gap: 10px;
  padding: 11px;
  border-left: 3px solid var(--view82b7e-teal);
  background: rgba(255, 255, 255, 0.035);
}
.view82b7e-compare-row b {
  color: var(--view82b7e-amber);
  font-size: 12.5px;
}
.view82b7e-compare-row span {
  color: var(--view82b7e-text-soft);
  font-size: 12.5px;
  line-height: 1.45;
}
.view82b7e-qa-list {
  display: grid;
  gap: 8px;
}
.view82b7e-qa-list details {
  border: 1px solid var(--view82b7e-line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.view82b7e-qa-list summary {
  min-height: 44px;
  padding: 11px 36px 11px 12px;
  color: var(--view82b7e-text);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.view82b7e-qa-list summary::after {
  content: "+";
  position: absolute;
  right: 13px;
  color: var(--view82b7e-amber);
}
.view82b7e-qa-list details[open] summary::after { content: "−"; }
.view82b7e-qa-list p {
  padding: 0 12px 12px;
  color: var(--view82b7e-text-soft);
  font-size: 12.5px;
  line-height: 1.5;
}

/* ===== Extended footer (sectioned list) ===== */
.view82b7e-extfoot {
  margin: 22px 0 6px;
  border-radius: var(--view82b7e-radius-lg);
  background:
    radial-gradient(220px 90px at 85% -10px, rgba(255, 165, 0, 0.18), transparent 70%),
    linear-gradient(180deg, #1b2733 0%, #121c25 100%);
  border: 1px solid var(--view82b7e-line);
  padding: 18px 14px;
}
.view82b7e-extfoot h2 {
  font-size: 18px;
  font-weight: 900;
  color: var(--view82b7e-text);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.view82b7e-ext-intro { color: var(--view82b7e-text-soft); font-size: 13px; margin-bottom: 14px; }
.view82b7e-ext-col { margin-bottom: 14px; }
.view82b7e-ext-col h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--view82b7e-amber);
  margin-bottom: 8px;
}
.view82b7e-ext-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 10px;
}
.view82b7e-ext-links a,
.view82b7e-ext-links button {
  font-size: 12.5px;
  color: var(--view82b7e-text-soft);
  text-align: left;
  padding: 4px 0;
  font-weight: 600;
  transition: color 0.14s ease;
}
.view82b7e-ext-links a:hover,
.view82b7e-ext-links button:hover { color: var(--view82b7e-amber); }
.view82b7e-ext-links button { text-decoration: underline; text-underline-offset: 2px; }

.view82b7e-disclaimer {
  margin-top: 10px;
  padding: 11px 12px;
  border-radius: 11px;
  background: rgba(255, 204, 2, 0.06);
  border: 1px solid rgba(255, 204, 2, 0.16);
  color: var(--view82b7e-muted);
  font-size: 11.5px;
  line-height: 1.5;
}

/* ===== Footer ===== */
.view82b7e-foot {
  text-align: center;
  color: var(--view82b7e-muted);
  font-size: 11.5px;
  padding: 12px var(--view82b7e-pad) 6px;
  border-top: 1px solid var(--view82b7e-line);
}
.view82b7e-foot b { color: var(--view82b7e-text-soft); }

/* ===== Bottom navigation (segmented action bar) ===== */
.view82b7e-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;          /* literal 430 again: keep bar inside canvas */
  height: var(--view82b7e-bottomnav-h);
  background: linear-gradient(180deg, rgba(20, 30, 40, 0.96) 0%, rgba(12, 20, 28, 0.98) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--view82b7e-line-2);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 45;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.view82b7e-navitem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--view82b7e-muted);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 2px 4px;
  min-height: 44px;
  transition: color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.view82b7e-navitem svg { width: 22px; height: 22px; fill: currentColor; }
.view82b7e-navitem:hover { color: var(--view82b7e-text-soft); }
.view82b7e-nav-active { color: var(--view82b7e-amber); }
.view82b7e-nav-active::before {
  content: "";
  position: absolute;
  top: 0;
  width: 26px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--view82b7e-amber);
}
.view82b7e-nav-promo {
  color: var(--view82b7e-amber);
}
.view82b7e-nav-promo svg { filter: drop-shadow(0 2px 5px rgba(255, 165, 0, 0.5)); }

/* ===== Utilities ===== */
.view82b7e-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.view82b7e-keep-all { word-break: keep-all; }

/* ===== Responsive tuning inside the 320-430px band ===== */
@media (min-width: 360px) {
  .view82b7e-h1 { font-size: 28px; }
  .view82b7e-section-title { font-size: 20px; }
}
@media (min-width: 430px) {              /* literal 430 breakpoint */
  .view82b7e-cardname { font-size: 11.5px; }
  .view82b7e-grid { gap: 10px 9px; }
  .view82b7e-slide img { height: 210px; }
  .view82b7e-slides { height: 210px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .view82b7e-slide { transition: none !important; }
}
