/* ==========================================================
   GG Perya — Core Base Stylesheet (mobile-first)
   Class prefix: g434-
   Palette: #FFD700 (gold) | #B0E0E6 (powder blue) | #1A1A1A (near black)
            #48D1CC (turquoise) | #0000CD (deep blue)
   Canvas: 320–430px mobile, kept centered on wider screens.
   ========================================================== */

/* ---------- Design tokens ---------- */
:root {
  --g434-gold: #FFD700;
  --g434-powder: #B0E0E6;
  --g434-night: #1A1A1A;
  --g434-turquoise: #48D1CC;
  --g434-deep: #0000CD;
  --g434-ink: #0c1228;
  --g434-ink-2: #111a3a;
  --g434-card: #182149;
  --g434-card-2: #1f2a5e;
  --g434-line: rgba(176, 224, 230, 0.18);
  --g434-text: #f4f7ff;
  --g434-muted: #aab6e0;
  --g434-glow: rgba(255, 215, 0, 0.55);
  --g434-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  --g434-radius: 14px;
  --g434-radius-sm: 10px;
  --g434-header-h: 60px;
  --g434-bottomnav-h: 70px;
  --g434-safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--g434-ink);
  color: var(--g434-text);
  font-family: "Segoe UI", "Helvetica Neue", Roboto, system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; display: block; }
a { color: var(--g434-gold); text-decoration: none; }
a:focus-visible { outline: 2px solid var(--g434-turquoise); outline-offset: 2px; border-radius: 4px; }
button { font-family: inherit; }

/* Centered phone canvas on wide screens. */
body {
  background:
    radial-gradient(900px 600px at 50% -8%, rgba(0, 0, 205, 0.35), transparent 70%),
    radial-gradient(700px 500px at 110% 20%, rgba(72, 209, 204, 0.18), transparent 70%),
    var(--g434-ink);
  min-height: 100vh;
}

.g434-shell {
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0b1230 0%, #0c1432 40%, #0a1028 100%);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
}

/* ---------- Top tabbed header bar ---------- */
.g434-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--g434-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(180deg, rgba(12, 18, 40, 0.98), rgba(12, 18, 40, 0.88));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--g434-line);
}
.g434-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.g434-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--g434-card);
  border: 1px solid var(--g434-gold);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.15);
  flex-shrink: 0;
}
.g434-brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.g434-brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--g434-gold);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.g434-brand-tag {
  font-size: 10.5px;
  color: var(--g434-turquoise);
  font-weight: 600;
  white-space: nowrap;
}

.g434-header-actions { display: flex; align-items: center; gap: 6px; }
.g434-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.g434-btn:active { transform: translateY(1px) scale(0.97); }
.g434-btn-register {
  background: linear-gradient(135deg, #FFD700, #ffb400);
  color: #1a1a1a;
  box-shadow: 0 6px 16px rgba(255, 180, 0, 0.35);
}
.g434-btn-login {
  background: transparent;
  color: var(--g434-powder);
  border: 1px solid var(--g434-turquoise);
}
.g434-btn-login:active { background: rgba(72, 209, 204, 0.12); }

.g434-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(72, 209, 204, 0.12);
  border: 1px solid var(--g434-line);
  color: var(--g434-powder);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.g434-icon-btn:active { transform: scale(0.94); background: rgba(72, 209, 204, 0.22); }
.g434-icon-btn svg { width: 20px; height: 20px; display: block; }

/* ---------- Slide-up route panel ---------- */
.g434-route-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 22, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 60;
}
.g434-route-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #131c46, #0c1432);
  border-top: 2px solid var(--g434-gold);
  border-radius: 22px 22px 0 0;
  padding: 14px 16px calc(20px + var(--g434-safe-bottom));
  z-index: 70;
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  max-height: 78vh;
  overflow-y: auto;
}
.g434-route-panel-open .g434-route-panel { transform: translateY(0); }
.g434-route-handle {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: rgba(176, 224, 230, 0.35);
  margin: 2px auto 10px;
}
.g434-route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.g434-route-title { font-size: 15px; font-weight: 800; color: var(--g434-gold); }
.g434-route-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--g434-text);
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.g434-route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.g434-route-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--g434-radius-sm);
  background: var(--g434-card);
  border: 1px solid var(--g434-line);
  color: var(--g434-text);
  font-size: 13.5px;
  font-weight: 600;
  min-height: 44px;
}
.g434-route-item:active { background: var(--g434-card-2); }
.g434-route-item .g434-route-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--g434-turquoise);
  flex-shrink: 0;
}
.g434-route-item span { color: var(--g434-gold); }

/* ---------- Main ---------- */
.g434-main { padding: 14px 12px 20px; }
.g434-main:focus-visible { outline: none; }

/* ---------- Hero carousel ---------- */
.g434-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--g434-shadow);
  border: 1px solid var(--g434-line);
  background: var(--g434-card);
}
.g434-hero-track {
  display: flex;
  transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.g434-hero-slide {
  min-width: 100%;
  position: relative;
  display: block;
  cursor: pointer;
}
.g434-hero-slide img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  display: block;
}
.g434-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 40, 0) 35%, rgba(10, 16, 40, 0.82) 100%);
}
.g434-hero-caption {
  position: absolute;
  left: 14px;
  right: 90px;
  bottom: 14px;
  color: #fff;
}
.g434-hero-title { font-size: 17px; font-weight: 800; margin: 0 0 4px; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); }
.g434-hero-sub { font-size: 12px; color: var(--g434-powder); margin: 0; }
.g434-hero-cta {
  position: absolute;
  right: 12px;
  bottom: 14px;
  background: linear-gradient(135deg, #FFD700, #ffb400);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 180, 0, 0.4);
}
.g434-hero-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.g434-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.g434-dot-active { width: 20px; background: var(--g434-gold); }

/* ---------- Section heading ---------- */
.g434-section { margin-top: 22px; }
.g434-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px 10px;
}
.g434-section-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--g434-text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.g434-section-title::before {
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--g434-gold), var(--g434-deep));
}
.g434-section-link { font-size: 12px; color: var(--g434-turquoise); font-weight: 600; }

/* ---------- Game grid ---------- */
.g434-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.g434-game-card {
  background: var(--g434-card);
  border: 1px solid var(--g434-line);
  border-radius: var(--g434-radius-sm);
  padding: 6px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.g434-game-card:active {
  transform: translateY(2px) scale(0.96);
  border-color: var(--g434-gold);
  box-shadow: 0 6px 14px rgba(255, 215, 0, 0.2);
}
.g434-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #0a1230;
  border: 1px solid rgba(176, 224, 230, 0.1);
}
.g434-game-name {
  font-size: 11px;
  color: var(--g434-text);
  font-weight: 600;
  line-height: 1.25;
  height: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
}

/* On slightly wider phones, allow 5 columns for dense grids. */
@media (min-width: 375px) {
  .g434-game-grid-dense { grid-template-columns: repeat(5, 1fr); }
  .g434-game-name { font-size: 11.5px; }
}

/* ---------- Feature / highlight tiles ---------- */
.g434-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.g434-tile {
  background: linear-gradient(140deg, var(--g434-card), var(--g434-card-2));
  border: 1px solid var(--g434-line);
  border-radius: var(--g434-radius);
  padding: 14px;
  color: var(--g434-text);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
}
.g434-tile-icon { width: 30px; height: 30px; color: var(--g434-gold); }
.g434-tile-icon svg { width: 100%; height: 100%; display: block; }
.g434-tile h3 { margin: 0; font-size: 14px; color: var(--g434-gold); }
.g434-tile p { margin: 0; font-size: 12.5px; color: var(--g434-muted); line-height: 1.45; }

/* ---------- Promo strip ---------- */
.g434-promo-strip {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.g434-promo-strip::-webkit-scrollbar { display: none; }
.g434-promo-chip {
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.16), rgba(72, 209, 204, 0.12));
  border: 1px solid var(--g434-gold);
  color: var(--g434-gold);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.g434-promo-chip:active { transform: scale(0.96); }

/* ---------- Content prose ---------- */
.g434-prose {
  background: var(--g434-card);
  border: 1px solid var(--g434-line);
  border-radius: var(--g434-radius);
  padding: 16px;
  margin-top: 14px;
}
.g434-prose h2 {
  font-size: 17px;
  color: var(--g434-gold);
  margin: 0 0 8px;
  font-weight: 800;
}
.g434-prose h3 {
  font-size: 14px;
  color: var(--g434-turquoise);
  margin: 14px 0 6px;
  font-weight: 700;
}
.g434-prose p {
  margin: 0 0 10px;
  color: var(--g434-text);
  font-size: 13.5px;
  line-height: 1.65;
}
.g434-prose ul { margin: 0 0 10px; padding-left: 18px; }
.g434-prose li { font-size: 13.5px; color: var(--g434-muted); margin-bottom: 4px; }
.g434-prose a { color: var(--g434-gold); border-bottom: 1px dashed rgba(255, 215, 0, 0.4); }

/* ---------- Testimonials ---------- */
.g434-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.g434-review {
  background: var(--g434-card);
  border: 1px solid var(--g434-line);
  border-radius: var(--g434-radius-sm);
  padding: 12px;
}
.g434-review-stars { color: var(--g434-gold); font-size: 12px; letter-spacing: 1px; }
.g434-review p { margin: 6px 0 8px; font-size: 12.5px; color: var(--g434-text); line-height: 1.5; }
.g434-review-author { font-size: 11.5px; color: var(--g434-turquoise); font-weight: 700; }

/* ---------- Steps list ---------- */
.g434-steps {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: g434step;
}
.g434-steps li {
  counter-increment: g434step;
  position: relative;
  padding: 10px 12px 10px 44px;
  background: var(--g434-card);
  border: 1px solid var(--g434-line);
  border-radius: var(--g434-radius-sm);
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--g434-text);
}
.g434-steps li::before {
  content: counter(g434step);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g434-gold), #ffb400);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Extended footer ---------- */
.g434-ext-footer {
  margin-top: 24px;
  padding: 18px 14px 14px;
  background: linear-gradient(180deg, #0e16-39, #0a1129);
  background: linear-gradient(180deg, #0e1639, #0a1129);
  border-top: 1px solid var(--g434-line);
  border-radius: 18px 18px 0 0;
}
.g434-ext-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.g434-ext-brand img { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--g434-gold); }
.g434-ext-brand-text { font-size: 13px; color: var(--g434-muted); line-height: 1.5; }
.g434-ext-brand-text strong { color: var(--g434-gold); font-size: 14px; display: block; margin-bottom: 2px; }

.g434-ext-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.g434-ext-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--g434-card);
  border: 1px solid var(--g434-line);
  border-radius: var(--g434-radius-sm);
  padding: 10px 12px;
  color: var(--g434-text);
  font-size: 12.5px;
  font-weight: 600;
  min-height: 44px;
}
.g434-ext-link:active { background: var(--g434-card-2); }
.g434-ext-link svg { width: 16px; height: 16px; color: var(--g434-turquoise); flex-shrink: 0; }
.g434-ext-link.is-promo { border-color: var(--g434-gold); color: var(--g434-gold); }
.g434-ext-link.is-promo svg { color: var(--g434-gold); }

.g434-ext-disclaimer {
  font-size: 11px;
  color: var(--g434-muted);
  line-height: 1.55;
  padding: 10px 12px;
  background: rgba(0, 0, 205, 0.12);
  border-left: 3px solid var(--g434-deep);
  border-radius: 6px;
}

/* ---------- Footer (copyright only) ---------- */
.g434-footer {
  text-align: center;
  padding: 14px 12px calc(var(--g434-bottomnav-h) + 16px + var(--g434-safe-bottom));
  font-size: 11.5px;
  color: var(--g434-muted);
  border-top: 1px solid var(--g434-line);
  background: #080d22;
}
.g434-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 12px; margin-bottom: 8px; }
.g434-footer-links a { color: var(--g434-turquoise); font-size: 11.5px; }

/* ---------- Bottom navigation (center-raised) ---------- */
.g434-bottomnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 430px;
  margin: 0 auto;
  height: calc(var(--g434-bottomnav-h) + var(--g434-safe-bottom));
  padding-bottom: var(--g434-safe-bottom);
  background: linear-gradient(180deg, rgba(14, 22, 57, 0.98), rgba(8, 13, 34, 0.98));
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--g434-line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 45;
  position: relative;
}
.g434-bottomnav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.g434-bottomnav {
  position: fixed;
}
.g434-bottomnav-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  height: var(--g434-bottomnav-h);
}
.g434-bottomnav-indicator {
  position: absolute;
  bottom: 6px;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--g434-gold), var(--g434-turquoise));
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.32s ease;
  pointer-events: none;
}
.g434-bottomnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  height: 100%;
  padding: 8px 2px 8px;
  color: var(--g434-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  min-width: 0;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}
.g434-bottomnav-item svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  transition: fill 0.2s ease, stroke 0.2s ease, transform 0.2s ease;
}
.g434-bottomnav-item:active { transform: translateY(-1px); }
.g434-bottomnav-item.g434-nav-current { color: var(--g434-gold); }
.g434-bottomnav-item.g434-nav-current svg {
  fill: rgba(255, 215, 0, 0.25);
  stroke: var(--g434-gold);
  transform: translateY(-2px);
}

/* Center raised CTA */
.g434-bottomnav-item.g434-nav-raised {
  transform: translateY(-14px);
  color: var(--g434-gold);
}
.g434-bottomnav-item.g434-nav-raised svg {
  width: 30px;
  height: 30px;
  padding: 4px;
  background: linear-gradient(135deg, #FFD700, #ffb400);
  stroke: #1a1a1a;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(255, 180, 0, 0.45);
  border: 2px solid #1a1a1a;
}
.g434-bottomnav-item.g434-nav-raised:active { transform: translateY(-10px) scale(0.96); }
.g434-bottomnav-item.g434-nav-raised .g434-bottomnav-label { color: var(--g434-gold); font-weight: 800; }

.g434-bottomnav-label { font-size: 10px; line-height: 1; letter-spacing: 0.2px; }

/* ---------- Utility ---------- */
.g434-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.g434-clearfix::after { content: ""; display: table; clear: both; }

/* Bottom padding so the fixed nav never covers content. */
.g434-main { padding-bottom: calc(var(--g434-bottomnav-h) + 18px + var(--g434-safe-bottom)); }

/* ---------- Part1 help-page extensions ---------- */
.g434-help-hero { padding: 18px 16px; border: 1px solid var(--g434-line); border-left: 4px solid var(--g434-gold); background: linear-gradient(145deg, rgba(31,42,94,.96), rgba(17,26,58,.96)); border-radius: var(--g434-radius); box-shadow: var(--g434-shadow); }
.g434-help-hero h1 { margin: 0 0 8px; color: var(--g434-gold); font-size: 24px; line-height: 1.15; letter-spacing: -.2px; }
.g434-help-hero p { margin: 0; color: var(--g434-powder); font-size: 14px; }
.g434-answer-line { margin: 14px 0 0; padding: 12px 13px; border: 1px solid rgba(72,209,204,.35); border-radius: var(--g434-radius-sm); background: rgba(72,209,204,.08); color: var(--g434-text); font-size: 13.5px; }
.g434-help-section { margin-top: 16px; }
.g434-help-section h2 { margin: 0 0 8px; padding: 0 0 7px; border-bottom: 1px solid var(--g434-line); color: var(--g434-gold); font-size: 18px; line-height: 1.25; }
.g434-help-section > p { margin: 0 0 10px; color: var(--g434-text); font-size: 13.5px; line-height: 1.65; }
.g434-help-section h3 { margin: 13px 0 6px; color: var(--g434-turquoise); font-size: 14px; }
.g434-faq-list { display: grid; gap: 8px; margin: 0; }
.g434-faq-item { margin: 0; padding: 12px 13px; border: 1px solid var(--g434-line); border-radius: var(--g434-radius-sm); background: rgba(24,33,73,.82); }
.g434-faq-item dt { color: var(--g434-gold); font-weight: 800; font-size: 13.5px; }
.g434-faq-item dd { margin: 6px 0 0; color: var(--g434-text); font-size: 13px; line-height: 1.58; }
.g434-callout { margin: 12px 0; padding: 12px 13px; border: 1px solid var(--g434-deep); border-radius: var(--g434-radius-sm); background: rgba(0,0,205,.15); color: var(--g434-muted); font-size: 13px; line-height: 1.6; }
.g434-checklist { margin: 8px 0 0; padding: 0; list-style: none; }
.g434-checklist li { position: relative; padding: 9px 10px 9px 28px; margin-bottom: 7px; border-bottom: 1px solid var(--g434-line); color: var(--g434-text); font-size: 13px; }
.g434-checklist li::before { content: "✓"; position: absolute; left: 3px; color: var(--g434-turquoise); font-weight: 900; }
.g434-compare { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 12.5px; }
.g434-compare th, .g434-compare td { padding: 9px 7px; border: 1px solid var(--g434-line); text-align: left; vertical-align: top; }
.g434-compare th { color: var(--g434-gold); background: rgba(255,215,0,.08); }
.g434-compare td { color: var(--g434-text); }
.g434-action-rail { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin: 14px 0; }
.g434-action { display: flex; min-height: 46px; align-items: center; justify-content: center; padding: 8px 10px; border: 1px solid var(--g434-gold); border-radius: var(--g434-radius-sm); background: linear-gradient(135deg, rgba(255,215,0,.2), rgba(72,209,204,.08)); color: var(--g434-gold); font-size: 12.5px; font-weight: 800; text-align: center; }
.g434-action:active { transform: translateY(1px); }
.g434-tip-number { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: start; padding: 12px 0; border-bottom: 1px solid var(--g434-line); }
.g434-tip-number:last-child { border-bottom: 0; }
.g434-tip-index { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--g434-gold); color: var(--g434-night); font-weight: 900; }
.g434-tip-number h3 { margin: 0 0 3px; color: var(--g434-turquoise); font-size: 14px; }
.g434-tip-number p { margin: 0; color: var(--g434-text); font-size: 13px; line-height: 1.58; }
@media (min-width: 375px) { .g434-help-hero { padding: 20px; } .g434-help-hero h1 { font-size: 25px; } }

