/*
 * ZenPlay.games — zenplay.css
 * Global design system. Load on every page.
 * All pages use this + page-specific inline styles only where needed.
 */

/* ═══════════════════════════════════════
   GOOGLE FONTS — imported here so pages
   don't need to import separately
   ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&family=Syne:wght@700;800&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
  /* ── Core palette ── */
  --zen-dark:       #0A1F1F;
  --zen-deep:       #0D2B2B;
  --zen-mid:        #163535;
  --zen-muted:      #1E4545;
  --zen-border:     #234040;
  --zen-green:      #29B474;
  --zen-green-lt:   #35EA97;
  --zen-glow:       rgba(41, 180, 116, 0.15);
  --zen-glow-soft:  rgba(41, 180, 116, 0.08);
  --zen-off:        #F5F5F0;
  --zen-text:       #E8EDE8;
  --zen-sub:        #8FA89E;
  --zen-dim:        #4A6560;

  /* ── Cluster accent colours ── */
  --c-snake:        #29B474;
  --c-word:         #4DA6E8;
  --c-puzzle:       #E8A84D;
  --c-arcade:       #E85D8A;
  --c-idle:         #A87DE8;
  --c-running:      #E8734D;

  /* ── Typography ── */
  --font-display:   'Syne', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --font-mono:      'DM Mono', monospace;

  /* ── Scale ── */
  --text-xs:    11px;
  --text-sm:    13px;
  --text-base:  15px;
  --text-md:    17px;
  --text-lg:    20px;
  --text-xl:    24px;
  --text-2xl:   32px;
  --text-3xl:   42px;
  --text-4xl:   56px;

  /* ── Spacing ── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* ── Border radius ── */
  --r-sm:   6px;
  --r:      12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* ── Transitions ── */
  --ease:   0.2s ease;
  --ease-slow: 0.35s ease;

  /* ── Page padding (responsive) ── */
  --page-x: clamp(1rem, 5vw, 3rem);
  --page-y: clamp(2.5rem, 6vw, 5rem);

  /* ── Max widths ── */
  --max-content: 1280px;
  --max-text:    720px;
}

/* ═══════════════════════════════════════
   RESET
   ═══════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  background: var(--zen-dark);
  color: var(--zen-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

button {
  font-family: var(--font-body);
  cursor: pointer;
}

ul, ol { list-style: none; }

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.zp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 31, 31, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--zen-border);
  padding: 0 var(--page-x);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.zp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.zp-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--zen-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--zen-dark);
  line-height: 1;
  flex-shrink: 0;
}

.zp-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--zen-text);
  letter-spacing: -0.5px;
}

.zp-logo-text span { color: var(--zen-green); }

/* Nav links */
.zp-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.zp-nav-links a {
  color: var(--zen-sub);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--ease);
}

.zp-nav-links a:hover,
.zp-nav-links a.active { color: var(--zen-text); }

.zp-nav-cta {
  background: var(--zen-green) !important;
  color: var(--zen-dark) !important;
  padding: 7px 18px;
  border-radius: var(--r-sm);
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background var(--ease) !important;
}

.zp-nav-cta:hover { background: var(--zen-green-lt) !important; }

/* ═══════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════ */
.zp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px var(--page-x);
  font-size: var(--text-xs);
  color: var(--zen-dim);
  border-bottom: 1px solid var(--zen-border);
  flex-wrap: wrap;
}

.zp-breadcrumb a {
  color: var(--zen-dim);
  text-decoration: none;
  transition: color var(--ease);
}

.zp-breadcrumb a:hover { color: var(--zen-green); }

.zp-breadcrumb-sep { color: var(--zen-border); }

.zp-breadcrumb-current { color: var(--zen-sub); }

/* ═══════════════════════════════════════
   PAGE WRAPPER
   ═══════════════════════════════════════ */
.zp-page {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--page-y) var(--page-x);
}

.zp-page-wide {
  padding-left: var(--page-x);
  padding-right: var(--page-x);
  padding-top: var(--page-y);
  padding-bottom: var(--page-y);
}

.zp-section {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.zp-divider {
  height: 1px;
  background: var(--zen-border);
  margin: 0 var(--page-x);
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
.zp-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--zen-text);
}

.zp-h1 { font-size: clamp(2rem, 6vw, 4rem); }
.zp-h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); }
.zp-h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.zp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--zen-mid);
  border: 1px solid var(--zen-border);
  border-radius: var(--r-full);
  padding: 5px 14px;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--zen-green);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.zp-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--zen-green);
  animation: zp-pulse 2s infinite;
}

.zp-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--zen-sub);
  font-weight: 300;
  line-height: 1.75;
  max-width: var(--max-text);
}

.zp-accent { color: var(--zen-green); }

/* Section header row */
.zp-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 8px;
}

.zp-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--zen-text);
  letter-spacing: -0.5px;
}

.zp-section-link {
  font-size: var(--text-sm);
  color: var(--zen-green);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--ease);
  white-space: nowrap;
}

.zp-section-link:hover { gap: 8px; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.zp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  font-family: var(--font-body);
  white-space: nowrap;
}

.zp-btn-primary {
  background: var(--zen-green);
  color: var(--zen-dark);
}

.zp-btn-primary:hover {
  background: var(--zen-green-lt);
  transform: translateY(-1px);
}

.zp-btn-secondary {
  background: transparent;
  color: var(--zen-text);
  border: 1px solid var(--zen-border);
}

.zp-btn-secondary:hover {
  border-color: var(--zen-green);
  color: var(--zen-green);
}

.zp-btn-ghost {
  background: var(--zen-mid);
  color: var(--zen-text);
  border: 1px solid var(--zen-border);
}

.zp-btn-ghost:hover {
  background: var(--zen-muted);
  border-color: var(--zen-green);
}

.zp-btn-sm {
  padding: 7px 16px;
  font-size: var(--text-sm);
  border-radius: var(--r-sm);
}

/* ═══════════════════════════════════════
   CARDS — base
   ═══════════════════════════════════════ */
.zp-card {
  background: var(--zen-mid);
  border: 1px solid var(--zen-border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
}

.zp-card-hover {
  transition: all var(--ease);
  text-decoration: none;
  display: block;
}

.zp-card-hover:hover {
  border-color: var(--zen-green);
  background: var(--zen-muted);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   BADGES / TAGS
   ═══════════════════════════════════════ */
.zp-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.zp-badge-green  { background: rgba(41,180,116,0.15); color: var(--zen-green); }
.zp-badge-blue   { background: rgba(77,166,232,0.15); color: #4DA6E8; }
.zp-badge-amber  { background: rgba(232,168,77,0.15); color: #E8A84D; }
.zp-badge-purple { background: rgba(168,125,232,0.15); color: #A87DE8; }
.zp-badge-coral  { background: rgba(232,115,77,0.15); color: #E8734D; }
.zp-badge-pink   { background: rgba(232,93,138,0.15); color: #E85D8A; }
.zp-badge-dim    { background: var(--zen-muted); color: var(--zen-sub); }

/* ═══════════════════════════════════════
   CLUSTER CARD
   ═══════════════════════════════════════ */
.zp-cluster-card {
  background: var(--zen-mid);
  border: 1px solid var(--zen-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.zp-cluster-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent, var(--zen-green));
  opacity: 0;
  transition: opacity var(--ease);
}

.zp-cluster-card:hover {
  border-color: var(--accent, var(--zen-green));
  transform: translateY(-3px);
  background: var(--zen-muted);
}

.zp-cluster-card:hover::before { opacity: 1; }

.zp-cluster-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--accent, var(--zen-green)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent, var(--zen-green)) 25%, transparent);
}

.zp-cluster-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--zen-text);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.zp-cluster-desc {
  font-size: var(--text-sm);
  color: var(--zen-sub);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.zp-cluster-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zp-cluster-count {
  font-size: var(--text-xs);
  color: var(--accent, var(--zen-green));
  font-weight: 500;
  font-family: var(--font-mono);
}

.zp-cluster-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: color-mix(in srgb, var(--accent, var(--zen-green)) 12%, transparent);
  color: var(--accent, var(--zen-green));
  transition: transform var(--ease);
}

.zp-cluster-card:hover .zp-cluster-arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════
   GAME CARD (catalog grid)
   ═══════════════════════════════════════ */
.zp-game-card {
  background: var(--zen-mid);
  border: 1px solid var(--zen-border);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: all var(--ease);
}

.zp-game-card:hover {
  border-color: var(--zen-green);
  transform: translateY(-2px);
}

.zp-game-thumb {
  aspect-ratio: 4 / 3;
  background: var(--zen-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}

.zp-game-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(41, 180, 116, 0.08);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zp-game-card:hover .zp-game-thumb-overlay { opacity: 1; }

.zp-play-icon {
  width: 44px;
  height: 44px;
  background: var(--zen-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zen-dark);
  font-size: 18px;
}

.zp-game-info {
  padding: 10px 12px 12px;
}

.zp-game-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--zen-text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zp-game-plays {
  font-size: var(--text-xs);
  color: var(--zen-dim);
  font-family: var(--font-mono);
}

/* Games grid */
.zp-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

/* Cluster grid */
.zp-cluster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

/* ═══════════════════════════════════════
   LEADERBOARD
   ═══════════════════════════════════════ */
.zp-lb {
  background: var(--zen-mid);
  border: 1px solid var(--zen-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.zp-lb-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--zen-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.zp-lb-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--zen-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.zp-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zen-green);
  animation: zp-pulse 2s infinite;
  flex-shrink: 0;
}

.zp-lb-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.zp-lb-tab {
  font-size: var(--text-xs);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.15s;
  background: transparent;
  color: var(--zen-sub);
}

.zp-lb-tab:hover { color: var(--zen-text); }

.zp-lb-tab.active {
  background: var(--zen-green);
  color: var(--zen-dark);
}

.zp-lb-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 1.5rem;
  border-bottom: 1px solid var(--zen-border);
  transition: background 0.15s;
}

.zp-lb-row:last-child { border-bottom: none; }
.zp-lb-row:hover { background: var(--zen-muted); }

.zp-lb-rank {
  width: 28px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--zen-dim);
  flex-shrink: 0;
}

.zp-lb-rank.gold   { color: #F5C842; }
.zp-lb-rank.silver { color: #A8B8C8; }
.zp-lb-rank.bronze { color: #C87840; }

.zp-lb-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--zen-muted);
  border: 1px solid var(--zen-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.zp-lb-player { flex: 1; min-width: 0; }

.zp-lb-name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--zen-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zp-lb-location {
  font-size: var(--text-xs);
  color: var(--zen-dim);
}

.zp-lb-score {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--zen-green);
  flex-shrink: 0;
}

.zp-lb-game-tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: var(--r-full);
  background: var(--zen-muted);
  color: var(--zen-sub);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.zp-stats-bar {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
  padding: 1.5rem var(--page-x);
  border-top: 1px solid var(--zen-border);
  border-bottom: 1px solid var(--zen-border);
  background: var(--zen-mid);
}

.zp-stat-item { text-align: center; }

.zp-stat-num {
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--zen-green);
  display: block;
  letter-spacing: -0.5px;
}

.zp-stat-label {
  font-size: var(--text-xs);
  color: var(--zen-sub);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   METRIC CARDS
   ═══════════════════════════════════════ */
.zp-metric {
  background: var(--zen-mid);
  border: 1px solid var(--zen-border);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  text-align: center;
}

.zp-metric-val {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--zen-green);
  display: block;
}

.zp-metric-label {
  font-size: var(--text-xs);
  color: var(--zen-sub);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.zp-metric-sub {
  font-size: var(--text-xs);
  color: var(--zen-dim);
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════ */
.zp-feature-card {
  background: var(--zen-mid);
  border: 1px solid var(--zen-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}

.zp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--zen-glow);
  border: 1px solid rgba(41, 180, 116, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 1rem;
}

.zp-feature-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--zen-text);
  margin-bottom: 6px;
}

.zp-feature-desc {
  font-size: var(--text-sm);
  color: var(--zen-sub);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   ARTICLE / CONTENT PROSE
   Used on hub, pillar, content pages
   ═══════════════════════════════════════ */
.zp-prose {
  max-width: var(--max-text);
  color: var(--zen-sub);
  font-size: var(--text-base);
  line-height: 1.8;
}

.zp-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--zen-text);
  letter-spacing: -0.5px;
  margin: 2rem 0 0.75rem;
}

.zp-prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zen-text);
  margin: 1.5rem 0 0.5rem;
}

.zp-prose p { margin-bottom: 1rem; }

.zp-prose ul, .zp-prose ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.zp-prose ol { list-style: decimal; }

.zp-prose li { margin-bottom: 0.4rem; }

.zp-prose strong { color: var(--zen-text); font-weight: 600; }

.zp-prose a {
  color: var(--zen-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.zp-prose a:hover { color: var(--zen-green-lt); }

.zp-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--text-sm);
}

.zp-prose th {
  background: var(--zen-mid);
  color: var(--zen-text);
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--zen-border);
  font-weight: 600;
}

.zp-prose td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--zen-border);
  color: var(--zen-sub);
}

.zp-prose blockquote {
  border-left: 3px solid var(--zen-green);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--zen-sub);
  font-style: italic;
}

/* ═══════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════ */
.zp-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--zen-green);
  color: var(--zen-dark);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: zp-slide-up 0.3s ease;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.zp-cta-banner {
  background: var(--zen-mid);
  border: 1px solid var(--zen-border);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zp-cta-banner::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(41, 180, 116, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.zp-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--zen-text);
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}

.zp-cta-banner p {
  color: var(--zen-sub);
  font-size: var(--text-base);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.zp-footer {
  border-top: 1px solid var(--zen-border);
  padding: 2rem var(--page-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.zp-footer-copy {
  font-size: var(--text-sm);
  color: var(--zen-dim);
}

.zp-footer-links {
  display: flex;
  gap: 20px;
}

.zp-footer-links a {
  font-size: var(--text-sm);
  color: var(--zen-dim);
  text-decoration: none;
  transition: color var(--ease);
}

.zp-footer-links a:hover { color: var(--zen-green); }

/* ═══════════════════════════════════════
   GRID UTILITIES
   ═══════════════════════════════════════ */
.zp-grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.zp-grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.zp-grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes zp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes zp-slide-up {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes zp-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.zp-fade-in { animation: zp-fade-in 0.5s ease both; }

/* ═══════════════════════════════════════
   AD SLOTS
   ═══════════════════════════════════════ */
.zp-ad-slot {
  width: 100%;
  background: var(--zen-mid);
  border: 1px dashed var(--zen-border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zen-dim);
  font-size: var(--text-xs);
  min-height: 90px;
  text-align: center;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .zp-nav-links { display: none; }
  .zp-cluster-grid { grid-template-columns: 1fr 1fr; }
  .zp-games-grid { grid-template-columns: repeat(3, 1fr); }
  .zp-lb-game-tag { display: none; }
}

@media (max-width: 480px) {
  .zp-cluster-grid { grid-template-columns: 1fr; }
  .zp-games-grid { grid-template-columns: repeat(2, 1fr); }
  .zp-lb-location { display: none; }
  .zp-grid-2, .zp-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .zp-games-grid { grid-template-columns: repeat(2, 1fr); }
}
