/* =========================================================
   Pussy888 MY - Red · Gold accents · Black + grey smoke
   (no glow)
   ========================================================= */

:root {
  --bg-deep: #0a0a0a;
  --bg-card: rgba(18, 18, 18, 0.92);
  --bg-card-solid: #141414;
  --red: #c81e1e;
  --red-bright: #d4212a;
  --red-deep: #8b1515;
  --gold: #c9a227;
  --gold-bright: #d4af37;
  --gold-soft: #c4a35a;
  --cream: #ece8e1;
  --muted: #9a9590;
  --line: rgba(201, 162, 39, 0.28);
  --line-soft: rgba(255, 255, 255, 0.07);
  --smoke: rgba(140, 140, 140, 0.14);
  --smoke-dark: rgba(90, 90, 90, 0.18);
}

/* ----- Page base (flat, no colored glow) ----- */
html {
  background: var(--bg-deep);
}

body.theme-p888 {
  position: relative;
  min-height: 100vh;
  color: var(--cream);
  background: var(--bg-deep);
}

body.theme-p888 > header,
body.theme-p888 > main,
body.theme-p888 > footer {
  position: relative;
  z-index: 1;
}

/* ----- Grey / ash smoke (no color glow) ----- */
.smoke-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform, opacity;
  /* normal blend - grey mist only */
  mix-blend-mode: normal;
}

.smoke-1 {
  width: 50vw;
  height: 50vw;
  min-width: 300px;
  min-height: 300px;
  left: -12%;
  top: 5%;
  background: radial-gradient(circle, rgba(160, 160, 160, 0.22) 0%, rgba(80, 80, 80, 0.1) 45%, transparent 70%);
  animation: smoke-drift-a 24s ease-in-out infinite;
}

.smoke-2 {
  width: 55vw;
  height: 55vw;
  min-width: 340px;
  min-height: 340px;
  right: -15%;
  top: 15%;
  background: radial-gradient(circle, rgba(120, 120, 120, 0.2) 0%, rgba(60, 60, 60, 0.1) 50%, transparent 72%);
  animation: smoke-drift-b 30s ease-in-out infinite;
}

.smoke-3 {
  width: 60vw;
  height: 60vw;
  min-width: 380px;
  min-height: 380px;
  left: 15%;
  bottom: -20%;
  background: radial-gradient(circle, rgba(100, 100, 100, 0.18) 0%, rgba(50, 50, 50, 0.12) 48%, transparent 72%);
  animation: smoke-drift-c 34s ease-in-out infinite;
}

.smoke-4 {
  width: 36vw;
  height: 36vw;
  min-width: 220px;
  min-height: 220px;
  left: 40%;
  top: 38%;
  background: radial-gradient(circle, rgba(180, 180, 180, 0.12) 0%, transparent 68%);
  filter: blur(60px);
  animation: smoke-drift-a 20s ease-in-out infinite reverse;
}

/* Soft ash haze + grain */
.smoke-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, transparent 25%, rgba(10, 10, 10, 0.45) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 1;
}

@keyframes smoke-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  40% { transform: translate(5%, -6%) scale(1.08); opacity: 1; }
  70% { transform: translate(-3%, 4%) scale(0.96); opacity: 0.7; }
}

@keyframes smoke-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
  50% { transform: translate(-6%, 5%) scale(1.1); opacity: 0.95; }
}

@keyframes smoke-drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  33% { transform: translate(4%, -5%) scale(1.06); opacity: 1; }
  66% { transform: translate(-5%, 3%) scale(1.02); opacity: 0.7; }
}

@media (prefers-reduced-motion: reduce) {
  .smoke { animation: none !important; }
}

/* ----- Nav ----- */
.nav-link {
  border-radius: 0.5rem;
  padding: 0.375rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.04);
}
.nav-link-active {
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  padding: 0.75rem 0.5rem;
  font-size: 0.875rem;
  color: var(--cream);
}
.mobile-link:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ----- Cards / panels (flat, no glow) ----- */
.panel {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.panel-inset {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line-soft);
}

.empty-slot {
  color: var(--muted);
  font-style: italic;
}

/* ----- Buttons (solid, no glow) ----- */
.btn-red {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red-deep);
  box-shadow: none;
  transition: background 0.15s;
}
.btn-red:hover {
  background: var(--red-bright);
}

.btn-gold {
  background: var(--gold);
  color: #1a1408;
  font-weight: 700;
  border: 1px solid #a8861c;
  box-shadow: none;
  transition: background 0.15s;
}
.btn-gold:hover {
  background: var(--gold-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--line);
  box-shadow: none;
  transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 162, 39, 0.45);
}

.text-gold {
  color: var(--gold-bright);
}
.text-muted-gold {
  color: var(--muted);
}

/* Phone frames - thin gold ring, no outer glow */
.phone-frame {
  position: relative;
  flex-shrink: 0;
  width: 11.5rem;
  border-radius: 1.35rem;
  background: #121212;
  padding: 0.45rem;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: none;
}
@media (min-width: 640px) {
  .phone-frame {
    width: 13.5rem;
  }
}
.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.05rem;
  background: #0a0a0a;
}
.phone-notch {
  pointer-events: none;
  position: absolute;
  top: 0.55rem;
  left: 50%;
  z-index: 2;
  height: 0.55rem;
  width: 28%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0a0a;
}

.ss-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ss-scroll > * {
  scroll-snap-align: start;
}
.ss-scroll::-webkit-scrollbar {
  height: 6px;
}
.ss-scroll::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 99px;
}

/* Editorial kicker - no capsule/pill */
.meta-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
}
.meta-kicker-bar {
  display: block;
  width: 1.5rem;
  height: 2px;
  flex-shrink: 0;
  background: var(--gold);
}
.meta-kicker-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.meta-kicker-text .dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.8;
}

/* Status flag (scaffold etc.) - corner slash, not pill */
.scaffold-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding: 0.15rem 0 0.15rem 0.55rem;
  background: none;
  border-radius: 0;
}

/* legacy alias if any leftover class */
.badge-gold {
  /* maps to meta-kicker-text look if misused alone */
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

/* Plain markers - no boxes/circles around icons or numbers */
.step-num {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  height: auto;
  width: auto;
  min-width: 1.25rem;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  color: var(--gold-bright);
  font-size: 1.1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}

.icon-tile {
  display: inline-flex;
  height: auto;
  width: auto;
  min-width: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  color: var(--gold-bright);
  padding: 0;
}
.icon-tile svg,
.icon-tile i {
  width: 1.25rem;
  height: 1.25rem;
}

/* Bank tags - square-ish, not capsule */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  border: 1px solid var(--line-soft);
  border-bottom: 2px solid rgba(201, 162, 39, 0.45);
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
}

a.link-gold {
  color: var(--gold-bright);
  font-weight: 600;
}
a.link-gold:hover {
  color: #e0c05a;
  text-decoration: underline;
}

/* ----- Browse help & guides (mobile-first) ----- */
.guide-section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
@media (min-width: 640px) {
  .guide-section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }
}
.guide-section-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.guide-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s;
}
.guide-card:hover,
.guide-card:focus-visible {
  border-color: rgba(201, 162, 39, 0.45);
  outline: none;
}
@media (min-width: 640px) {
  .guide-card {
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-radius: 1rem;
  }
}

.guide-card-icon {
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin-top: 0.15rem;
}

.guide-card-body {
  flex: 1 1 auto;
  min-width: 0; /* prevent flex overflow on mobile */
}

.guide-card-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cream);
  word-break: break-word;
}
.guide-card:hover .guide-card-title,
.guide-card:focus-visible .guide-card-title {
  color: var(--gold-bright);
}

.guide-card-desc {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--muted);
  /* clamp long desc on narrow screens */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card-chevron {
  flex-shrink: 0;
  color: var(--muted);
  opacity: 0.7;
}
@media (min-width: 640px) {
  .guide-card-chevron {
    display: none;
  }
}

/* ----- Article body prose ----- */
.article-body {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.article-body h2 {
  margin: 1.75rem 0 0.65rem;
  color: var(--cream);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}
.article-body p {
  margin: 0 0 0.9rem;
}
.article-body ul,
.article-body ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.article-body li {
  margin: 0.35rem 0;
}
.article-body strong {
  color: var(--cream);
  font-weight: 600;
}
.article-body a {
  color: var(--gold-bright);
  font-weight: 600;
}
.article-body a:hover {
  text-decoration: underline;
}
.article-cta {
  margin-top: 1.75rem;
  padding: 1.1rem 1.15rem;
  border-radius: 0.85rem;
}
.article-cta-title {
  margin: 0 0 0.75rem;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
}
.article-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.article-next {
  line-height: 1.55;
}
.article-next a {
  font-weight: 650;
  white-space: nowrap;
}

/* =========================================================
   APP PORTAL - custom page (unique layout)
   ========================================================= */
.ap-page {
  padding-bottom: 2rem;
}

/* Full-width promo banner - natural image height, no crop */
.ap-banner {
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  background: #0a0a0a;
  line-height: 0; /* kill gap under img */
}
.ap-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
.ap-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.55) 40%, rgba(10, 10, 10, 0.12) 70%, transparent 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.45) 0%, transparent 40%);
  pointer-events: none;
}
.ap-banner-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1rem 1.25rem;
  width: 100%;
  box-sizing: border-box;
  line-height: normal;
}
@media (min-width: 640px) {
  .ap-banner-content {
    justify-content: center;
    padding: 1.5rem 1.5rem;
  }
}
.ap-crumb-on-banner {
  margin-bottom: 0.75rem;
}
.ap-crumb-on-banner a,
.ap-crumb-on-banner span {
  color: rgba(236, 232, 225, 0.75);
}
.ap-crumb-on-banner a:hover {
  color: var(--gold-bright);
}
.ap-crumb-on-banner span:last-child {
  color: var(--cream);
}
.ap-banner-content h1 {
  margin: 0;
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.08;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.ap-banner-lead {
  margin: 0.65rem 0 0;
  max-width: 26rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(236, 232, 225, 0.88);
}
.ap-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.ap-btn-inline {
  width: auto !important;
  min-width: 9rem;
  padding: 0.75rem 1.15rem;
}

.ap-section-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
@media (min-width: 640px) {
  .ap-section-inner {
    padding: 2rem 1.5rem;
  }
}

.ap-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.ap-crumb a {
  color: var(--muted);
}
.ap-crumb a:hover {
  color: var(--gold-bright);
}
.ap-crumb span:last-child {
  color: var(--cream);
}

.ap-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.ap-section {
  border-bottom: 1px solid var(--line-soft);
}
.ap-section-tight .ap-section-inner {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.ap-section-last {
  border-bottom: 0;
}

.ap-section-head {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}
.ap-section-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.ap-section-head p {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.ap-section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: none;
}
.ap-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Dual platform panels */
.ap-platform-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .ap-platform-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.ap-platform {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid var(--line-soft);
  background: rgba(16, 16, 16, 0.9);
  min-width: 0;
}
.ap-platform-android {
  border-top: 3px solid var(--red);
}
.ap-platform-ios {
  border-top: 3px solid var(--gold);
}

.ap-platform-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.ap-platform-top i {
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.ap-platform-top h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}
.ap-platform-top p {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.ap-mini-steps {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}
.ap-mini-steps li {
  margin: 0.25rem 0;
}

.ap-btn-primary,
.ap-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.ap-btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red-deep);
}
.ap-btn-primary:hover {
  background: var(--red-bright);
}
.ap-btn-secondary {
  background: var(--gold);
  color: #1a1408;
  border-color: #a8861c;
}
.ap-btn-secondary:hover {
  background: var(--gold-bright);
}

.ap-text-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-soft);
  text-decoration: none;
}
.ap-text-link:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

.ap-ss {
  margin-top: 0.25rem;
}

/* Magazine guide rows */
.ap-guide-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.ap-guide-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 0.65rem 0.85rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
@media (max-width: 639px) {
  .ap-guide-row {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "num tag go"
      "main main main";
  }
  .ap-guide-num { grid-area: num; }
  .ap-guide-tag { grid-area: tag; }
  .ap-guide-main { grid-area: main; }
  .ap-guide-go { grid-area: go; }
}
.ap-guide-row:hover .ap-guide-main h3 {
  color: var(--gold-bright);
}
.ap-guide-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.ap-guide-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 2px solid var(--gold);
  padding-left: 0.45rem;
}
.ap-guide-main {
  min-width: 0;
}
.ap-guide-main h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--cream);
  line-height: 1.35;
  transition: color 0.15s;
}
.ap-guide-main p {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}
.ap-guide-go {
  color: var(--muted);
  display: flex;
  align-items: center;
}

/* Safety block */
.ap-safety {
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem 0;
}
@media (min-width: 768px) {
  .ap-safety {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
    align-items: start;
  }
}
.ap-safety h2 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--cream);
}
.ap-safety-lead {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 22rem;
}
.ap-safety-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ap-safety-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--red);
}
.ap-safety-list strong {
  font-size: 0.9rem;
  color: var(--cream);
}
.ap-safety-list span {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.5;
}
.ap-safety-list a {
  color: var(--gold-bright);
  font-weight: 600;
}

/* FAQ details */
.ap-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ap-faq-item {
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.28);
  padding: 0;
}
.ap-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.ap-faq-item summary::-webkit-details-marker {
  display: none;
}
.ap-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}
.ap-faq-item[open] summary::after {
  content: "-";
}
.ap-faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.ap-bottom-cta {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .ap-bottom-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.ap-bottom-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}
.ap-bottom-sub {
  margin: 0.25rem 0 0;
  font-size: 0.825rem;
  color: var(--muted);
}
.ap-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ap-bottom-actions .ap-btn-primary,
.ap-bottom-actions .ap-btn-secondary {
  width: auto;
  min-width: 9.5rem;
  padding: 0.7rem 1.1rem;
}

/* =========================================================
   SETUP MANUAL - troubleshoot hub (unique)
   ========================================================= */
.sm-page {
  padding-bottom: 2rem;
}
.sm-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
@media (min-width: 640px) {
  .sm-wrap {
    padding: 2rem 1.5rem;
  }
}

.sm-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.sm-crumb a { color: var(--muted); }
.sm-crumb a:hover { color: var(--gold-bright); }
.sm-crumb span:last-child { color: var(--cream); }

.sm-hero {
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(105deg, rgba(80, 80, 80, 0.12) 0%, transparent 45%),
    var(--bg-deep);
}
.sm-hero-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .sm-hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.sm-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.sm-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.1;
}
.sm-lead {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}
.sm-lead a {
  color: var(--gold-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sm-hero-callout {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.2rem 1.15rem;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold);
  background: rgba(12, 12, 12, 0.92);
}
.sm-callout-label {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.sm-callout-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}
.sm-callout-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.sm-btn-solid,
.sm-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.sm-btn-solid {
  background: var(--red);
  color: #fff;
  border-color: var(--red-deep);
}
.sm-btn-solid:hover { background: var(--red-bright); }
.sm-btn-outline {
  background: transparent;
  color: var(--gold-soft);
  border-color: var(--line);
}
.sm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 162, 39, 0.5);
  color: var(--gold-bright);
}
.sm-btn-sm {
  width: auto;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
}

.sm-section {
  border-bottom: 1px solid var(--line-soft);
}
.sm-section-last { border-bottom: 0; }

.sm-head {
  margin-bottom: 1.25rem;
  max-width: 38rem;
}
.sm-head h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 750;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.sm-head p {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.sm-head a {
  color: var(--gold-bright);
  font-weight: 600;
}

/* Timeline */
.sm-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(201, 162, 39, 0.35);
  margin-left: 0.85rem;
}
.sm-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 0 0 1.5rem 1.15rem;
}
.sm-timeline-item:last-child {
  padding-bottom: 0.25rem;
}
.sm-timeline-n {
  position: absolute;
  left: -0.85rem;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: auto;
  margin-left: -0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-bright);
  background: var(--bg-deep);
  border: none;
  line-height: 1.2;
}
.sm-timeline-item h3 {
  margin: 0.15rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}
.sm-timeline-item p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}
.sm-timeline-item p a,
.sm-inline {
  color: var(--gold-bright);
  font-weight: 600;
  font-size: 0.825rem;
  text-decoration: none;
}
.sm-inline {
  display: inline-block;
  margin-top: 0.45rem;
}
.sm-inline:hover,
.sm-timeline-item p a:hover {
  text-decoration: underline;
}

/* Problem cards */
.sm-problems {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sm-problem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.1rem 1rem;
  border: 1px solid var(--line-soft);
  background: rgba(14, 14, 14, 0.92);
  min-width: 0;
}
@media (min-width: 720px) {
  .sm-problem {
    padding: 1.25rem 1.2rem;
    gap: 1.15rem;
  }
}
.sm-problem-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
  border: none;
  padding: 0.15rem 0 0;
  height: fit-content;
  background: none;
}
.sm-problem-body {
  min-width: 0;
}
.sm-problem-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
}
.sm-symptom,
.sm-fix {
  margin: 0.55rem 0 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}
.sm-symptom span,
.sm-fix span {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.sm-fix span { color: var(--red-bright); }
.sm-problem-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin-top: 0.9rem;
}
.sm-text-quiet {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.sm-text-quiet:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* Bridge to App Portal */
.sm-bridge {
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem 1.15rem;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(200, 30, 30, 0.08), transparent 50%),
    rgba(12, 12, 12, 0.95);
}
@media (min-width: 800px) {
  .sm-bridge {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    padding: 1.6rem 1.5rem;
    gap: 1.5rem;
  }
}
.sm-bridge-kicker {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.sm-bridge h2 {
  margin: 0.35rem 0 0;
  font-size: 1.25rem;
  color: var(--cream);
}
.sm-bridge-text > p:not(.sm-bridge-kicker) {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}
.sm-bridge-text a {
  color: var(--gold-bright);
  font-weight: 600;
}
.sm-bridge-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sm-bridge-list a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  padding-bottom: 0.2rem;
  width: fit-content;
}
.sm-bridge-list a:hover {
  color: var(--gold-bright);
}
.sm-bridge-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* FAQ */
.sm-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sm-faq-item {
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.28);
}
.sm-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.sm-faq-item summary::-webkit-details-marker { display: none; }
.sm-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}
.sm-faq-item[open] summary::after { content: "-"; }
.sm-faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}
.sm-faq-item p a {
  color: var(--gold-bright);
  font-weight: 600;
}

.sm-footer-cta {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-soft);
}
.sm-footer-cta > p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 36rem;
}
.sm-footer-cta > p a {
  color: var(--gold-bright);
  font-weight: 600;
}
.sm-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* =========================================================
   GAME CENTER - lobby / mode picker (unique)
   ========================================================= */
.gc-page {
  padding-bottom: 2rem;
}
.gc-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
@media (min-width: 640px) {
  .gc-wrap {
    padding: 2rem 1.5rem;
  }
}

.gc-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.gc-crumb a { color: var(--muted); }
.gc-crumb a:hover { color: var(--gold-bright); }
.gc-crumb span:last-child { color: var(--cream); }

.gc-hero {
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
    var(--bg-deep);
}

.gc-hero-top {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .gc-hero-top {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 2rem;
    align-items: end;
  }
}

.gc-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.gc-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.08;
}
.gc-lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}
.gc-lead strong {
  color: var(--cream);
  font-weight: 600;
}

.gc-hero-aside {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--gold);
  background: rgba(12, 12, 12, 0.9);
}
.gc-aside-label {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.gc-aside-text {
  margin: 0.4rem 0 0.75rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}
.gc-link-app {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.45);
  padding-bottom: 0.15rem;
}
.gc-link-app:hover {
  color: var(--gold-bright);
}

/* Mode jump chips - square, not pills */
.gc-modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 1.75rem;
}
@media (min-width: 700px) {
  .gc-modes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }
}
.gc-mode {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.gc-mode:hover {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(20, 20, 20, 0.9);
}
.gc-mode-k {
  grid-row: 1 / span 2;
  align-self: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold-bright);
  background: none;
  min-width: 1.5rem;
  text-align: left;
  padding: 0;
}
.gc-mode-t {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
}
.gc-mode-d {
  font-size: 0.75rem;
  color: var(--muted);
}

.gc-section {
  border-bottom: 1px solid var(--line-soft);
}
.gc-section-last {
  border-bottom: 0;
}

.gc-head {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}
.gc-head h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 750;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.gc-head p {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Large feature panels */
.gc-feature {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line-soft);
}
.gc-feature:first-of-type {
  border-top: 0;
  padding-top: 0;
}
@media (min-width: 800px) {
  .gc-feature {
    grid-template-columns: 8.5rem 1fr;
    gap: 1.5rem;
    padding: 1.75rem 0;
    align-items: start;
  }
  .gc-feature-flip .gc-feature-index {
    order: 2;
    text-align: right;
  }
  .gc-feature-flip .gc-feature-main {
    order: 1;
    border-right: 1px solid var(--line-soft);
    border-left: 0;
    padding-right: 1.5rem;
    padding-left: 0;
  }
}

.gc-feature-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.gc-feature-index span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.gc-feature-index strong {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -0.04em;
  opacity: 0.9;
}

.gc-feature-main {
  min-width: 0;
}
@media (min-width: 800px) {
  .gc-feature-main {
    border-left: 1px solid var(--line-soft);
    padding-left: 1.5rem;
  }
}
.gc-feature-main h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.gc-feature-hook {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  color: var(--gold-soft);
  line-height: 1.45;
}
.gc-feature-main ul {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.gc-feature-main li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
}
.gc-feature-main li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--red);
}
.gc-feature-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
@media (min-width: 640px) {
  .gc-feature-actions {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
.gc-feature-meta {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 22rem;
}

.gc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.gc-btn:hover {
  border-color: rgba(201, 162, 39, 0.5);
  color: var(--gold-bright);
}
.gc-btn-red {
  background: var(--red);
  border-color: var(--red-deep);
  color: #fff;
}
.gc-btn-red:hover {
  background: var(--red-bright);
  color: #fff;
}
.gc-btn-gold {
  background: var(--gold);
  border-color: #a8861c;
  color: #1a1408;
}
.gc-btn-gold:hover {
  background: var(--gold-bright);
  color: #1a1408;
}

/* Floor rules */
.gc-floor {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .gc-floor {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 2rem;
    align-items: start;
  }
}
.gc-floor-title h2 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--cream);
}
.gc-floor-title p {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.gc-floor-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: floor;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.gc-floor-list li {
  counter-increment: floor;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: start;
}
.gc-floor-list li::before {
  content: counter(floor, decimal-leading-zero);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 0.15rem;
}
.gc-floor-list strong {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.gc-floor-list span {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.5;
}
.gc-floor-list a {
  color: var(--gold-bright);
  font-weight: 600;
}

/* Compact index */
.gc-index {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
}
.gc-index-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.gc-index-row:hover .gc-index-title {
  color: var(--gold-bright);
}
.gc-index-n {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}
.gc-index-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.gc-index-title {
  font-size: 0.925rem;
  font-weight: 650;
  color: var(--cream);
  transition: color 0.15s;
}
.gc-index-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}
.gc-index-chevron {
  color: var(--muted);
  flex-shrink: 0;
}

/* FAQ */
.gc-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gc-faq-item {
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.28);
}
.gc-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.gc-faq-item summary::-webkit-details-marker { display: none; }
.gc-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}
.gc-faq-item[open] summary::after { content: "-"; }
.gc-faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.gc-bottom {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 700px) {
  .gc-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.gc-bottom-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}
.gc-bottom-text {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 28rem;
}
.gc-bottom-text a {
  color: var(--gold-bright);
  font-weight: 600;
}
.gc-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =========================================================
   BONUS CENTER - offer board / rules (unique)
   ========================================================= */
.bc-page {
  padding-bottom: 2rem;
}
.bc-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
@media (min-width: 640px) {
  .bc-wrap {
    padding: 2rem 1.5rem;
  }
}

.bc-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.bc-crumb a { color: var(--muted); }
.bc-crumb a:hover { color: var(--gold-bright); }
.bc-crumb span:last-child { color: var(--cream); }

.bc-hero {
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(200, 30, 30, 0.1) 0%, transparent 50%),
    var(--bg-deep);
}
.bc-hero-grid {
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 860px) {
  .bc-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: stretch;
  }
}

.bc-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.bc-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.08;
}
.bc-lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}
.bc-lead strong {
  color: var(--cream);
  font-weight: 600;
}

.bc-warn {
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--red);
  background: rgba(12, 12, 12, 0.92);
}
.bc-warn-label {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.bc-warn-title {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
}
.bc-warn ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bc-warn li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.bc-warn li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--gold);
}

.bc-section {
  border-bottom: 1px solid var(--line-soft);
}
.bc-section-last {
  border-bottom: 0;
}

.bc-head {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}
.bc-head h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 750;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.bc-head p {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Offer ledger lanes */
.bc-ledger {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.bc-lane {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 760px) {
  .bc-lane {
    grid-template-columns: 9rem 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    align-items: start;
  }
}
.bc-lane-side {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.bc-lane-n {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.bc-lane-name {
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--cream);
  line-height: 1.2;
}
.bc-lane-who {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.bc-lane-body h3 {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 650;
  color: var(--cream);
  line-height: 1.35;
}
.bc-lane-focus {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.bc-lane-ask {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.85rem;
  color: var(--cream);
  line-height: 1.45;
  background: rgba(0, 0, 0, 0.35);
  border-left: 2px solid var(--red);
}
.bc-lane-ask span {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.bc-lane-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-decoration: none;
}
.bc-lane-link:hover {
  text-decoration: underline;
}

/* Checklist */
.bc-check-grid {
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 800px) {
  .bc-check-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
    align-items: start;
  }
}
.bc-check-grid h2 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--cream);
}
.bc-check-lead {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 24rem;
}
.bc-check-note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.bc-check-note a {
  color: var(--gold-bright);
  font-weight: 600;
}
.bc-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: bccheck;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.bc-checklist li {
  counter-increment: bccheck;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
}
.bc-checklist li::before {
  content: counter(bccheck, decimal-leading-zero);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 0.15rem;
}
.bc-checklist strong {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.bc-checklist span {
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.5;
}
.bc-checklist a {
  color: var(--gold-bright);
  font-weight: 600;
}

/* Comparison table */
.bc-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.25);
}
.bc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 32rem;
  font-size: 0.875rem;
}
.bc-table th,
.bc-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.bc-table th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.35);
}
.bc-table td {
  color: var(--muted);
}
.bc-table td:first-child {
  color: var(--cream);
  font-weight: 650;
}
.bc-table a {
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.bc-table a:hover {
  text-decoration: underline;
}
.bc-table tr:last-child td {
  border-bottom: 0;
}

/* Mobile stacked table feel */
@media (max-width: 639px) {
  .bc-table {
    min-width: 0;
  }
  .bc-table thead {
    display: none;
  }
  .bc-table tr {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .bc-table tr:last-child {
    border-bottom: 0;
  }
  .bc-table td {
    display: grid;
    grid-template-columns: 6.5rem 1fr;
    gap: 0.5rem;
    border: 0;
    padding: 0.25rem 0.85rem;
  }
  .bc-table td::before {
    content: attr(data-label);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 0.15rem;
  }
  .bc-table td:last-child {
    padding-top: 0.45rem;
  }
  .bc-table td:last-child::before {
    content: "";
  }
}

/* FAQ + bottom */
.bc-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bc-faq-item {
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.28);
}
.bc-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.bc-faq-item summary::-webkit-details-marker { display: none; }
.bc-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}
.bc-faq-item[open] summary::after { content: "-"; }
.bc-faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.bc-bottom {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 700px) {
  .bc-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.bc-bottom-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}
.bc-bottom-text {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 30rem;
}
.bc-bottom-text a {
  color: var(--gold-bright);
  font-weight: 600;
}
.bc-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.05rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}
.bc-btn-red {
  background: var(--red);
  border-color: var(--red-deep);
  color: #fff;
}
.bc-btn-red:hover { background: var(--red-bright); }
.bc-btn-gold {
  background: var(--gold);
  border-color: #a8861c;
  color: #1a1408;
}
.bc-btn-gold:hover { background: var(--gold-bright); }

/* =========================================================
   PLATFORM GUIDE - trust / orientation map (unique)
   ========================================================= */
.pg-page {
  padding-bottom: 2rem;
}
.pg-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}
@media (min-width: 640px) {
  .pg-wrap {
    padding: 2rem 1.5rem;
  }
}

.pg-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.pg-crumb a { color: var(--muted); }
.pg-crumb a:hover { color: var(--gold-bright); }
.pg-crumb span:last-child { color: var(--cream); }

.pg-hero {
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(160deg, rgba(90, 90, 90, 0.1) 0%, transparent 40%),
    var(--bg-deep);
}
.pg-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.pg-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.08;
}
.pg-lead {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}
.pg-lead strong {
  color: var(--cream);
  font-weight: 600;
}

.pg-role {
  margin-top: 1.75rem;
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--gold);
  background: rgba(10, 10, 10, 0.9);
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .pg-role {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
}
.pg-role-label {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.pg-role-text {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 40rem;
}
.pg-role-text strong {
  color: var(--cream);
  font-weight: 600;
}
.pg-role-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: #1a1408;
  background: var(--gold);
  border: 1px solid #a8861c;
  white-space: nowrap;
}
.pg-role-link:hover {
  background: var(--gold-bright);
}

.pg-section {
  border-bottom: 1px solid var(--line-soft);
}
.pg-section-last {
  border-bottom: 0;
}

.pg-head {
  margin-bottom: 1.25rem;
  max-width: 36rem;
}
.pg-head h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 750;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.pg-head p {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Chapters */
.pg-chapters {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pg-chapter {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line-soft);
}
.pg-chapter:first-child {
  border-top: 0;
  padding-top: 0;
}
@media (min-width: 720px) {
  .pg-chapter {
    grid-template-columns: 6.5rem 1fr;
    gap: 1.5rem;
    padding: 1.6rem 0;
    align-items: start;
  }
}
.pg-chapter-mark span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.pg-chapter-mark strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.pg-chapter-body h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 750;
  color: var(--cream);
}
.pg-chapter-body > p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 36rem;
}
.pg-chapter-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.4);
  padding-bottom: 0.15rem;
}
.pg-chapter-link:hover {
  color: var(--gold-bright);
}

/* Red flags */
.pg-flags {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .pg-flags {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    align-items: start;
  }
}
.pg-flags-intro h2 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--cream);
}
.pg-flags-intro p {
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.pg-text-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-decoration: none;
}
.pg-text-link:hover {
  text-decoration: underline;
}
.pg-flags-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pg-flags-list li {
  position: relative;
  padding: 0.75rem 0.85rem 0.75rem 2.1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--red);
}
.pg-flags-list li::before {
  content: "!";
  position: absolute;
  left: 0.7rem;
  top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--red-bright);
}

/* Site map cards */
.pg-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
@media (min-width: 640px) {
  .pg-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1000px) {
  .pg-map {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.pg-map-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0.95rem;
  border: 1px solid var(--line-soft);
  background: rgba(12, 12, 12, 0.9);
  text-decoration: none;
  color: inherit;
  min-width: 0;
  transition: border-color 0.15s;
}
.pg-map-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
}
.pg-map-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.pg-map-card strong {
  font-size: 1rem;
  color: var(--cream);
}
.pg-map-card > span:last-child {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Banks */
.pg-banks {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .pg-banks {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
}
.pg-banks h2 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--cream);
}
.pg-banks > div > p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 28rem;
}
.pg-bank-tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.pg-bank-tags li {
  padding: 0.45rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  border: 1px solid var(--line-soft);
  border-bottom: 2px solid rgba(201, 162, 39, 0.45);
  background: rgba(0, 0, 0, 0.3);
}

/* FAQ + bottom */
.pg-faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pg-faq-item {
  border: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.28);
}
.pg-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.pg-faq-item summary::-webkit-details-marker { display: none; }
.pg-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}
.pg-faq-item[open] summary::after { content: "-"; }
.pg-faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}
.pg-faq-item a {
  color: var(--gold-bright);
  font-weight: 600;
}

.pg-bottom {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 700px) {
  .pg-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.pg-bottom-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}
.pg-bottom-text {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 30rem;
}
.pg-bottom-text a {
  color: var(--gold-bright);
  font-weight: 600;
}
.pg-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.05rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}
.pg-btn-red {
  background: var(--red);
  border-color: var(--red-deep);
  color: #fff;
}
.pg-btn-red:hover { background: var(--red-bright); }
.pg-btn-gold {
  background: var(--gold);
  border-color: #a8861c;
  color: #1a1408;
}
.pg-btn-gold:hover { background: var(--gold-bright); }
