/* Syntra — deep navy shell (#070b15 / #12162b) + orange/gold accents */
:root {
  --bg: #070b15;
  --bg2: #0a0e18;
  --bg-nav: #070b15;
  --bg-inset: #12162b;
  --bg-card: #151a2e;
  --bg-card-deep: #0d101e;
  --border-ui: #1f243d;
  --accent: #ff8000;
  --accent-bright: #ff9933;
  --accent-dim: rgba(255, 128, 0, 0.35);
  /* Game picker + nav active pill — shared gold (card wedge / bottom accent) */
  --pick-gold: #d9a000;
  --pick-gold-mid: #f0b010;
  --pick-gold-bright: #ffc21a;
  --pick-gold-top: #ffe066;
  --pick-gold-glow: rgba(255, 190, 40, 0.42);
  --pick-gold-shadow: rgba(220, 165, 0, 0.38);
  --white: #e2e8f0;
  --muted: #94a3b8;
  --discord: #5865f2;
  --hdr-top: 70px;
  --hdr-stack: var(--hdr-top);
  --hdr-inset: clamp(1rem, 4vw, 2.5rem);
  --hdr-max: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}
body.zc-page-home #stars {
  opacity: 0;
  pointer-events: none;
}

/* —— Top bar: single row — nav center, Discord (+ cart) right —— */
.zc-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--hdr-top);
  padding: 0 var(--hdr-inset);
  background: var(--bg);
  border-bottom: 1px solid var(--border-ui);
  overflow: visible;
}
.zc-topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 52% 160% at 50% 115%, rgba(139, 92, 246, 0.12) 0%, transparent 58%),
    radial-gradient(ellipse 40% 100% at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 65%);
}
.zc-header-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem 1rem;
}
.zc-topbar-left {
  justify-self: start;
  grid-column: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}
.zc-wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.zc-wordmark-logo {
  height: clamp(40px, 4.8vw, 52px);
  width: auto;
  max-width: min(140px, 32vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}
.zc-header-nav {
  justify-self: center;
  grid-column: 2;
  min-width: 0;
  max-width: min(100vw - 2 * var(--hdr-inset) - 300px, 580px);
}
.zc-topbar-right {
  justify-self: end;
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.zc-btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 1.12rem;
  background: var(--discord);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}
.zc-btn-discord:hover { filter: brightness(1.08); transform: translateY(-1px); }
.zc-btn-discord svg { width: 21px; height: 21px; flex-shrink: 0; }

.zc-subnav-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.3rem;
  padding: 0.38rem 0.5rem;
  background: color-mix(in srgb, var(--bg-inset) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--border-ui) 85%, transparent);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.zc-subnav-links::-webkit-scrollbar { display: none; }
.zc-subnav-links a {
  display: inline-flex;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-items: center;
  gap: 0.48rem;
  padding: 0.48rem 1.02rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: #a8b0c4;
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.26s cubic-bezier(.22,.61,.36,1), background 0.26s cubic-bezier(.22,.61,.36,1), box-shadow 0.3s ease, transform 0.24s cubic-bezier(.22,.61,.36,1);
  white-space: nowrap;
  flex-shrink: 0;
}
.zc-subnav-links a::before {
  content: '';
  position: absolute;
  inset: -130% auto auto -40%;
  width: 46%;
  height: 320%;
  transform: rotate(20deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.24) 45%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.zc-subnav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.zc-subnav-links a > * {
  position: relative;
  z-index: 1;
}
.zc-subnav-links a svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: currentColor;
  opacity: 0.95;
  transition: transform 0.26s ease;
}
.zc-subnav-links a:hover {
  color: rgba(232, 235, 245, 0.95);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34), 0 0 18px rgba(255, 255, 255, 0.08);
}
.zc-subnav-links a:hover svg {
  transform: scale(1.1);
}
.zc-subnav-links a:hover::before {
  opacity: 1;
  animation: zcNavSheen 0.72s ease;
}
.zc-subnav-links a.zc-nav-active {
  color: var(--bg);
  background: linear-gradient(180deg, var(--pick-gold-top) 0%, var(--pick-gold-mid) 40%, var(--pick-gold) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 4px 16px var(--pick-gold-shadow),
    0 0 18px var(--pick-gold-glow);
}
.zc-subnav-links a.zc-nav-active svg {
  color: var(--bg);
  opacity: 1;
}
.zc-subnav-links a:active {
  transform: translateY(0) scale(0.93);
}
.zc-subnav-links a:active::after {
  opacity: 1;
  animation: zcNavRipple 0.5s ease-out;
}
@keyframes zcNavSheen {
  from { left: -40%; opacity: 0; }
  20% { opacity: 0.8; }
  to { left: 120%; opacity: 0; }
}
@keyframes zcNavRipple {
  from { transform: translate(-50%, -50%) scale(0); opacity: 0.38; }
  to { transform: translate(-50%, -50%) scale(16); opacity: 0; }
}
.zc-cart-ic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.zc-cart-ic:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.zc-cart-ic .cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 0.65rem;
  font-weight: 800;
  background: var(--accent);
  color: #1a1208;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
}
.zc-cart-ic .cart-badge.show { display: flex; }
.zc-cart-ic svg {
  width: 24px;
  height: 24px;
}

/* Hide center nav pill on phones (portrait + landscape) and small tablets; 768px misses many phones sideways */
@media screen and (max-width: 1024px) {
  .zc-header-inner {
    grid-template-columns: auto 1fr;
    gap: 0.5rem 0.75rem;
  }
  .zc-topbar-left {
    grid-column: 1;
  }
  .zc-header-nav {
    display: none !important;
  }
  .zc-topbar-right {
    grid-column: 2;
    justify-self: end;
  }
}
@media (max-width: 720px) {
  .zc-wordmark-logo {
    height: clamp(36px, 10vw, 46px);
    max-width: min(120px, 28vw);
  }
}
@media (max-width: 520px) {
  .zc-header-inner {
    gap: 0.4rem 0.55rem;
  }
  .zc-btn-discord {
    padding: 0.42rem 0.78rem;
    font-size: 0.76rem;
  }
  .zc-btn-discord svg {
    width: 18px;
    height: 18px;
  }
}

main.zc-main { position: relative; z-index: 1; padding-top: var(--hdr-stack); }

/* —— Hero (reference: left copy, right art, diagonal accent beams) —— */
.zc-hero {
  position: relative;
  min-height: clamp(440px, 60vh, 700px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
}
.zc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 95% at 100% 45%, rgba(255, 160, 40, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 45% 50% at 72% 20%, rgba(255, 210, 80, 0.09) 0%, transparent 45%);
}
.zc-hero.zc-hero--image-only::before {
  display: none;
}
.zc-hero.zc-hero--image-only {
  min-height: clamp(280px, 48vh, 580px);
}
.zc-hero-fullimg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.zc-hero-fullimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.zc-hero-beams {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent calc(52% - 1px), rgba(255, 130, 60, 0.35) 52%, transparent calc(52% + 2px)),
    linear-gradient(112deg, transparent calc(64% - 1px), rgba(255, 120, 40, 0.22) 64%, transparent calc(64% + 2px)),
    linear-gradient(124deg, transparent calc(76% - 1px), rgba(200, 100, 255, 0.14) 76%, transparent calc(76% + 2px)),
    linear-gradient(108deg, transparent calc(88% - 1px), rgba(255, 140, 70, 0.12) 88%, transparent calc(88% + 2px));
  opacity: 0.9;
}
.zc-hero-trio {
  position: absolute;
  top: 0;
  right: -4%;
  width: 56%;
  height: 100%;
  z-index: 1.5;
  pointer-events: none;
  overflow: hidden;
}
.zc-hero-trio img {
  width: 140%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 52%;
  display: block;
}
@media (max-width: 900px) {
  .zc-hero-trio { display: none; }
}
.zc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 2.1rem 2rem 2.6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: flex-start;
}
.zc-hero-copy {
  max-width: 560px;
}
@media (max-width: 900px) {
  .zc-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 2.1rem 1.5rem 3rem;
  }
  .zc-hero-art {
    order: -1;
    justify-self: center !important;
    max-width: min(100%, 540px);
    height: min(560px, 52vh);
  }
  .zc-hero-copy { max-width: 100%; }
}
.zc-hero h1 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}
.zc-hero h1 .zc-h1-line1 {
  display: block;
  color: #fff;
}
.zc-hero h1 .zc-line2 {
  display: block;
  margin-top: 0.1em;
  color: var(--accent-bright);
  text-shadow: 0 0 48px var(--accent-dim);
}
.zc-hero p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(245, 245, 247, 0.82);
  max-width: 580px;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .zc-hero p { margin-left: auto; margin-right: auto; }
}
.zc-hero-art {
  position: relative;
  justify-self: stretch;
  align-self: center;
  width: 100%;
  max-width: none;
  height: min(780px, 82vh);
}
.zc-hero-art-inner {
  position: relative;
  filter: drop-shadow(0 0 72px rgba(255, 128, 0, 0.18));
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.zc-hero-art img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 88% 50%;
  display: block;
}
.zc-hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (max-width: 900px) {
  .zc-hero-btns { justify-content: center; }
}
.zc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  background: var(--accent);
  color: #1a1208;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}
.zc-btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); }
.zc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s, border-color 0.2s;
}
.zc-btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 128, 0, 0.35); }

/* Hero — split: left copy, right transparent cutout PNG */
.zc-hero.zc-hero--banner-split {
  min-height: clamp(420px, 52vh, 640px);
  background: var(--bg);
}
.zc-hero.zc-hero--banner-split::before {
  background:
    radial-gradient(ellipse 78% 95% at 24% 42%, rgba(255, 210, 90, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 75% 90% at 86% 46%, rgba(255, 185, 55, 0.2) 0%, transparent 54%),
    radial-gradient(ellipse 55% 65% at 82% 74%, rgba(120, 85, 12, 0.35) 0%, transparent 52%);
}
.zc-hero.zc-hero--banner-split .zc-hero-beams {
  display: none;
}
.zc-hero.zc-hero--banner-split .zc-hero-trio {
  display: none;
}
.zc-hero.zc-hero--banner-split .zc-hero-inner {
  direction: ltr;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.92fr);
  gap: 1rem 2.25rem;
  align-items: center;
  justify-items: start;
  text-align: left;
  padding: 2.4rem 2rem 2.9rem;
}
.zc-hero.zc-hero--banner-split .zc-hero-copy {
  grid-column: 1;
  min-width: 0;
  max-width: min(620px, 65vw);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.zc-hero.zc-hero--banner-split .zc-hero-copy h1 {
  margin-bottom: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(1.85rem, 4.2vw + 0.65rem, 3.75rem);
}
.zc-hero.zc-hero--banner-split .zc-hero-copy h1 .zc-h1-line1 {
  color: #fff;
}
.zc-hero.zc-hero--banner-split .zc-hero-copy h1 .zc-line2 {
  display: inline-block;
  margin-top: 0.22em;
  white-space: nowrap;
  max-width: none;
  background: linear-gradient(95deg, #ff8c00 0%, #ffb020 42%, #ffe066 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(255, 155, 50, 0.22)) drop-shadow(0 0 18px rgba(255, 135, 0, 0.09));
}
@media (min-width: 521px) {
  .zc-hero.zc-hero--banner-split .zc-hero-copy h1 .zc-h1-line1 {
    white-space: nowrap;
  }
}
.zc-hero.zc-hero--banner-split .zc-hero-copy p {
  margin-top: 2.25rem;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  font-size: 1.0625rem;
  line-height: 1.68;
  font-weight: 400;
  color: #d1d5db;
}
.zc-hero.zc-hero--banner-split .zc-hero-visual {
  grid-column: 2;
  justify-self: stretch;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: min(360px, 44vh);
  padding: 0 0 0 0.5rem;
}
.zc-hero.zc-hero--banner-split .zc-hero-visual img {
  width: auto;
  max-width: min(92%, 620px);
  height: auto;
  max-height: min(480px, 52vh);
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 12px 48px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 32px rgba(255, 160, 50, 0.14));
}
@media (max-width: 900px) {
  .zc-hero.zc-hero--banner-split .zc-hero-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    padding: 2rem 1.5rem 2.5rem;
  }
  .zc-hero.zc-hero--banner-split .zc-hero-copy {
    max-width: 100%;
    order: 1;
  }
  .zc-hero.zc-hero--banner-split .zc-hero-visual {
    grid-column: 1;
    order: -1;
    min-height: min(220px, 34vh);
    width: 100%;
    max-width: min(100%, 480px);
    justify-self: center;
    padding: 0;
  }
  .zc-hero.zc-hero--banner-split .zc-hero-visual img {
    max-height: min(320px, 38vh);
  }
}

/* Breadcrumb bar (default: full-width strip on inner pages) */
.zc-crumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.45rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid color-mix(in srgb, var(--border-ui) 70%, transparent);
  font-size: 0.9rem;
}
.zc-crumb a { color: var(--muted); text-decoration: none; }
.zc-crumb a:hover { color: var(--accent-bright); }
.zc-crumb-home {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.zc-crumb-home svg { flex-shrink: 0; opacity: 0.85; }
.zc-crumb-right {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 500;
}

/* Store stack: home bar aligned with game grid + rule above heading */
.zc-store-stack {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0.6rem 2rem 0;
  box-sizing: border-box;
}
.zc-store-stack .zc-crumb {
  padding: 5px 8px 5px 5px;
  min-height: 46px;
  background: var(--bg-inset);
  border: 1px solid color-mix(in srgb, var(--border-ui) 80%, transparent);
  border-radius: 6px;
  border-bottom: 1px solid color-mix(in srgb, var(--border-ui) 80%, transparent);
  box-sizing: border-box;
}
.zc-store-stack .zc-crumb-home {
  padding: 0.45rem 1.5rem 0.45rem 1.1rem;
  background: var(--bg-card-deep);
  color: color-mix(in srgb, var(--white) 92%, transparent);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 4px 0 0 4px;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
  transition: background 0.2s, color 0.2s;
}
.zc-store-stack .zc-crumb-home:hover {
  color: var(--white);
  background: var(--bg-card);
}
.zc-store-stack .zc-crumb-home svg {
  display: none;
}
.zc-store-stack .zc-crumb-right {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding-right: 0.45rem;
}
.zc-store-stack .zc-crumb-right svg {
  width: 15px;
  height: 15px;
  opacity: 0.55;
  stroke: currentColor;
}
.zc-store-stack .zc-select-game {
  max-width: none;
  margin: 0;
  padding: 0 0 3.5rem;
}
.zc-select-heading-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.75rem;
  margin-top: 0.55rem;
}
.zc-select-heading-block h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .zc-store-stack {
    padding: 1.25rem 1rem 0;
  }
}

/* Select your game */
.zc-select-game {
  padding: 3.25rem 2rem 3.5rem;
  max-width: 1480px;
  margin: 0 auto;
}
.zc-select-game h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.zc-product-categories {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.zc-cat-block.zc-cat-empty {
  display: none;
}
.zc-cat-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 190, 50, 0.22);
}
/* Game picker cards (reference: subtle borders, light shadow) */
.zc-pick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
@media (max-width: 1100px) { .zc-pick-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .zc-pick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .zc-pick-grid { grid-template-columns: 1fr; } }

.zc-pick-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  padding: 0;
  margin: 0;
  outline: none;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
a.zc-pick-card.zc-pick-card--link {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
/* Pre-made cover art (includes title + border) — no extra overlays */
.zc-pick-card--full-art {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}
.zc-pick-card--full-art .zc-pick-card-img {
  object-fit: cover;
  object-position: center center;
}
.zc-pick-card--full-art:hover,
.zc-pick-card--full-art:focus-visible {
  border-color: rgba(255, 200, 70, 0.5);
}
.zc-pick-card:hover,
.zc-pick-card:focus-visible {
  border-color: rgba(255, 200, 60, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}
.zc-pick-card.zc-pick-hidden {
  display: none;
}
.zc-pick-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.zc-pick-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 38%,
    rgba(120, 85, 0, 0.32) 72%,
    rgba(230, 165, 0, 0.52) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.zc-pick-wedge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 130%;
  height: 52%;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 200, 50, 0.4) 55%, rgba(220, 155, 0, 0.5) 100%);
  clip-path: polygon(50% 18%, 100% 100%, 0% 100%);
  z-index: 2;
  pointer-events: none;
}
.zc-pick-diagonal {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 32%;
  background: linear-gradient(125deg, transparent 35%, var(--pick-gold) 35%, var(--pick-gold-bright) 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 3;
  opacity: 0.92;
  pointer-events: none;
  box-shadow: -6px 0 24px var(--pick-gold-shadow);
}
.zc-pick-title {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.75rem;
  z-index: 4;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.05rem, 3vw, 1.65rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.9),
    0 0 28px rgba(255, 190, 50, 0.38);
}
.zc-pick-title--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  bottom: 0.65rem;
}
.zc-pick-title--stacked .zc-pick-line {
  display: block;
  font-size: clamp(0.98rem, 2.6vw, 1.48rem);
  letter-spacing: 0.14em;
  line-height: 1.05;
}

.zc-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) { .zc-game-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .zc-game-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .zc-game-grid { grid-template-columns: 1fr; } }

.zc-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.zc-card:hover {
  border-color: rgba(255, 200, 60, 0.48);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 28px var(--pick-gold-glow);
  transform: translateY(-3px);
}
.zc-card.zc-card-hidden { display: none; }
.zc-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #2a3145 0%, var(--bg-card-deep) 100%);
  overflow: hidden;
}
/* Dark upward triangle (reference layout; accent is orange, not purple) */
.zc-card-bg::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  width: 135%;
  height: 78%;
  background: radial-gradient(ellipse 55% 40% at 50% 100%, rgba(0, 0, 0, 0.72) 0%, rgba(12, 12, 18, 0.5) 45%, transparent 70%);
  clip-path: polygon(50% 8%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 1;
}
.zc-card-shape {
  position: absolute;
  bottom: -15%;
  left: -20%;
  width: 140%;
  height: 75%;
  background: linear-gradient(32deg, rgba(255, 128, 0, 0.22) 0%, rgba(255, 128, 0, 0.5) 42%, rgba(255, 90, 0, 0.18) 100%);
  clip-path: polygon(0 40%, 100% 15%, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 2;
}
/* Orange diagonal slash above title bar (purple accent replacement) */
.zc-card-bg::after {
  content: '';
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: 3.15rem;
  height: 18px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent-bright) 50%, var(--accent) 75%, transparent 100%);
  transform: skewX(-16deg) scaleY(0.85);
  box-shadow: 0 0 20px rgba(255, 128, 0, 0.45);
  pointer-events: none;
  z-index: 4;
}
.zc-card-img {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 88%;
  height: 65%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.28) contrast(1.14) brightness(0.9);
  pointer-events: none;
  transition: filter 0.25s;
  z-index: 3;
}
.zc-card:hover .zc-card-img {
  filter: saturate(1.05) contrast(1.05) brightness(1);
}
.zc-card-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 3.25rem;
  background: linear-gradient(180deg, #c45f00 0%, var(--accent) 40%, #e87300 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.75rem 0.55rem;
  box-shadow: 0 -4px 24px rgba(255, 128, 0, 0.35);
  z-index: 5;
}
.zc-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(0.7rem, 1.5vw, 0.82rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.zc-card-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
  margin-top: 0.15rem;
}

/* Why choose */
.zc-why-wrap {
  padding: 1.25rem 2rem 3.5rem;
  max-width: 1320px;
  margin: 0 auto;
}
.zc-why-box {
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 2.75rem 2.25rem 2.5rem;
}
.zc-why-box h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.4vw, 2.15rem);
  margin-bottom: 0.85rem;
}
.zc-why-box h2 span { color: var(--accent-bright); }
.zc-why-box > p {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}
.zc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .zc-why-grid { grid-template-columns: 1fr; } }
.zc-why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem 1.35rem;
  text-align: center;
}
.zc-why-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 128, 0, 0.2);
  border: 1px solid rgba(255, 128, 0, 0.4);
  border-radius: 8px;
  color: var(--accent-bright);
}
.zc-why-icon svg { width: 24px; height: 24px; }
.zc-why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}
.zc-why-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Testimonials — boxed grid (same shell as Why Choose; homepage) */
.zc-testimonials-wrap {
  position: relative;
  z-index: 2;
  padding: 0 2rem 3.5rem;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .zc-testimonials-wrap { padding-left: 1.25rem; padding-right: 1.25rem; }
}
.zc-testimonials-box {
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 2.75rem 2.25rem 2.5rem;
  box-shadow:
    0 0 0 1px rgba(255, 200, 120, 0.08),
    0 12px 48px rgba(0, 0, 0, 0.4),
    0 0 64px rgba(255, 130, 50, 0.06);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5rem;
}
.testimonials-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.4vw, 2.15rem);
  margin-bottom: 0.65rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.testimonials-header p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .zc-testimonials-box { padding: 2rem 1.25rem 1.75rem; }
}
.testimonial-card {
  background: rgba(10, 11, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.2rem 1.25rem;
  min-width: 0;
}
.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}
.testimonial-user { display: flex; align-items: center; gap: 0.65rem; min-width: 0; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(160deg, #ffc966 0%, var(--accent-bright) 42%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-time { font-size: 0.72rem; color: var(--muted); flex-shrink: 0; }
.testimonial-stars {
  display: flex;
  gap: 0.1rem;
  margin-bottom: 0.55rem;
}
.testimonial-stars svg {
  width: 15px;
  height: 15px;
  color: var(--accent-bright);
  fill: currentColor;
}
.testimonial-quote {
  font-size: 0.9rem;
  color: rgba(195, 197, 212, 0.95);
  line-height: 1.55;
  margin: 0;
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after { content: '"'; }

/* Footer */
.footer-zc {
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 2rem 0;
  margin-top: 1rem;
}
.footer-zc-inner { max-width: 1320px; margin: 0 auto; }
.footer-zc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 900px) {
  .footer-zc-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-zc-brand img { height: 46px; margin-bottom: 1.1rem; }
.footer-zc-brand p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 340px;
}
.footer-zc h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer-zc ul { list-style: none; }
.footer-zc ul li { margin-bottom: 0.45rem; }
.footer-zc-mid ul li,
.footer-zc-cheats li {
  position: relative;
  padding-left: 1rem;
}
.footer-zc-mid ul li::before,
.footer-zc-cheats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-dim);
}
.footer-zc a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-zc a:hover { color: var(--accent-bright); }
.footer-zc-cheats {
  columns: 2;
  column-gap: 1.5rem;
}
.footer-zc-cheats li { break-inside: avoid; }
.footer-zc-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0 1.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.footer-zc-bar a { color: var(--muted); text-decoration: none; }
.footer-zc-bar a:hover { color: var(--white); }
.footer-zc-bar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.footer-zc-bar select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.8rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Slim reviews band (screenshot flow: grid → why → footer) */
.zc-reviews-mini {
  padding: 1.6rem 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.zc-reviews-mini-inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  color: var(--muted);
}
.zc-reviews-mini a {
  color: var(--accent-bright);
  font-weight: 600;
  text-decoration: none;
}
.zc-reviews-mini a:hover { text-decoration: underline; }
