﻿/* Inner-page body layouts — independent from theme section/card grids */

.pg-body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ── Lead band ── */
.pg-lead {
  padding: 1rem var(--nav-pad-x) 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-lead__eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-blue-soft);
  color: var(--accent-gold-dim);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pg-lead__summary {
  margin: 0;
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

/* ── KPI metric bar ── */
.pg-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-kpi li {
  padding: 14px 8px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.pg-kpi li:last-child { border-right: none; }

.pg-kpi strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.1;
}

.pg-kpi span {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Standalone figure (image above/below text, never side-by-side) ── */
.pg-figure {
  padding: 1rem var(--nav-pad-x);
  margin: 0;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  box-shadow: 0 6px 24px rgba(91, 33, 182, 0.3);
  object-fit: cover;
}

.pg-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* ── Text band ── */
.pg-band {
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-band h2 {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-band p {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  color: var(--text-body);
  line-height: 1.55;
}

.pg-band p:last-child { margin-bottom: 0; }

/* ── Vertical checklist rail ── */
.pg-rail {
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-rail h2 {
  margin: 0 0 1rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-rail__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pgrail;
}

.pg-rail__list li {
  position: relative;
  counter-increment: pgrail;
  margin-bottom: 0;
  padding: 14px 12px 14px 3rem;
  border-left: 3px solid var(--accent-violet);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(31, 18, 56, 0.45);
}

.pg-rail__list li:last-child { border-bottom: none; }

.pg-rail__list li::before {
  content: counter(pgrail);
  position: absolute;
  left: 12px;
  top: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-emerald) 100%);
  color: var(--text-ui);
  font-size: 0.75rem;
  font-weight: 800;
}

.pg-rail__list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-heading-bright);
  font-size: var(--prose-size);
}

.pg-rail__list span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ── Dual fact panels (stacked, not grid cards) ── */
.pg-duo {
  padding: 0 var(--nav-pad-x) 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-duo__panel {
  padding: 14px 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.pg-duo__panel:last-child { margin-bottom: 0; }

.pg-duo__panel h3 {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-duo__panel p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ── Pill tag row ── */
.pg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-tags span {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-card);
  background: var(--surface-elevated);
  color: var(--text-link);
  font-size: 0.6875rem;
  font-weight: 600;
}

/* ── Inline CTA row ── */
.pg-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 1.25rem var(--nav-pad-x) 1.5rem;
}

.pg-actions .hero__cta {
  margin-top: 0;
  text-align: center;
}

.pg-actions__note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 360px) {
  .pg-kpi { grid-template-columns: 1fr; }
  .pg-kpi li {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .pg-kpi li:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════
   Fortune Tiger layout — chapter + spec + matrix
   ══════════════════════════════════════════ */

.pg-flow {
  max-width: 100%;
  overflow-x: hidden;
}

.pg-pull {
  margin: 0;
  padding: 1rem var(--nav-pad-x);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-ui);
  background: linear-gradient(90deg, var(--accent-violet-deep) 0%, var(--accent-blue) 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-specsheet {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-specsheet div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  font-size: var(--prose-size);
}

.pg-specsheet div:nth-child(odd) {
  background: rgba(31, 18, 56, 0.35);
}

.pg-specsheet div:last-child { border-bottom: none; }

.pg-specsheet dt {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.pg-specsheet dd {
  margin: 0;
  font-weight: 700;
  color: var(--accent-gold);
  text-align: right;
  font-size: 0.8125rem;
}

.pg-chapter {
  position: relative;
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.pg-chapter::after {
  content: attr(data-ch);
  position: absolute;
  right: var(--nav-pad-x);
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(168, 85, 247, 0.08);
  pointer-events: none;
}

.pg-chapter h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-chapter p {
  position: relative;
  z-index: 1;
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  color: var(--text-body);
  line-height: 1.55;
}

.pg-chapter p:last-child { margin-bottom: 0; }

.pg-shot {
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-shot__frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: 0 8px 28px rgba(91, 33, 182, 0.35);
}

.pg-shot__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pg-shot__label {
  display: block;
  padding: 8px 12px;
  background: var(--surface-elevated);
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
}

.pg-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-matrix li {
  padding: 16px 12px;
  background: var(--surface-card);
  text-align: center;
}

.pg-matrix__ico {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
  line-height: 1;
}

.pg-matrix strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-matrix span {
  display: block;
  font-size: 0.625rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.pg-flowcta {
  padding: 1.25rem var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.pg-flowcta .hero__cta { margin-top: 0; }

.pg-flowcta p {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 380px) {
  .pg-matrix { grid-template-columns: 1fr; }
  .pg-chapter::after { font-size: 3rem; opacity: 0.6; }
}

/* ══════════════════════════════════════════
   Vegas Frenzy layout — brief + timeline + stack
   ══════════════════════════════════════════ */

.pg-vegas {
  max-width: 100%;
  overflow-x: hidden;
}

.pg-brief {
  margin: 0;
  padding: 1rem var(--nav-pad-x) 1rem calc(var(--nav-pad-x) + 6px);
  border-left: 4px solid var(--accent-gold);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(38, 21, 69, 0.4);
  font-size: var(--prose-size);
  line-height: 1.55;
  color: var(--text-body);
}

.pg-scoreboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-scoreboard li {
  padding: 12px 6px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.pg-scoreboard li:last-child { border-right: none; }

.pg-scoreboard em {
  display: block;
  margin-bottom: 3px;
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--accent-gold-dim);
  line-height: 1.1;
}

.pg-scoreboard small {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pg-sectitle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem var(--nav-pad-x) 0.75rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.pg-sectitle::before,
.pg-sectitle::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-card);
}

.pg-timeline {
  margin: 0;
  padding: 0.5rem var(--nav-pad-x) 1.25rem calc(var(--nav-pad-x) + 20px);
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-timeline li {
  position: relative;
  padding: 0 0 1.25rem 1.25rem;
  border-left: 2px solid var(--accent-violet);
}

.pg-timeline li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.pg-timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dim) 100%);
  border: 2px solid var(--surface-card);
  box-shadow: 0 0 8px var(--glow-violet);
}

.pg-timeline h3 {
  margin: 0 0 0.4rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-timeline p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pg-imgtop {
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-imgtop__cap {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-link);
  text-align: left;
  line-height: 1.4;
}

.pg-imgtop img {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  box-shadow: 0 6px 22px rgba(91, 33, 182, 0.28);
  object-fit: cover;
}

.pg-stacknote {
  margin: 0;
  padding: 0 var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-stacknote li {
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.pg-stacknote li:last-child { margin-bottom: 0; }

.pg-stacknote__head {
  display: block;
  padding: 8px 12px;
  background: var(--surface-elevated);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-heading-bright);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-stacknote__body {
  display: block;
  padding: 10px 12px;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.pg-vegascta {
  padding: 1.25rem var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.pg-vegascta .hero__cta { margin-top: 0; }

.pg-vegascta small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 400px) {
  .pg-scoreboard { grid-template-columns: repeat(2, 1fr); }
  .pg-scoreboard li:nth-child(2) { border-right: none; }
  .pg-scoreboard li:nth-child(1),
  .pg-scoreboard li:nth-child(2) {
    border-bottom: 1px solid var(--border-subtle);
  }
}

/* ══════════════════════════════════════════
   CloverPit layout — mast + mosaic + deck
   ══════════════════════════════════════════ */

.pg-clover {
  max-width: 100%;
  overflow-x: hidden;
}

.pg-mast {
  padding: 1.25rem var(--nav-pad-x);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, transparent 100%);
}

.pg-mast h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading-bright);
  letter-spacing: 0.02em;
}

.pg-mast p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pg-luckgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-luckgrid__tile {
  padding: 12px 8px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.pg-luckgrid__tile b {
  display: block;
  margin-bottom: 3px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.1;
}

.pg-luckgrid__tile i {
  display: block;
  font-style: normal;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pg-prosecols {
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  column-count: 2;
  column-gap: 1.25rem;
}

.pg-prosecols p {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.55;
  break-inside: avoid;
}

.pg-prosecols p:last-child { margin-bottom: 0; }

.pg-infobox {
  margin: 0 var(--nav-pad-x) 1.25rem;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px dashed var(--accent-gold-dim);
  background: rgba(16, 185, 129, 0.06);
}

.pg-infobox h3 {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-infobox p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.pg-photo {
  position: relative;
  margin: 0 var(--nav-pad-x) 1.25rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.pg-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pg-photo__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 12px 10px;
  background: linear-gradient(0deg, rgba(10, 5, 20, 0.92) 0%, transparent 100%);
  color: var(--text-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
}

.pg-deck {
  margin: 0;
  padding: 0 var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-deck li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-deck li:last-child { border-bottom: none; }

.pg-deck__mark {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-emerald-soft);
  font-size: 1.125rem;
  line-height: 1;
}

.pg-deck strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-deck span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pg-clovercta {
  padding: 1.25rem var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.pg-clovercta .hero__cta { margin-top: 0; }

.pg-clovercta small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 420px) {
  .pg-luckgrid { grid-template-columns: repeat(2, 1fr); }
  .pg-prosecols { column-count: 1; }
}

/* ══════════════════════════════════════════
   88 Fortunes layout — ladder + factline + emphasis
   ══════════════════════════════════════════ */

.pg-fortune {
  max-width: 100%;
  overflow-x: hidden;
}

.pg-88mark {
  position: relative;
  padding: 1.25rem var(--nav-pad-x);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.pg-88mark::before {
  content: "88";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(240, 171, 252, 0.07);
  pointer-events: none;
}

.pg-88mark h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.35rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-88mark p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pg-ladder {
  margin: 0;
  padding: 1rem var(--nav-pad-x) 0.5rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-ladder__step {
  position: relative;
  margin-bottom: 8px;
  padding: 12px 14px 12px 2.75rem;
  border-radius: 0 10px 10px 0;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.pg-ladder__step:nth-child(1) { margin-left: 0; }
.pg-ladder__step:nth-child(2) { margin-left: 8px; }
.pg-ladder__step:nth-child(3) { margin-left: 16px; }
.pg-ladder__step:nth-child(4) { margin-left: 24px; }

.pg-ladder__step::before {
  content: attr(data-rung);
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.pg-ladder__step strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-ladder__step span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pg-factline {
  margin: 0;
  padding: 0.75rem var(--nav-pad-x) 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-factline__row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 0;
  border-bottom: 1px dotted var(--border-subtle);
  font-size: 0.8125rem;
}

.pg-factline__row:last-child { border-bottom: none; }

.pg-factline__row dt {
  margin: 0;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--text-muted);
}

.pg-factline__row dd {
  margin: 0;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: transparent;
  background: repeating-linear-gradient(90deg, var(--border-card) 0, var(--border-card) 3px, transparent 3px, transparent 7px);
  background-clip: text;
  -webkit-background-clip: text;
  height: 1px;
  align-self: center;
}

.pg-factline__row em {
  margin: 0;
  flex-shrink: 0;
  font-style: normal;
  font-weight: 700;
  color: var(--accent-gold-dim);
  text-align: right;
}

.pg-emphasis {
  margin: 1.25rem var(--nav-pad-x);
  padding: 1.25rem 1rem;
  text-align: center;
  border-radius: 12px;
  border: 2px solid var(--accent-gold-dim);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
  box-shadow: 0 4px 20px rgba(91, 33, 182, 0.2);
}

.pg-emphasis b {
  display: block;
  margin-bottom: 6px;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1.1;
}

.pg-emphasis p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.pg-wideband {
  padding: 1.25rem var(--nav-pad-x);
  border-top: 2px solid var(--accent-gold-dim);
  border-bottom: 2px solid var(--accent-gold-dim);
  background: rgba(38, 21, 69, 0.35);
}

.pg-wideband h3 {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-wideband p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.55;
}

.pg-frameimg {
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-frameimg__inner {
  padding: 6px;
  border: 1px solid var(--accent-gold-dim);
  border-radius: 12px;
  background: var(--surface-elevated);
}

.pg-frameimg__inner img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.pg-frameimg figcaption {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.pg-fortuncta {
  padding: 1.25rem var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.pg-fortuncta .hero__cta { margin-top: 0; }

.pg-fortuncta small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 380px) {
  .pg-ladder__step:nth-child(2) { margin-left: 4px; }
  .pg-ladder__step:nth-child(3) { margin-left: 8px; }
  .pg-ladder__step:nth-child(4) { margin-left: 12px; }
}

/* ══════════════════════════════════════════
   Slotomania layout — reel + zigzag + meters
   ══════════════════════════════════════════ */

.pg-sloto {
  max-width: 100%;
  overflow-x: hidden;
}

.pg-reel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 1rem var(--nav-pad-x);
  border-bottom: 3px solid var(--accent-gold-dim);
  background: linear-gradient(180deg, rgba(38, 21, 69, 0.6) 0%, transparent 100%);
}

.pg-reel__cell {
  padding: 14px 8px;
  text-align: center;
  border-radius: 8px;
  border: 2px solid var(--border-card);
  background: var(--surface-card);
  box-shadow: inset 0 -3px 0 var(--accent-violet);
}

.pg-reel__cell span {
  display: block;
  margin-bottom: 4px;
  font-size: 1.375rem;
  line-height: 1;
}

.pg-reel__cell b {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pg-zig {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-zig__item {
  padding: 1.15rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-zig__item:nth-child(odd) {
  border-left: 4px solid var(--accent-violet);
  background: rgba(31, 18, 56, 0.4);
}

.pg-zig__item:nth-child(even) {
  border-right: 4px solid var(--accent-gold-dim);
  background: rgba(38, 21, 69, 0.25);
  text-align: right;
}

.pg-zig__item h3 {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-zig__item p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.pg-meter {
  padding: 1rem var(--nav-pad-x) 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-meter h3 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.pg-meter__row {
  margin-bottom: 10px;
}

.pg-meter__row:last-child { margin-bottom: 0; }

.pg-meter__label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pg-meter__label em {
  font-style: normal;
  color: var(--accent-gold-dim);
  font-weight: 700;
}

.pg-meter__track {
  height: 8px;
  border-radius: 999px;
  background: var(--surface-elevated);
  overflow: hidden;
}

.pg-meter__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-violet) 0%, var(--accent-gold) 100%);
}

.pg-slotframe {
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-slotframe__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--accent-violet-deep) 0%, var(--accent-blue) 100%);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pg-slotframe__bar::before,
.pg-slotframe__bar::after {
  content: "◆";
  font-size: 0.5rem;
  color: var(--accent-gold);
}

.pg-slotframe img {
  display: block;
  width: 100%;
  border-radius: 0 0 10px 10px;
  border: 1px solid var(--border-card);
  object-fit: cover;
}

.pg-slotframe figcaption {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.pg-perkrow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-perkrow span {
  padding: 6px 11px;
  border-radius: 6px;
  background: var(--accent-blue-soft);
  color: var(--text-ui);
  font-size: 0.6875rem;
  font-weight: 600;
}

.pg-slotocta {
  padding: 1.25rem var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.pg-slotocta .hero__cta { margin-top: 0; }

.pg-slotocta small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ══════════════════════════════════════════
   Quick Hit layout — flash + bento + snaplist
   ══════════════════════════════════════════ */

.pg-quick {
  max-width: 100%;
  overflow-x: hidden;
}

.pg-flash {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0.85rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(90deg, rgba(192, 38, 211, 0.15) 0%, rgba(168, 85, 247, 0.08) 100%);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.4;
}

.pg-flash__ico {
  flex-shrink: 0;
  font-size: 1.25rem;
  line-height: 1;
}

.pg-speedrow {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.pg-speedrow li {
  flex: 1;
  min-width: 0;
  padding: 12px 8px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pg-speedrow li:last-child { border-right: none; }

.pg-speedrow strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: none;
  letter-spacing: 0;
}

.pg-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-bento__cell {
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.pg-bento__cell--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, var(--surface-card) 70%);
}

.pg-bento__cell h3 {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-bento__cell p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pg-snaplist {
  margin: 0;
  padding: 0.75rem var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-snaplist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-subtle);
}

.pg-snaplist li:last-child { border-bottom: none; }

.pg-snaplist__bolt {
  flex-shrink: 0;
  color: var(--accent-gold-dim);
  font-size: 0.875rem;
  line-height: 1.4;
}

.pg-snaplist p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.pg-quickpic {
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-quickpic__wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.pg-quickpic__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(225deg, var(--accent-gold) 50%, transparent 50%);
  opacity: 0.35;
  pointer-events: none;
}

.pg-quickpic img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.pg-quickpic figcaption {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pg-quickcta {
  padding: 1.25rem var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.pg-quickcta .hero__cta { margin-top: 0; }

.pg-quickcta small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ══════════════════════════════════════════
   DoubleU layout — coins + pairs + tierstrip
   ══════════════════════════════════════════ */

.pg-double {
  max-width: 100%;
  overflow-x: hidden;
}

.pg-duohead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.pg-duohead__orb {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-emerald) 100%);
  color: var(--text-ui);
  font-size: 1.125rem;
  font-weight: 900;
  box-shadow: 0 4px 14px var(--glow-violet);
}

.pg-duohead__text h2 {
  margin: 0 0 0.25rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-duohead__text p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pg-coinrow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-coinrow__chip {
  width: 72px;
  padding: 10px 6px;
  text-align: center;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-gold-dim);
  background: radial-gradient(circle at 30% 30%, rgba(240, 171, 252, 0.2) 0%, var(--surface-card) 70%);
  box-shadow: 0 3px 12px rgba(91, 33, 182, 0.25);
}

.pg-coinrow__chip b {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.1;
}

.pg-coinrow__chip i {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pg-pairgrid {
  padding: 0 var(--nav-pad-x) 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-pairgrid__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.pg-pairgrid__row:last-child { margin-bottom: 0; }

.pg-pairgrid__cell {
  padding: 12px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.pg-pairgrid__cell--accent {
  border-color: var(--accent-gold-dim);
  background: rgba(168, 85, 247, 0.1);
}

.pg-pairgrid__cell h3 {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-heading-bright);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pg-pairgrid__cell p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pg-tierstrip {
  margin: 0;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-tierstrip li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
}

.pg-tierstrip li:last-child { margin-bottom: 0; }

.pg-tierstrip__lvl {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-violet-deep) 0%, var(--accent-blue) 100%);
  color: var(--text-ui);
  font-size: 0.6875rem;
  font-weight: 800;
}

.pg-tierstrip strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-tierstrip span {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.pg-splitimg {
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-splitimg__box {
  border-radius: 10px;
  overflow: hidden;
  border-left: 4px solid var(--accent-violet);
  border-right: 4px solid var(--accent-gold-dim);
  box-shadow: 0 6px 22px rgba(91, 33, 182, 0.28);
}

.pg-splitimg img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.pg-splitimg figcaption {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.pg-cert {
  margin: 1.25rem var(--nav-pad-x);
  padding: 16px 14px;
  text-align: center;
  border: 2px double var(--accent-gold-dim);
  border-radius: 4px;
  background: rgba(38, 21, 69, 0.45);
}

.pg-cert h3 {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-cert p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.pg-douecta {
  padding: 0 var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.pg-douecta .hero__cta { margin-top: 0; }

.pg-douecta small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 380px) {
  .pg-pairgrid__row { grid-template-columns: 1fr; }
  .pg-coinrow__chip { width: 64px; }
}

/* ══════════════════════════════════════════
   Scatter layout — orbit + nodepath + floatlist
   ══════════════════════════════════════════ */

.pg-scatter {
  max-width: 100%;
  overflow-x: hidden;
}

.pg-bursthead {
  position: relative;
  padding: 1.35rem var(--nav-pad-x);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.pg-bursthead::before,
.pg-bursthead::after {
  content: "✦";
  position: absolute;
  color: var(--accent-gold-dim);
  font-size: 0.625rem;
  opacity: 0.5;
}

.pg-bursthead::before { top: 12px; left: 18%; }
.pg-bursthead::after { bottom: 12px; right: 16%; }

.pg-bursthead h2 {
  margin: 0 0 0.35rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-bursthead p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pg-orbit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-orbit__ring {
  width: 76px;
  height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px dashed var(--accent-violet);
  background: rgba(31, 18, 56, 0.5);
  text-align: center;
}

.pg-orbit__ring b {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.1;
}

.pg-orbit__ring i {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pg-waveband {
  margin: 0;
  padding: 1.15rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, transparent 100%);
  border-radius: 0 0 24px 24px;
}

.pg-waveband p {
  margin: 0;
  font-size: var(--prose-size);
  color: var(--text-body);
  line-height: 1.55;
}

.pg-nodepath {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.pg-nodepath__step {
  flex: 1;
  min-width: 68px;
  text-align: center;
  position: relative;
}

.pg-nodepath__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  right: -8px;
  width: 16px;
  height: 2px;
  background: var(--accent-gold-dim);
  opacity: 0.6;
}

.pg-nodepath__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-emerald) 100%);
  color: var(--text-ui);
  font-size: 0.6875rem;
  font-weight: 800;
}

.pg-nodepath__step strong {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-heading-bright);
  line-height: 1.25;
}

.pg-nodepath__step span {
  display: block;
  margin-top: 2px;
  font-size: 0.5625rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.pg-floatlist {
  margin: 0;
  padding: 0.75rem var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-floatlist li {
  position: relative;
  margin-bottom: 10px;
  padding: 12px 12px 12px 2.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.pg-floatlist li:nth-child(1) { margin-left: 0; }
.pg-floatlist li:nth-child(2) { margin-left: 10px; }
.pg-floatlist li:nth-child(3) { margin-left: 4px; }
.pg-floatlist li:nth-child(4) { margin-left: 14px; }

.pg-floatlist li:last-child { margin-bottom: 0; }

.pg-floatlist__ico {
  position: absolute;
  left: 10px;
  top: 12px;
  font-size: 1rem;
  line-height: 1;
}

.pg-floatlist h3 {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-floatlist p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pg-scatterpic {
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-scatterpic__dots {
  padding: 8px;
  border-radius: 12px;
  border: 2px dotted var(--accent-gold-dim);
  background: rgba(38, 21, 69, 0.3);
}

.pg-scatterpic img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.pg-scatterpic figcaption {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.pg-scattercta {
  padding: 1.25rem var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.pg-scattercta .hero__cta { margin-top: 0; }

.pg-scattercta small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 400px) {
  .pg-orbit { gap: 10px; flex-wrap: wrap; }
  .pg-orbit__ring { width: 68px; height: 68px; }
  .pg-floatlist li { margin-left: 0 !important; }
}

/* ══════════════════════════════════════════
   Jackpot Party layout — podium + pipeline + glow
   ══════════════════════════════════════════ */

.pg-jackpot {
  max-width: 100%;
  overflow-x: hidden;
}

.pg-prizeticker {
  margin: 0;
  padding: 0.65rem var(--nav-pad-x);
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: repeating-linear-gradient(
    90deg,
    rgba(240, 171, 252, 0.08) 0,
    rgba(240, 171, 252, 0.08) 12px,
    transparent 12px,
    transparent 24px
  );
  border-bottom: 1px solid var(--border-subtle);
}

.pg-counter {
  padding: 1.25rem var(--nav-pad-x);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
}

.pg-counter__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pg-counter__amount {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-gold);
  text-shadow: 0 0 24px rgba(240, 171, 252, 0.4);
}

.pg-counter__sub {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--text-body);
}

.pg-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 1.25rem var(--nav-pad-x) 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-podium__place {
  flex: 1;
  max-width: 100px;
  padding: 10px 6px;
  text-align: center;
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.pg-podium__place--1 {
  order: 2;
  min-height: 88px;
  border-color: var(--accent-gold-dim);
  background: linear-gradient(180deg, rgba(240, 171, 252, 0.15) 0%, var(--surface-card) 100%);
}

.pg-podium__place--2 { order: 1; min-height: 68px; }
.pg-podium__place--3 { order: 3; min-height: 56px; }

.pg-podium__medal {
  display: block;
  margin-bottom: 4px;
  font-size: 1.125rem;
  line-height: 1;
}

.pg-podium__place strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.pg-podium__place span {
  display: block;
  margin-top: 2px;
  font-size: 0.5625rem;
  color: var(--text-muted);
  line-height: 1.25;
}

.pg-pipeline {
  margin: 0;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-pipeline__seg {
  position: relative;
  padding: 12px 14px 12px 2.75rem;
  margin-bottom: 0;
  border: 1px solid var(--border-card);
  border-top: none;
  background: var(--surface-card);
}

.pg-pipeline__seg:first-child {
  border-top: 1px solid var(--border-card);
  border-radius: 10px 10px 0 0;
}

.pg-pipeline__seg:last-child {
  border-radius: 0 0 10px 10px;
}

.pg-pipeline__seg::before {
  content: "▼";
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 0.625rem;
  color: var(--accent-gold-dim);
  line-height: 1;
}

.pg-pipeline__seg:first-child::before { content: "🎉"; font-size: 0.875rem; }

.pg-pipeline__seg strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-pipeline__seg p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pg-glowcard {
  margin: 0;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.pg-glowcard__item {
  margin-bottom: 10px;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid var(--accent-gold-dim);
  background: var(--surface-card);
  box-shadow: 0 0 20px rgba(240, 171, 252, 0.12);
}

.pg-glowcard__item:last-child { margin-bottom: 0; }

.pg-glowcard__item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-glowcard__item p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.45;
}

.pg-jackimg {
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-jackimg__crown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(90deg, var(--accent-gold-dim) 0%, var(--accent-gold) 50%, var(--accent-gold-dim) 100%);
  font-size: 0.625rem;
  font-weight: 800;
  color: #3b0764;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pg-jackimg img {
  display: block;
  width: 100%;
  border-radius: 0 0 10px 10px;
  border: 1px solid var(--border-card);
  object-fit: cover;
}

.pg-jackimg figcaption {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.pg-jackpotcta {
  padding: 1.25rem var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.pg-jackpotcta .hero__cta { margin-top: 0; }

.pg-jackpotcta small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ══════════════════════════════════════════
   Login / Cadastro — auth tile grid
   ══════════════════════════════════════════ */

.pg-auth {
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.pg-auth h2 {
  margin: 0 0 1rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-auth__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pg-auth__tile {
  display: flex;
  flex-direction: column;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.pg-auth__tile--wide {
  grid-column: 1 / -1;
}

.pg-auth__ico {
  display: block;
  margin-bottom: 6px;
  font-size: 1.25rem;
  line-height: 1;
}

.pg-auth__tile h3 {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-auth__tile p {
  flex: 1;
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.45;
}

.pg-auth__meta {
  margin: 0 0 0.65rem;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(31, 18, 56, 0.55);
  border: 1px solid var(--border-subtle);
}

.pg-auth__meta p {
  margin: 0 0 3px;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.pg-auth__meta p:last-child { margin-bottom: 0; }

.pg-auth__meta strong { color: var(--accent-gold-dim); }

.pg-auth__tile .hero__cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  padding: 10px 8px;
}

.pg-authhelp {
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(31, 18, 56, 0.35);
}

.pg-authhelp h2 {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.pg-authhelp ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.55;
}

.pg-authhelp li { margin-bottom: 0.45rem; }

.pg-authhelp a { color: var(--accent-gold-dim); }

@media (max-width: 380px) {
  .pg-auth__grid { grid-template-columns: 1fr; }
  .pg-auth__tile--wide { grid-column: auto; }
}
