/* ==========================================================================
   gperya app - core stylesheet
   Prefix : we9d4-  (classes + CSS variables)
   Canvas : 320-430px mobile-first; centered on wider screens.
   Palette: #FFCCCB accent | #1A1A2E base | #BDC3C7 / #D3D3D3 / #A9A9A9 text
   Comments in English only.
   ========================================================================== */

:root {
  --we9d4-base: #1A1A2E;
  --we9d4-base-700: #15152a;
  --we9d4-base-800: #11111f;
  --we9d4-base-600: #232342;
  --we9d4-accent: #FFCCCB;
  --we9d4-accent-strong: #ff8f8f;
  --we9d4-text: #BDC3C7;
  --we9d4-text-soft: #D3D3D3;
  --we9d4-text-mute: #A9A9A9;
  --we9d4-line: rgba(189, 195, 199, 0.14);
  --we9d4-line-strong: rgba(255, 204, 203, 0.35);
  --we9d4-glow: 0 0 14px rgba(255, 204, 203, 0.45);
  --we9d4-radius: 14px;
  --we9d4-radius-sm: 10px;
  --we9d4-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  --we9d4-max: 440px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--we9d4-base);
  color: var(--we9d4-text-soft);
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0.2px;
  /* Bottom nav clearance */
  padding-bottom: 78px;
}

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

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

h1, h2, h3, h4 { color: #fff; font-weight: 700; line-height: 1.25; margin: 0 0 10px; }
h1 { font-size: 22px; letter-spacing: 0.3px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }
p { margin: 0 0 12px; color: var(--we9d4-text); }

/* App frame: keep mobile canvas centered on wider screens */
.we9d4-shell {
  max-width: var(--we9d4-max);
  margin: 0 auto;
  background: var(--we9d4-base);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.55);
}

/* ============================ HEADER ==================================== */
.we9d4-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, #1c1c36 0%, #15152a 100%);
  border-bottom: 1px solid var(--we9d4-line);
  padding: 8px 12px;
}

.we9d4-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.we9d4-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
  padding: 2px;
  box-shadow: var(--we9d4-glow);
  flex-shrink: 0;
}

.we9d4-brand-name {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.we9d4-brand-name b {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.we9d4-brand-name span {
  font-size: 10px;
  color: var(--we9d4-accent);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.we9d4-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.we9d4-btn {
  border: 0;
  border-radius: var(--we9d4-radius-sm);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 12px;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.we9d4-btn-primary {
  background: linear-gradient(135deg, #FFCCCB 0%, #ff8f8f 100%);
  color: #1A1A2E;
  box-shadow: var(--we9d4-glow);
}

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

.we9d4-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--we9d4-line-strong);
}

.we9d4-btn-ghost:active { background: rgba(255, 204, 203, 0.08); }

.we9d4-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--we9d4-line);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.we9d4-icon-btn svg { width: 18px; height: 18px; }

/* Compact route panel */
.we9d4-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 70;
}

.we9d4-menu-backdrop-on { opacity: 1; pointer-events: auto; }

.we9d4-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 82%;
  height: 100%;
  background: #14142a;
  border-left: 1px solid var(--we9d4-line);
  transform: translateX(105%);
  transition: transform 0.26s ease;
  z-index: 80;
  padding: 18px 16px 24px;
  overflow-y: auto;
}

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

.we9d4-menu-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--we9d4-accent);
  margin: 14px 4px 8px;
}

.we9d4-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--we9d4-text-soft);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
}

.we9d4-menu-link:active { background: rgba(255, 204, 203, 0.07); border-color: var(--we9d4-line); }

.we9d4-menu-link svg { width: 16px; height: 16px; color: var(--we9d4-accent); }

.we9d4-menu-cta {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ============================ HERO ==================================== */
.we9d4-hero {
  position: relative;
  margin: 12px 12px 4px;
  border-radius: 16px;
  overflow: hidden;
  background: #0e0e1c;
  box-shadow: var(--we9d4-shadow);
}

.we9d4-hero-track { position: relative; height: 200px; }

.we9d4-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity var(--we9d4-carousel-transition, 480ms) ease,
              transform 600ms ease;
  cursor: pointer;
}

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

.we9d4-hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,20,0) 35%, rgba(10,10,20,0.78) 100%);
}

.we9d4-hero-slide-active { opacity: 1; transform: scale(1); }

.we9d4-hero-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
}

.we9d4-hero-caption b {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.we9d4-hero-caption span {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--we9d4-accent);
  letter-spacing: 0.4px;
}

.we9d4-hero-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 3;
}

.we9d4-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.we9d4-hero-dot-active {
  background: var(--we9d4-accent);
  box-shadow: var(--we9d4-glow);
  width: 18px;
  border-radius: 4px;
}

/* ===================== CATEGORY STRIP / SECTION ======================= */
.we9d4-section {
  margin: 18px 12px 0;
}

.we9d4-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.we9d4-section-head h2 {
  margin: 0;
  position: relative;
  padding-left: 12px;
}

.we9d4-section-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--we9d4-accent) 0%, var(--we9d4-accent-strong) 100%);
}

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

.we9d4-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.we9d4-chips::-webkit-scrollbar { display: none; }

.we9d4-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--we9d4-line);
  color: var(--we9d4-text-soft);
  cursor: pointer;
}

.we9d4-chip:active {
  background: rgba(255, 204, 203, 0.12);
  border-color: var(--we9d4-line-strong);
}

/* ============================ GAME GRID ================================ */
.we9d4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (min-width: 360px) {
  .we9d4-grid { gap: 10px; }
}

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

.we9d4-game {
  display: block;
  background: var(--we9d4-base-600);
  border: 1px solid var(--we9d4-line);
  border-radius: var(--we9d4-radius-sm);
  padding: 5px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.we9d4-game:hover, .we9d4-game:active {
  transform: translateY(-2px);
  border-color: var(--we9d4-line-strong);
  box-shadow: var(--we9d4-glow);
}

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

.we9d4-game-name {
  margin-top: 5px;
  font-size: 10.5px;
  color: var(--we9d4-text-soft);
  font-weight: 600;
  line-height: 1.2;
  min-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.we9d4-game-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: var(--we9d4-accent);
  color: var(--we9d4-base);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 2px 5px;
  border-radius: 5px;
  text-transform: uppercase;
}

/* ============================ INFO CARDS ============================== */
.we9d4-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.we9d4-card {
  background: var(--we9d4-base-600);
  border: 1px solid var(--we9d4-line);
  border-radius: var(--we9d4-radius-sm);
  padding: 12px;
}

.we9d4-card h3 {
  margin: 0 0 4px;
  font-size: 13px;
  color: #fff;
}

.we9d4-card p {
  margin: 0;
  font-size: 12px;
  color: var(--we9d4-text);
  line-height: 1.45;
}

.we9d4-winner-card {
  background: linear-gradient(135deg, rgba(255, 204, 203, 0.1), rgba(35, 35, 66, 0.7));
  border: 1px solid var(--we9d4-line-strong);
}

.we9d4-winner-card .we9d4-winner-amount {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--we9d4-accent);
}

.we9d4-winner-pulse {
  animation: we9d4Pulse 0.6s ease;
}

@keyframes we9d4Pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 204, 203, 0.45); }
  100% { box-shadow: 0 0 0 10px rgba(255, 204, 203, 0); }
}

/* ============================ CTA BLOCK ============================== */
.we9d4-cta {
  margin: 22px 12px 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 204, 203, 0.18), transparent 60%),
              linear-gradient(135deg, #20203e 0%, #15152a 100%);
  border: 1px solid var(--we9d4-line-strong);
  border-radius: var(--we9d4-radius);
  padding: 20px 16px;
  text-align: center;
}

.we9d4-cta h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.we9d4-cta p {
  font-size: 13px;
  color: var(--we9d4-text);
  margin-bottom: 14px;
}

.we9d4-cta .we9d4-btn {
  width: 100%;
  padding: 13px;
  font-size: 14px;
}

.we9d4-cta-secondary {
  margin-top: 10px;
  font-size: 12px;
  color: var(--we9d4-text-mute);
}

.we9d4-cta-secondary a { color: var(--we9d4-accent); font-weight: 600; }

/* ============================ FAQ ==================================== */
.we9d4-faq {
  border-top: 1px solid var(--we9d4-line);
}

.we9d4-faq-item {
  border-bottom: 1px solid var(--we9d4-line);
}

.we9d4-faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 14px 4px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.we9d4-faq-question span.we9d4-faq-icon {
  color: var(--we9d4-accent);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.we9d4-faq-open .we9d4-faq-question .we9d4-faq-icon { transform: rotate(45deg); }

.we9d4-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.2s ease;
}

.we9d4-faq-open .we9d4-faq-answer {
  max-height: 320px;
  padding: 0 4px 12px;
}

.we9d4-faq-answer p {
  margin: 0;
  font-size: 13px;
  color: var(--we9d4-text);
  line-height: 1.55;
}

/* ============================ TESTIMONIALS ========================== */
.we9d4-testi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.we9d4-testi blockquote {
  margin: 0;
  background: var(--we9d4-base-600);
  border: 1px solid var(--we9d4-line);
  border-left: 3px solid var(--we9d4-accent);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--we9d4-text-soft);
  font-style: italic;
}

.we9d4-testi cite {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--we9d4-accent);
  font-style: normal;
  font-weight: 700;
}

/* ============================ APP DOWNLOAD ========================== */
.we9d4-app {
  background: var(--we9d4-base-600);
  border: 1px solid var(--we9d4-line);
  border-radius: var(--we9d4-radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.we9d4-app-body h3 { margin-top: 0; }

.we9d4-app-steps {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  counter-reset: step;
}

.we9d4-app-steps li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 12.5px;
  color: var(--we9d4-text);
  counter-increment: step;
}

.we9d4-app-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--we9d4-accent);
  color: var(--we9d4-base);
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================ PROSE ================================== */
.we9d4-prose p { font-size: 13.5px; line-height: 1.65; color: var(--we9d4-text); }

.we9d4-prose h2 { margin-top: 22px; }

.we9d4-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.we9d4-pillar {
  background: var(--we9d4-base-600);
  border: 1px solid var(--we9d4-line);
  border-radius: var(--we9d4-radius-sm);
  padding: 12px;
  text-align: center;
}

.we9d4-pillar b { display: block; color: var(--we9d4-accent); font-size: 16px; }
.we9d4-pillar span { font-size: 11px; color: var(--we9d4-text-mute); text-transform: uppercase; letter-spacing: 0.6px; }

/* ============================ EXTENDED FOOTER ======================= */
.we9d4-ext {
  margin: 26px 12px 0;
  background: var(--we9d4-base-700);
  border: 1px solid var(--we9d4-line);
  border-radius: var(--we9d4-radius);
  padding: 16px;
}

.we9d4-ext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.we9d4-ext h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--we9d4-accent);
  margin-bottom: 8px;
}

.we9d4-ext p {
  font-size: 12px;
  color: var(--we9d4-text);
  line-height: 1.5;
}

.we9d4-ext-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.we9d4-ext-links li { margin-bottom: 6px; }

.we9d4-ext-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--we9d4-text-soft);
}

.we9d4-ext-links a svg { width: 12px; height: 12px; color: var(--we9d4-accent); flex-shrink: 0; }

.we9d4-ext-cta {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.we9d4-ext-cta .we9d4-btn { font-size: 11px; padding: 9px 8px; }

.we9d4-ext-disclaimer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--we9d4-line);
  font-size: 11px;
  color: var(--we9d4-text-mute);
  line-height: 1.55;
}

/* ============================ FOOTER ================================= */
.we9d4-footer {
  margin-top: 22px;
  padding: 16px 16px 22px;
  text-align: center;
  border-top: 1px solid var(--we9d4-line);
  background: var(--we9d4-base-800);
}

.we9d4-footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.we9d4-footer-brand img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #fff;
  padding: 1px;
}

.we9d4-footer-brand b { color: #fff; font-size: 13px; letter-spacing: 0.5px; }

.we9d4-footer-copy {
  font-size: 11px;
  color: var(--we9d4-text-mute);
  letter-spacing: 0.3px;
}

/* ============================ BOTTOM NAV ============================= */
.we9d4-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 75;
  /* Brand accent band */
  background: linear-gradient(180deg, #1c1c36 0%, #11111f 100%);
  border-top: 1px solid var(--we9d4-line-strong);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
}

.we9d4-bottom-inner {
  max-width: var(--we9d4-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 7px 4px 9px;
}

.we9d4-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 2px;
  background: transparent;
  border: 0;
  color: var(--we9d4-text-mute);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}

.we9d4-bottom-btn svg {
  width: 20px;
  height: 20px;
  color: var(--we9d4-text-mute);
  transition: color 0.2s ease, transform 0.2s ease;
}

.we9d4-bottom-btn:active { color: var(--we9d4-accent); }
.we9d4-bottom-btn:active svg { transform: translateY(-1px); }

.we9d4-bottom-btn.is-active { color: var(--we9d4-accent); }
.we9d4-bottom-btn.is-active svg { color: var(--we9d4-accent); filter: drop-shadow(0 0 4px rgba(255, 204, 203, 0.6)); }

.we9d4-bottom-btn.is-active::before {
  content: '';
  position: absolute;
  top: -7px;
  width: 28px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--we9d4-accent);
  box-shadow: var(--we9d4-glow);
}

/* Utility */
.we9d4-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;
}

.we9d4-hide { display: none !important; }

/* Help page patterns: dense reading blocks remain comfortable on narrow screens. */
.we9d4-help-hero {
  margin: 14px 12px 0;
  padding: 18px 16px;
  border-left: 3px solid var(--we9d4-accent);
  background: linear-gradient(135deg, rgba(255, 204, 203, 0.12), rgba(35, 35, 66, 0.7));
  border-radius: 5px 14px 14px 5px;
}
.we9d4-help-hero p { margin-bottom: 0; }
.we9d4-help-list { margin: 0; padding: 0; list-style: none; }
.we9d4-help-list li {
  margin: 8px 0;
  padding: 10px 11px 10px 35px;
  position: relative;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--we9d4-line);
  border-radius: 5px;
  color: var(--we9d4-text);
  font-size: 13px;
}
.we9d4-help-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 10px;
  top: 10px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: var(--we9d4-accent);
  color: var(--we9d4-base);
  font-size: 10px;
  font-weight: 800;
}
.we9d4-help-note {
  margin: 10px 0;
  padding: 11px 12px;
  border: 1px dashed var(--we9d4-line-strong);
  color: var(--we9d4-text-soft);
  font-size: 12.5px;
  border-radius: 5px;
}
.we9d4-help-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.we9d4-help-table th, .we9d4-help-table td { padding: 9px 7px; border-bottom: 1px solid var(--we9d4-line); text-align: left; vertical-align: top; }
.we9d4-help-table th { color: var(--we9d4-accent); font-size: 11px; text-transform: uppercase; letter-spacing: .5px; }
.we9d4-help-qa { display: grid; gap: 9px; }
.we9d4-help-qa article { padding: 11px 12px; background: var(--we9d4-base-600); border: 1px solid var(--we9d4-line); border-radius: 5px; }
.we9d4-help-qa h3 { margin-bottom: 4px; }
.we9d4-help-qa p { margin: 0; font-size: 12.5px; }
.we9d4-help-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.we9d4-help-actions .we9d4-btn { min-height: 44px; }
