/*!
 * Tongits Cafe display stylesheet
 * Class prefix : view729b7-
 * Canvas       : 320-430px mobile-first, centered on wider screens
 * Palette      : #E0FFFF #ADB5BD #008B8B #00E5FF #36454F #2E4057
 * English comments only.
 */

:root {
  /* Brand palette */
  --view729b7-bg-deep: #2E4057;
  --view729b7-bg-base: #36454F;
  --view729b7-teal: #008B8B;
  --view729b7-cyan: #00E5FF;
  --view729b7-text: #E0FFFF;
  --view729b7-muted: #ADB5BD;

  /* Derived surfaces */
  --view729b7-surface: #3a4a56;
  --view729b7-surface-2: #2f3e4a;
  --view729b7-surface-3: #465866;
  --view729b7-border: rgba(0, 229, 255, 0.18);
  --view729b7-border-soft: rgba(173, 181, 189, 0.18);
  --view729b7-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);

  /* Layout tokens */
  --view729b7-canvas: 430px;
  --view729b7-header-h: 60px;
  --view729b7-bottom-h: 70px;
  --view729b7-radius: 14px;
  --view729b7-radius-sm: 10px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #18222b;
  color: var(--view729b7-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--view729b7-cyan);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 8px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--view729b7-text);
}

p { margin: 0 0 12px; }

ul, ol { margin: 0 0 12px; padding-left: 20px; }

li { margin: 0 0 6px; }

/* Centered mobile canvas */
.view729b7-canvas {
  position: relative;
  max-width: var(--view729b7-canvas);
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(130% 55% at 50% -5%, rgba(0, 139, 139, 0.45) 0%, transparent 62%),
    radial-gradient(90% 40% at 50% 100%, rgba(0, 229, 255, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #243240 0%, #1d2730 55%, #1a222a 100%);
  box-shadow: 0 0 48px rgba(0, 0, 0, 0.55);
  padding-bottom: calc(var(--view729b7-bottom-h) + 24px);
}

.view729b7-no-scroll { overflow: hidden; }

/* ===== Header ===== */
.view729b7-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 8px;
  height: var(--view729b7-header-h);
  padding: 0 12px;
  background: linear-gradient(180deg, rgba(46, 64, 87, 0.98) 0%, rgba(54, 69, 79, 0.94) 100%);
  border-bottom: 1px solid var(--view729b7-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.view729b7-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--view729b7-border);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.15);
  flex-shrink: 0;
  background: #0f1a22;
}

.view729b7-brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  white-space: nowrap;
  color: var(--view729b7-text);
  text-transform: capitalize;
}

.view729b7-brand-name span { color: var(--view729b7-cyan); }

.view729b7-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.view729b7-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
  font-family: inherit;
}

.view729b7-btn-login {
  background: transparent;
  color: var(--view729b7-text);
  border: 1px solid var(--view729b7-border);
}

.view729b7-btn-login:hover {
  background: rgba(0, 229, 255, 0.08);
  text-decoration: none;
}

.view729b7-btn-register {
  background: linear-gradient(135deg, var(--view729b7-cyan) 0%, var(--view729b7-teal) 100%);
  color: #062430;
  box-shadow: 0 6px 16px rgba(0, 229, 255, 0.28);
}

.view729b7-btn-register:hover { text-decoration: none; }

.view729b7-menu-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--view729b7-border);
  background: rgba(0, 229, 255, 0.08);
  color: var(--view729b7-text);
  cursor: pointer;
  flex-shrink: 0;
}

.view729b7-menu-trigger:hover { background: rgba(0, 229, 255, 0.16); }

.view729b7-menu-trigger svg { width: 22px; height: 22px; }

/* ===== Stacked overlay menu ===== */
.view729b7-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 19, 0.72);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 90;
}

.view729b7-backdrop-show {
  opacity: 1;
  visibility: visible;
}

.view729b7-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 84%;
  max-width: 360px;
  height: 100%;
  background: linear-gradient(180deg, #20303c 0%, #1a2630 100%);
  border-left: 1px solid var(--view729b7-border);
  transform: translateX(105%);
  transition: transform 0.26s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 18px 16px 24px;
  overflow-y: auto;
}

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

.view729b7-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.view729b7-menu-head .view729b7-brand-name { font-size: 17px; }

.view729b7-menu-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--view729b7-border);
  background: transparent;
  color: var(--view729b7-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view729b7-menu-close svg { width: 20px; height: 20px; }

.view729b7-menu-cta {
  display: flex;
  gap: 8px;
  margin: 6px 0 16px;
}

.view729b7-menu-cta .view729b7-btn { flex: 1; min-height: 42px; }

.view729b7-menu-section-title {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--view729b7-muted);
  margin: 14px 4px 6px;
}

.view729b7-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.view729b7-menu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  color: var(--view729b7-text);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}

.view729b7-menu-list a:hover {
  background: rgba(0, 229, 255, 0.08);
  text-decoration: none;
}

.view729b7-menu-list a.view729b7-nav-current {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--view729b7-border);
  color: var(--view729b7-cyan);
}

.view729b7-menu-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--view729b7-cyan);
}

/* ===== Main / sections ===== */
main { display: block; }

.view729b7-section {
  padding: 22px 14px 8px;
}

.view729b7-section-tight { padding: 14px 14px 4px; }

.view729b7-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--view729b7-cyan);
  background: rgba(0, 229, 255, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  border: 1px solid var(--view729b7-border);
}

.view729b7-h1 {
  font-size: 24px;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.view729b7-h2 {
  font-size: 19px;
  margin-top: 4px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 12px;
}

.view729b7-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--view729b7-cyan), var(--view729b7-teal));
}

.view729b7-h3 {
  font-size: 16px;
  color: var(--view729b7-cyan);
  margin-top: 14px;
  margin-bottom: 6px;
}

.view729b7-lead {
  color: var(--view729b7-muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.view729b7-prose p { color: #d3e0e6; font-size: 14.5px; }

.view729b7-prose a { font-weight: 600; }

/* ===== Hero carousel ===== */
.view729b7-hero {
  padding: 14px 14px 4px;
}

.view729b7-carousel {
  position: relative;
  border-radius: var(--view729b7-radius);
  overflow: hidden;
  box-shadow: var(--view729b7-shadow);
  border: 1px solid var(--view729b7-border);
}

.view729b7-carousel-viewport {
  overflow: hidden;
}

.view729b7-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.view729b7-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 168px;
}

.view729b7-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 168px;
}

.view729b7-carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 14px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 14, 19, 0.88) 78%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.view729b7-carousel-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--view729b7-text);
  margin: 0;
}

.view729b7-carousel-sub {
  font-size: 12px;
  color: var(--view729b7-muted);
  margin: 0;
}

.view729b7-carousel-cta {
  align-self: flex-start;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--view729b7-cyan), var(--view729b7-teal));
  color: #062430;
  font-weight: 700;
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.view729b7-carousel-cta:hover { text-decoration: none; }

.view729b7-carousel-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 4;
}

.view729b7-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(224, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.view729b7-dot-active {
  background: var(--view729b7-cyan);
  transform: scale(1.25);
}

/* ===== Promo strip ===== */
.view729b7-promo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0 4px;
}

.view729b7-promo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid var(--view729b7-border);
  text-align: center;
}

.view729b7-promo-btn:hover { text-decoration: none; }

.view729b7-promo-primary {
  background: linear-gradient(135deg, var(--view729b7-cyan), var(--view729b7-teal));
  color: #062430;
  border: none;
}

.view729b7-promo-secondary {
  background: rgba(0, 229, 255, 0.1);
  color: var(--view729b7-text);
}

/* ===== Game grid ===== */
.view729b7-game-block { margin-bottom: 6px; }

.view729b7-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.view729b7-section-head .view729b7-h2 { margin: 0; }

.view729b7-tag {
  font-size: 11px;
  letter-spacing: 0.6px;
  color: var(--view729b7-muted);
  background: var(--view729b7-surface-2);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid var(--view729b7-border-soft);
}

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

.view729b7-game-tile {
  background: var(--view729b7-surface);
  border: 1px solid var(--view729b7-border-soft);
  border-radius: var(--view729b7-radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
  color: var(--view729b7-text);
  padding: 6px 4px 8px;
}

.view729b7-game-tile:hover {
  border-color: var(--view729b7-border);
  box-shadow: 0 6px 16px rgba(0, 229, 255, 0.16);
  text-decoration: none;
  transform: translateY(-2px);
}

.view729b7-game-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #0f1a22;
}

.view729b7-game-name {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--view729b7-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 28px;
}

.view729b7-press { transform: scale(0.95); }

/* ===== Content modules ===== */
.view729b7-card {
  background: linear-gradient(180deg, var(--view729b7-surface) 0%, var(--view729b7-surface-2) 100%);
  border: 1px solid var(--view729b7-border-soft);
  border-radius: var(--view729b7-radius);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.view729b7-card-accent {
  border-color: var(--view729b7-border);
}

.view729b7-feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.view729b7-feature {
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid var(--view729b7-border-soft);
  border-radius: 10px;
  padding: 12px;
}

.view729b7-feature-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.14);
  color: var(--view729b7-cyan);
  margin-bottom: 8px;
}

.view729b7-feature-ico svg { width: 18px; height: 18px; }

.view729b7-feature h3 { margin: 0 0 4px; font-size: 14px; }

.view729b7-feature p { margin: 0; font-size: 12.5px; color: var(--view729b7-muted); }

.view729b7-steps {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.view729b7-steps li {
  counter-increment: step;
  position: relative;
  padding: 10px 12px 10px 44px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid var(--view729b7-border-soft);
  border-radius: 10px;
  font-size: 13px;
  color: #d3e0e6;
}

.view729b7-steps li::before {
  content: counter(step);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--view729b7-cyan), var(--view729b7-teal));
  color: #062430;
  font-weight: 800;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.view729b7-check-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.view729b7-check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 13px;
  color: #d3e0e6;
}

.view729b7-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--view729b7-cyan);
  border-bottom: 2px solid var(--view729b7-cyan);
  transform: rotate(-45deg);
}

/* Inline highlight for body promo anchors */
.view729b7-inline-promo {
  color: var(--view729b7-cyan);
  font-weight: 700;
  cursor: pointer;
  background: rgba(0, 229, 255, 0.1);
  padding: 1px 6px;
  border-radius: 6px;
  border: 1px solid var(--view729b7-border);
}

.view729b7-inline-promo:hover { text-decoration: none; background: rgba(0, 229, 255, 0.2); }

/* ===== Category highlight grid ===== */
.view729b7-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.view729b7-cat-card {
  background: var(--view729b7-surface-2);
  border: 1px solid var(--view729b7-border-soft);
  border-radius: 12px;
  padding: 12px;
}

.view729b7-cat-card h3 {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--view729b7-cyan);
}

.view729b7-cat-card p {
  margin: 0;
  font-size: 12.5px;
  color: var(--view729b7-muted);
}

/* ===== Direct answer callout ===== */
.view729b7-callout {
  background: linear-gradient(135deg, rgba(0, 139, 139, 0.32) 0%, rgba(0, 229, 255, 0.14) 100%);
  border: 1px solid var(--view729b7-border);
  border-radius: var(--view729b7-radius);
  padding: 16px;
  margin-bottom: 12px;
}

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

/* ===== Extended footer ===== */
.view729b7-extended {
  margin: 18px 14px 8px;
  padding: 18px 14px;
  background: var(--view729b7-surface-2);
  border: 1px solid var(--view729b7-border-soft);
  border-radius: var(--view729b7-radius);
}

.view729b7-extended h2 {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 0;
}

.view729b7-extended h2::before { display: none; }

.view729b7-extended-brand {
  font-size: 13px;
  color: var(--view729b7-muted);
  margin-bottom: 14px;
}

.view729b7-extended-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.view729b7-extended-col h3 {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--view729b7-cyan);
  margin-bottom: 8px;
}

.view729b7-extended-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.view729b7-extended-col a {
  font-size: 12.5px;
  color: #d3e0e6;
}

.view729b7-extended-col a:hover { color: var(--view729b7-cyan); }

.view729b7-promo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.view729b7-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--view729b7-border);
  background: rgba(0, 229, 255, 0.08);
  color: var(--view729b7-text);
}

.view729b7-chip:hover { text-decoration: none; background: rgba(0, 229, 255, 0.16); }

.view729b7-chip-solid {
  background: linear-gradient(135deg, var(--view729b7-cyan), var(--view729b7-teal));
  color: #062430;
  border: none;
}

.view729b7-disclaimer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--view729b7-border-soft);
  font-size: 11.5px;
  color: var(--view729b7-muted);
}

/* ===== Universal footer ===== */
.view729b7-footer {
  padding: 14px 16px 8px;
  text-align: center;
  font-size: 12px;
  color: var(--view729b7-muted);
  border-top: 1px solid var(--view729b7-border-soft);
  margin-top: 10px;
}

.view729b7-footer p { margin: 0 0 4px; }

/* ===== Bottom navigation (center-raised) ===== */
.view729b7-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--view729b7-canvas);
  height: var(--view729b7-bottom-h);
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(36, 50, 64, 0.96) 0%, rgba(24, 34, 42, 0.99) 100%);
  border-top: 1px solid var(--view729b7-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.view729b7-bottom-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
  padding: 8px 2px 6px;
  background: transparent;
  border: none;
  color: var(--view729b7-muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
  transition: color 0.18s ease, transform 0.18s ease;
}

.view729b7-bottom-btn:hover {
  color: var(--view729b7-text);
  text-decoration: none;
}

.view729b7-bottom-btn svg {
  width: 22px;
  height: 22px;
}

.view729b7-bottom-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--view729b7-cyan), var(--view729b7-teal));
  transition: width 0.2s ease;
}

.view729b7-bottom-current {
  color: var(--view729b7-cyan);
}

.view729b7-bottom-current::before { width: 26px; }

/* Raised center button */
.view729b7-bottom-raised {
  transform: translateY(-14px);
  color: var(--view729b7-text);
}

.view729b7-bottom-raised .view729b7-raised-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--view729b7-cyan) 0%, var(--view729b7-teal) 100%);
  color: #062430;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 229, 255, 0.4);
  border: 3px solid #1a2630;
  margin-bottom: 2px;
}

.view729b7-bottom-raised .view729b7-raised-ico svg { width: 22px; height: 22px; }

.view729b7-bottom-raised:hover { color: var(--view729b7-text); }

/* ===== Utility ===== */
.view729b7-hide { display: none !important; }

.view729b7-mt { margin-top: 10px; }

/* ===== Responsive tweaks within mobile canvas ===== */
@media (min-width: 360px) {
  .view729b7-h1 { font-size: 26px; }
  .view729b7-h2 { font-size: 20px; }
}

@media (min-width: 400px) {
  .view729b7-grid { gap: 10px; }
  .view729b7-game-name { font-size: 11.5px; }
}

/* Keep dense game grid readable; never collapse to single column */
@media (max-width: 359px) {
  .view729b7-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .view729b7-game-name { font-size: 10.5px; min-height: 26px; }
  .view729b7-feature-row,
  .view729b7-cat-grid,
  .view729b7-extended-grid { grid-template-columns: 1fr; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .view729b7-carousel-track { transition: none; }
  .view729b7-game-tile:hover { transform: none; }
}

/* ===== Help page patterns ===== */
.view729b7-help-intro {
  padding: 24px 14px 8px;
  border-bottom: 1px solid var(--view729b7-border-soft);
}

.view729b7-answer {
  margin: 0 14px 14px;
  padding: 14px 16px;
  border-left: 4px solid var(--view729b7-cyan);
  background: rgba(0, 229, 255, 0.08);
  color: #e8fbff;
  font-size: 14px;
}

.view729b7-timeline {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  counter-reset: help-step;
}

.view729b7-timeline li {
  counter-increment: help-step;
  position: relative;
  margin: 0 0 10px;
  padding: 12px 12px 12px 48px;
  border-left: 1px solid var(--view729b7-border);
  background: rgba(54, 69, 79, 0.72);
}

.view729b7-timeline li::before {
  content: counter(help-step, decimal-leading-zero);
  position: absolute;
  left: -16px;
  top: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--view729b7-teal);
  color: var(--view729b7-text);
  font-size: 11px;
  font-weight: 800;
}

.view729b7-note-row {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.view729b7-note {
  padding: 11px 12px;
  border-top: 2px solid var(--view729b7-teal);
  background: var(--view729b7-surface-2);
}

.view729b7-note strong { color: var(--view729b7-cyan); }

.view729b7-faq-list { margin: 12px 0 0; }

.view729b7-faq-list details {
  margin-bottom: 8px;
  border: 1px solid var(--view729b7-border-soft);
  background: rgba(47, 62, 74, 0.78);
}

.view729b7-faq-list summary {
  min-height: 44px;
  padding: 11px 12px;
  cursor: pointer;
  color: var(--view729b7-text);
  font-weight: 700;
}

.view729b7-faq-list details p {
  padding: 0 12px 12px;
  color: #d3e0e6;
}

.view729b7-signal-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.view729b7-signal {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid var(--view729b7-border-soft);
}

.view729b7-signal-label {
  color: var(--view729b7-cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.view729b7-quote {
  margin: 12px 0;
  padding: 12px 14px;
  background: #243240;
  border-left: 3px solid var(--view729b7-teal);
  color: #d3e0e6;
}

@media (min-width: 380px) {
  .view729b7-note-row { grid-template-columns: repeat(2, 1fr); }
}
