/* ============================================================
 * color-game.cyou - theme-eb37.css
 * Mobile-first (320-430px) color game website theme.
 * Palette: #F5DEB3 (wheat/light) | #CD853F (peru/brand)
 *          #212F3D (dark slate background)
 * All custom classes use the pgeb- prefix.
 * ============================================================ */

:root {
  --pgeb-bg: #212F3D;
  --pgeb-bg-2: #1b2733;
  --pgeb-bg-3: #2a3a4c;
  --pgeb-text: #F5DEB3;
  --pgeb-text-strong: #fff6e0;
  --pgeb-brand: #CD853F;
  --pgeb-brand-2: #e0a352;
  --pgeb-brand-soft: rgba(205, 133, 63, 0.16);
  --pgeb-line: rgba(245, 222, 179, 0.16);
  --pgeb-line-strong: rgba(245, 222, 179, 0.32);
  --pgeb-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  --pgeb-radius: 14px;
  --pgeb-radius-lg: 18px;
  --pgeb-max: 460px;
  --pgeb-header-h: 60px;
  --pgeb-bottom-h: 74px;
  --pgeb-safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ---------------- Reset ---------------- */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(205, 133, 63, 0.18);
}
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--pgeb-bg);
  color: var(--pgeb-text);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--pgeb-brand-2); text-decoration: none; }
a:hover, a:focus { color: var(--pgeb-text-strong); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { color: var(--pgeb-text-strong); margin: 0 0 0.5em; line-height: 1.3; }
h1 { font-size: 1.55rem; }
h2 { font-size: 1.22rem; }
h3 { font-size: 1.04rem; }
p { margin: 0 0 0.85em; }

/* ---------------- Shell ---------------- */
.pgeb-shell {
  max-width: var(--pgeb-max);
  margin: 0 auto;
  background: linear-gradient(180deg, #263646 0%, var(--pgeb-bg) 22%, var(--pgeb-bg) 100%);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.45);
}

.pgeb-main {
  padding: calc(var(--pgeb-header-h) + 8px) 14px calc(var(--pgeb-bottom-h) + var(--pgeb-safe-bottom) + 36px);
}

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

/* ---------------- Header ---------------- */
.pgeb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--pgeb-header-h);
  background: linear-gradient(90deg, #1c2836 0%, #28384a 100%);
  border-bottom: 1px solid var(--pgeb-line);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}
.pgeb-header-inner {
  max-width: var(--pgeb-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
}
.pgeb-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.pgeb-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--pgeb-line-strong);
  background: var(--pgeb-bg-2);
  object-fit: cover;
  flex-shrink: 0;
}
.pgeb-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.pgeb-brand-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--pgeb-text-strong);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pgeb-brand-tag {
  font-size: 0.66rem;
  color: var(--pgeb-brand-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.pgeb-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pgeb-btn {
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 9px 16px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.18s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pgeb-btn-login {
  background: transparent;
  color: var(--pgeb-text);
  border: 1px solid var(--pgeb-line-strong);
}
.pgeb-btn-register {
  background: linear-gradient(135deg, var(--pgeb-brand) 0%, var(--pgeb-brand-2) 100%);
  color: #1c2733;
  box-shadow: 0 6px 16px rgba(205, 133, 63, 0.35);
}
.pgeb-btn:active { transform: translateY(1px); }

.pgeb-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--pgeb-bg-3);
  border: 1px solid var(--pgeb-line);
  color: var(--pgeb-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.12s ease;
}
.pgeb-icon-btn:active { transform: translateY(1px); }
.pgeb-icon-btn svg { width: 20px; height: 20px; }

/* ---------------- Slide menu ---------------- */
.pgeb-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 22, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease;
  z-index: 70;
}
.pgeb-menu-backdrop.pgeb-backdrop-show {
  opacity: 1;
  visibility: visible;
}
.pgeb-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 78%;
  max-width: 320px;
  background: var(--pgeb-bg-2);
  border-left: 1px solid var(--pgeb-line);
  z-index: 80;
  transform: translateX(105%);
  transition: transform 0.26s cubic-bezier(0.25, 0.8, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.45);
  padding-top: var(--pgeb-safe-bottom);
}
.pgeb-menu-panel.pgeb-menu-open { transform: translateX(0); }
.pgeb-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--pgeb-line);
}
.pgeb-menu-head h3 { margin: 0; font-size: 1.05rem; }
.pgeb-menu-close {
  background: transparent;
  border: none;
  color: var(--pgeb-text);
  font-size: 1.4rem;
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.pgeb-menu-close:active { background: var(--pgeb-bg-3); }
.pgeb-menu-list {
  list-style: none;
  margin: 0;
  padding: 8px 10px;
  overflow-y: auto;
  flex: 1;
}
.pgeb-menu-list li { margin: 2px 0; }
.pgeb-menu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  color: var(--pgeb-text);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.16s ease;
}
.pgeb-menu-list a:hover, .pgeb-menu-list a:focus { background: var(--pgeb-bg-3); }
.pgeb-menu-list .pgeb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pgeb-brand);
  flex-shrink: 0;
}
.pgeb-menu-foot {
  padding: 14px 16px;
  border-top: 1px solid var(--pgeb-line);
}
.pgeb-menu-cta {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--pgeb-brand) 0%, var(--pgeb-brand-2) 100%);
  color: #1c2733;
  font-weight: 800;
  font-size: 0.98rem;
}

/* ---------------- Hero carousel ---------------- */
.pgeb-hero {
  position: relative;
  margin: 6px 0 14px;
  border-radius: var(--pgeb-radius-lg);
  overflow: hidden;
  background: var(--pgeb-bg-2);
  border: 1px solid var(--pgeb-line);
  box-shadow: var(--pgeb-shadow);
}
.pgeb-hero-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.pgeb-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.pgeb-hero-slide.pgeb-slide-active {
  opacity: 1;
  pointer-events: auto;
}
.pgeb-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pgeb-hero-cta {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: linear-gradient(135deg, var(--pgeb-brand) 0%, var(--pgeb-brand-2) 100%);
  color: #1c2733;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 9px 16px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 6px 16px rgba(205, 133, 63, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pgeb-hero-dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
}
.pgeb-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245, 222, 179, 0.4);
  border: none;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.pgeb-hero-dot.pgeb-dot-active {
  background: var(--pgeb-brand-2);
  transform: scale(1.35);
}

/* ---------------- Promo strip ---------------- */
.pgeb-promo-strip {
  display: flex;
  gap: 8px;
  margin: 0 0 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.pgeb-promo-strip::-webkit-scrollbar { display: none; }
.pgeb-promo-pill {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pgeb-bg-3);
  border: 1px solid var(--pgeb-line);
  color: var(--pgeb-text);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pgeb-promo-pill.pgeb-pill-hot {
  background: linear-gradient(135deg, var(--pgeb-brand) 0%, var(--pgeb-brand-2) 100%);
  color: #1c2733;
  border-color: transparent;
}

/* ---------------- Section heading ---------------- */
.pgeb-section { margin: 22px 0 14px; }
.pgeb-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.pgeb-section-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--pgeb-text-strong);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pgeb-section-title::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--pgeb-brand-2), var(--pgeb-brand));
}
.pgeb-section-link {
  font-size: 0.8rem;
  color: var(--pgeb-brand-2);
  font-weight: 700;
}

/* ---------------- Category quick bar ---------------- */
.pgeb-cat-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 12px;
  padding-bottom: 4px;
}
.pgeb-cat-bar::-webkit-scrollbar { display: none; }
.pgeb-cat-chip {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--pgeb-bg-3);
  border: 1px solid var(--pgeb-line);
  color: var(--pgeb-text);
  font-size: 0.82rem;
  font-weight: 700;
}
.pgeb-cat-chip:active { transform: translateY(1px); }

/* ---------------- Game grid ---------------- */
.pgeb-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (min-width: 360px) {
  .pgeb-game-grid { gap: 10px; }
}
@media (min-width: 400px) {
  .pgeb-game-grid { grid-template-columns: repeat(5, 1fr); }
}
.pgeb-game-card {
  background: var(--pgeb-bg-2);
  border-radius: 12px;
  border: 1px solid var(--pgeb-line);
  overflow: hidden;
  text-align: center;
  transition: transform 0.12s ease, border-color 0.18s ease;
  display: block;
  color: var(--pgeb-text);
}
.pgeb-game-card:hover, .pgeb-game-card:focus {
  border-color: var(--pgeb-brand);
  color: var(--pgeb-text);
}
.pgeb-game-card:active { transform: translateY(1px) scale(0.985); }
.pgeb-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0f1820;
}
.pgeb-game-name {
  font-size: 0.68rem;
  line-height: 1.2;
  padding: 5px 4px 6px;
  font-weight: 600;
  color: var(--pgeb-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 400px) {
  .pgeb-game-name { font-size: 0.72rem; }
}

/* Press feedback */
.pgeb-press { transform: scale(0.96); opacity: 0.92; }

/* ---------------- Info / SEO blocks ---------------- */
.pgeb-info-card {
  background: var(--pgeb-bg-2);
  border-radius: var(--pgeb-radius);
  border: 1px solid var(--pgeb-line);
  padding: 16px;
  margin: 16px 0;
}
.pgeb-info-card h2 { margin-top: 0; }
.pgeb-info-card p { color: var(--pgeb-text); }
.pgeb-info-card a { font-weight: 700; }

.pgeb-feature-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}
.pgeb-feature-list li {
  position: relative;
  padding: 8px 10px 8px 28px;
  background: var(--pgeb-bg-3);
  border-radius: 10px;
  border: 1px solid var(--pgeb-line);
  font-size: 0.88rem;
}
.pgeb-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pgeb-brand-2);
  font-weight: 800;
}

.pgeb-step-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}
.pgeb-step-list li {
  counter-increment: step;
  padding: 10px 12px 10px 42px;
  background: var(--pgeb-bg-3);
  border-radius: 10px;
  border: 1px solid var(--pgeb-line);
  position: relative;
  font-size: 0.88rem;
}
.pgeb-step-list li::before {
  content: counter(step);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--pgeb-brand), var(--pgeb-brand-2));
  color: #1c2733;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Testimonials */
.pgeb-testi-grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.pgeb-testi {
  background: var(--pgeb-bg-3);
  border: 1px solid var(--pgeb-line);
  border-radius: 12px;
  padding: 12px 14px;
}
.pgeb-testi-stars { color: var(--pgeb-brand-2); font-size: 0.84rem; letter-spacing: 2px; }
.pgeb-testi-text { font-size: 0.88rem; margin: 6px 0; }
.pgeb-testi-author { font-size: 0.76rem; color: var(--pgeb-brand-2); font-weight: 700; }

/* Payment row */
.pgeb-pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.pgeb-pay-chip {
  padding: 7px 12px;
  background: var(--pgeb-bg-3);
  border: 1px solid var(--pgeb-line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pgeb-text);
}

/* App download card */
.pgeb-app-card {
  background: linear-gradient(135deg, var(--pgeb-bg-3), var(--pgeb-bg-2));
  border: 1px solid var(--pgeb-line-strong);
  border-radius: var(--pgeb-radius-lg);
  padding: 18px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pgeb-app-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pgeb-app-btn {
  flex: 1;
  min-width: 130px;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pgeb-brand), var(--pgeb-brand-2));
  color: #1c2733;
  font-weight: 800;
  font-size: 0.9rem;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(205, 133, 63, 0.32);
}

/* ---------------- Extended footer (homepage only) ---------------- */
.pgeb-ext-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--pgeb-line);
}
.pgeb-ext-block { margin-bottom: 18px; }
.pgeb-ext-block h3 {
  font-size: 0.98rem;
  color: var(--pgeb-text-strong);
  margin-bottom: 8px;
}
.pgeb-ext-block p { font-size: 0.84rem; color: var(--pgeb-text); }

.pgeb-entry-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 6px;
}
.pgeb-entry-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--pgeb-bg-3);
  border: 1px solid var(--pgeb-line);
  color: var(--pgeb-text);
  font-weight: 700;
  font-size: 0.86rem;
}
.pgeb-entry-list li a:hover { border-color: var(--pgeb-brand); color: var(--pgeb-text-strong); }
.pgeb-entry-list .pgeb-entry-arrow {
  margin-left: auto;
  color: var(--pgeb-brand-2);
}

.pgeb-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}
.pgeb-directory a {
  padding: 8px 10px;
  background: var(--pgeb-bg-3);
  border: 1px solid var(--pgeb-line);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--pgeb-text);
  font-weight: 600;
}
.pgeb-directory a:hover { color: var(--pgeb-text-strong); border-color: var(--pgeb-brand); }

.pgeb-disclaimer {
  background: rgba(205, 133, 63, 0.08);
  border: 1px solid var(--pgeb-line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.76rem;
  color: var(--pgeb-text);
  line-height: 1.55;
  margin-top: 14px;
}

/* ---------------- Footer ---------------- */
.pgeb-footer {
  border-top: 1px solid var(--pgeb-line);
  padding: 18px 14px calc(14px + var(--pgeb-safe-bottom));
  text-align: center;
  background: var(--pgeb-bg-2);
}
.pgeb-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-bottom: 10px;
  font-size: 0.78rem;
}
.pgeb-footer-links a { color: var(--pgeb-text); }
.pgeb-footer-copy {
  font-size: 0.74rem;
  color: rgba(245, 222, 179, 0.6);
}

/* ---------------- Bottom nav (raised central) ---------------- */
.pgeb-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 65;
  background: linear-gradient(180deg, #1d2b3a 0%, #16202c 100%);
  border-top: 1px solid var(--pgeb-line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  padding-bottom: var(--pgeb-safe-bottom);
}
.pgeb-bottom-nav-inner {
  max-width: var(--pgeb-max);
  margin: 0 auto;
  height: calc(var(--pgeb-bottom-h) - var(--pgeb-safe-bottom));
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 6px 6px 0;
  position: relative;
}
.pgeb-nav-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--pgeb-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  padding: 4px 2px 6px;
  position: relative;
  font-size: 0.66rem;
  font-weight: 700;
  border-radius: 12px;
  transition: transform 0.16s ease, color 0.18s ease;
}
.pgeb-nav-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.18s ease;
}
.pgeb-nav-btn:active { transform: translateY(1px); }
.pgeb-nav-btn.pgeb-nav-active {
  color: var(--pgeb-brand-2);
  transform: translateY(-6px);
}
.pgeb-nav-active svg { transform: scale(1.08); }
.pgeb-nav-active::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pgeb-brand), var(--pgeb-brand-2));
}

/* Central raised promo button */
.pgeb-nav-center {
  flex: 1;
  background: none;
  border: none;
  color: #1c2733;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 2px;
  font-size: 0.64rem;
  font-weight: 800;
  position: relative;
}
.pgeb-nav-center-orb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pgeb-brand) 0%, var(--pgeb-brand-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -22px;
  box-shadow: 0 8px 20px rgba(205, 133, 63, 0.5), 0 0 0 4px rgba(205, 133, 63, 0.18);
  transition: transform 0.16s ease;
  border: 3px solid #1d2b3a;
}
.pgeb-nav-center-orb svg { width: 26px; height: 26px; color: #1c2733; }
.pgeb-nav-center:active .pgeb-nav-center-orb { transform: scale(0.92); }

/* ---------------- Help page additions ---------------- */
.pgeb-help-hero { margin-bottom: 18px; }
.pgeb-trouble-grid { display: grid; gap: 9px; margin-top: 10px; }
.pgeb-trouble-item { background: var(--pgeb-bg-3); border: 1px solid var(--pgeb-line); border-radius: 11px; padding: 11px 12px; }
.pgeb-trouble-item h3 { color: var(--pgeb-text-strong); font-size: 0.92rem; margin-bottom: 4px; }
.pgeb-trouble-item p { font-size: 0.84rem; margin: 0; }
.pgeb-faq-list { display: grid; gap: 8px; margin-top: 10px; }
.pgeb-faq-list details { background: var(--pgeb-bg-3); border: 1px solid var(--pgeb-line); border-radius: 10px; padding: 10px 12px; }
.pgeb-faq-list summary { cursor: pointer; color: var(--pgeb-text-strong); font-size: 0.88rem; font-weight: 800; min-height: 24px; }
.pgeb-faq-list details p { font-size: 0.84rem; margin: 8px 0 0; }
.pgeb-inline-note { font-size: 0.84rem; background: rgba(205, 133, 63, 0.08); border-left: 3px solid var(--pgeb-brand); padding: 8px 10px; }
.pgeb-inline-note a { font-weight: 800; }
.pgeb-info-card > .pgeb-app-btn, .pgeb-info-card > .pgeb-promo-pill { min-height: 44px; }

/* ---------------- Helpers ---------------- */
.pgeb-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;
}
.pgeb-hide { display: none !important; }

/* Keep mobile canvas on wider screens */
@media (min-width: 480px) {
  body { background: #0d141c; }
  .pgeb-shell { border-left: 1px solid var(--pgeb-line); border-right: 1px solid var(--pgeb-line); }
}
