/* Voxeonn.com — Vegas Journey promo · 2026 · midnight neon grid */
:root {
  --void: #060b14;
  --night: #0c1525;
  --panel: #111d32;
  --surface: #162338;
  --mist: #8b9cb8;
  --snow: #e8eef8;
  --ink: #f0f4fc;
  --coral: #ff6b4a;
  --coral-dim: rgba(255, 107, 74, 0.2);
  --cyan: #3ee8ff;
  --cyan-dim: rgba(62, 232, 255, 0.15);
  --gold: #ffc857;
  --lime: #7dff8a;
  --line: rgba(232, 238, 248, 0.08);
  --line-bright: rgba(62, 232, 255, 0.35);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(62, 232, 255, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1200px;
  --play-url: "https://play.google.com/store/apps/details?id=com.candygrill.vegasjourney&hl=en";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--snow);
  background: var(--void);
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}

/* Animated background */
.vox-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.vox-bg__mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(
      ellipse 50% 40% at 15% 25%,
      var(--cyan-dim),
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 35% at 85% 15%,
      var(--coral-dim),
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 45% at 50% 90%,
      rgba(255, 200, 87, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, var(--void) 0%, var(--night) 50%, #0a1220 100%);
  animation: vox-mesh-pulse 22s ease-in-out infinite alternate;
}

.vox-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    black 20%,
    transparent 75%
  );
  animation: vox-grid-drift 48s linear infinite;
}

.vox-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  animation: vox-orb-float 18s ease-in-out infinite;
}

.vox-bg__orb--a {
  width: 280px;
  height: 280px;
  background: var(--cyan);
  top: 8%;
  left: -5%;
  animation-delay: 0s;
}

.vox-bg__orb--b {
  width: 220px;
  height: 220px;
  background: var(--coral);
  top: 60%;
  right: -8%;
  animation-delay: -6s;
}

.vox-bg__orb--c {
  width: 160px;
  height: 160px;
  background: var(--gold);
  bottom: 10%;
  left: 40%;
  animation-delay: -12s;
}

.vox-bg__chip {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  color: rgba(62, 232, 255, 0.05);
  user-select: none;
  animation: vox-chip-spin 24s linear infinite;
}

.vox-bg__chip--1 {
  top: 18%;
  right: 12%;
}
.vox-bg__chip--2 {
  bottom: 22%;
  left: 8%;
  animation-direction: reverse;
}
.vox-bg__chip--3 {
  top: 48%;
  left: 55%;
  font-size: 2rem;
  opacity: 0.7;
}

@keyframes vox-mesh-pulse {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.05) translate(2%, -1%);
  }
}

@keyframes vox-grid-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(56px, 56px);
  }
}

@keyframes vox-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -20px) scale(1.08);
  }
}

@keyframes vox-chip-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Contain images globally */
.contain-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--panel);
}

.contain-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--cyan);
  color: var(--void);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Age gate */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 11, 20, 0.92);
  backdrop-filter: blur(12px);
}

.age-overlay.is-hidden {
  display: none;
}

.age-card {
  max-width: 420px;
  width: 100%;
  padding: 36px 32px;
  background: var(--panel);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow), var(--shadow-glow);
  text-align: center;
}

.age-card h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: var(--ink);
}

.age-card p {
  margin: 0 0 20px;
  color: var(--mist);
  font-size: 0.95rem;
}

.age-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 8px;
}

.age-range {
  width: 100%;
  margin: 12px 0 8px;
  height: 8px;
  accent-color: var(--cyan);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: var(--surface);
  border-radius: 999px;
  border: 1px solid var(--line-bright);
}

.age-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #2bb8d4);
  border: 2px solid var(--ink);
  box-shadow: 0 4px 14px rgba(62, 232, 255, 0.45);
  cursor: grab;
}

.age-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #2bb8d4);
  border: 2px solid var(--ink);
  box-shadow: 0 4px 14px rgba(62, 232, 255, 0.45);
  cursor: grab;
}

.age-hint {
  font-size: 0.82rem;
  color: var(--mist);
  margin: 0 0 16px;
}

.btn-enter {
  width: 100%;
  padding: 14px 24px;
  margin-bottom: 10px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), #ff8f6b);
  color: var(--void);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
}

.btn-enter:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-enter:not(:disabled):hover {
  transform: translateY(-2px);
}

.btn-age-no {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  background: transparent;
  color: var(--mist);
  border: 1px solid var(--line);
  transition: color 0.15s, border-color 0.15s;
}

.btn-age-no:hover {
  color: var(--snow);
  border-color: var(--line-bright);
}

/* Compliance strip */
.compliance-strip {
  background: linear-gradient(
    90deg,
    var(--panel),
    var(--surface),
    var(--panel)
  );
  border-bottom: 1px solid var(--line-bright);
  padding: 10px 20px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--mist);
  text-align: center;
}

.compliance-strip p {
  margin: 0 auto;
  max-width: 960px;
}

.compliance-strip strong {
  color: var(--snow);
}

.badge-18 {
  display: inline-block;
  padding: 2px 8px;
  margin: 0 4px;
  background: var(--coral);
  color: var(--void);
  font-weight: 800;
  font-size: 0.72rem;
  border-radius: 4px;
  vertical-align: middle;
}

/* Header */
.site-mast {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(6, 11, 20, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.mast-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid var(--line-bright);
  flex-shrink: 0;
}

.brand__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand__sub {
  display: block;
  font-size: 0.75rem;
  color: var(--cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-core,
.nav-spotlight {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.nav-core a,
.nav-spotlight a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
}

.nav-core a:hover,
.nav-spotlight a:hover,
.nav-core a[aria-current="page"],
.nav-spotlight a[aria-current="page"] {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.nav-spotlight a {
  color: var(--gold);
}

.nav-spotlight a:hover,
.nav-spotlight a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Layout */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 8px;
}

.page-hero {
  margin-bottom: 40px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.2;
}

.page-hero .lead {
  margin: 0;
  color: var(--mist);
  max-width: 640px;
}

/* Store description block */
.store-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 36px;
}

.store-block .notice {
  margin: 0 0 16px;
  padding: 12px 16px;
  background: rgba(255, 107, 74, 0.12);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--snow);
  border: 1px solid var(--coral-dim);
}

.store-block h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: var(--gold);
}

.store-block p {
  margin: 0 0 12px;
  color: var(--mist);
}

.store-block p:last-child {
  margin-bottom: 0;
}

/* Bento hero */
.bento-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .bento-hero {
    grid-template-columns: 1fr;
  }
}

.bento-main {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.bento-main::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, var(--cyan-dim), transparent 70%);
  pointer-events: none;
}

.bento-main h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin: 0 0 16px;
  color: var(--ink);
  position: relative;
}

.bento-main .lead {
  color: var(--mist);
  margin: 0 0 24px;
  position: relative;
}

.bento-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spec-tile {
  background: var(--surface);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-lg);
  padding: 20px;
  flex: 1;
}

.spec-tile .logo-mark--lg {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 20px;
}

.spec-tile ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
}

.spec-tile li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--mist);
}

.spec-tile li:last-child {
  border-bottom: none;
}

.spec-tile strong {
  color: var(--snow);
}

.mini-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px dashed var(--line-bright);
  font-size: 0.82rem;
  color: var(--mist);
}

.mini-banner .logo-mark--sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Store badge */
.store-cta {
  display: inline-block;
  line-height: 0;
  transition:
    transform 0.2s,
    filter 0.2s;
}

.store-cta:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 8px 20px rgba(62, 232, 255, 0.25));
}

.store-cta img {
  display: block;
  height: auto;
  max-width: 200px;
}

/* Metrics */
.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

@media (max-width: 700px) {
  .metric-band {
    grid-template-columns: repeat(2, 1fr);
  }
}

.metric-cell {
  text-align: center;
  padding: 20px 12px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.metric-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 4px;
}

.metric-cell span {
  font-size: 0.78rem;
  color: var(--mist);
}

/* Section heads */
.sec-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
}

.sec-head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
  color: var(--ink);
}

.sec-head p {
  margin: 0;
  color: var(--mist);
  font-size: 0.9rem;
  max-width: 360px;
}

/* Feature bento */
.feature-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .feature-bento {
    grid-template-columns: 1fr;
  }
}

.feat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.feat-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}

.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  border: 1px solid var(--line);
}

.feat-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--ink);
}

.feat-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mist);
}

/* CTA band */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--panel), var(--surface));
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-xl);
  margin-bottom: 40px;
}

.cta-band p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: var(--mist);
  font-size: 0.92rem;
}

/* Screenshots bento */
.shots-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .shots-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shot-tile {
  background: var(--panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}

.shot-frame {
  aspect-ratio: 9/16;
  max-height: 320px;
  background: var(--void);
}

.shot-tile figcaption {
  padding: 10px 12px;
  font-size: 0.8rem;
  color: var(--mist);
  text-align: center;
}

/* Carousel */
.slide-stage {
  position: relative;
  background: var(--panel);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: 20px 56px;
  margin-bottom: 40px;
}

.slide-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slide-item {
  display: none;
}

.slide-item.is-active {
  display: block;
}

.slide-frame {
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 360px;
  min-height: 420px;
  max-height: 560px;
  margin: 0 auto;
  background: var(--void);
}

.slide-frame.contain-slot img {
  max-height: 100%;
}

@media (max-width: 768px) {
  .slide-stage {
    padding: 14px 40px 18px;
  }

  .slide-frame {
    max-width: none;
    width: 100%;
    min-height: min(78vh, 720px);
    max-height: min(82vh, 760px);
    aspect-ratio: 9/16;
  }

  .slide-nav {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .slide-nav--prev {
    left: 6px;
  }

  .slide-nav--next {
    right: 6px;
  }
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-bright);
  background: var(--surface);
  color: var(--cyan);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.slide-nav--prev {
  left: 12px;
}
.slide-nav--next {
  right: 12px;
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
}

.slide-dot.is-active {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

/* Tabs reviews */
.pill-tabs {
  margin-bottom: 40px;
}

.pill-tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.pill-tab {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mist);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.pill-tab.is-active {
  background: var(--cyan);
  color: var(--void);
  border-color: var(--cyan);
}

.pill-panel {
  display: none;
}

.pill-panel.is-active {
  display: block;
}

.review-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .review-mosaic {
    grid-template-columns: 1fr;
  }
}

.review-tile {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.review-top {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.review-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-bright);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.review-meta {
  font-size: 0.78rem;
  color: var(--mist);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.review-tile p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mist);
  font-style: italic;
}

/* Photo strip */
.media-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

@media (max-width: 700px) {
  .media-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.media-cell {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}

/* Tag cloud */
.tag-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tag-flow span {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mist);
}

/* FAQ */
.faq-stack {
  margin-bottom: 40px;
}

.faq-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--panel);
}

.faq-row button {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-row button::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.2rem;
}

.faq-row.is-open button::after {
  content: "−";
}

.faq-body {
  display: none;
  padding: 0 20px 16px;
  color: var(--mist);
  font-size: 0.9rem;
}

.faq-row.is-open .faq-body {
  display: block;
}

/* Games page */
.flagship-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--panel);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-bright);
  margin-bottom: 36px;
}

@media (max-width: 700px) {
  .flagship-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.flagship-bar h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  color: var(--ink);
}

.flagship-bar p {
  margin: 0;
  color: var(--mist);
}

.demo-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  background: var(--panel);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  margin-bottom: 36px;
}

@media (max-width: 700px) {
  .demo-card {
    grid-template-columns: 1fr;
  }
}

.demo-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--void);
  aspect-ratio: 16/10;
}

.demo-trigger img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.demo-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 11, 20, 0.45);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.demo-trigger:hover .demo-play {
  background: rgba(62, 232, 255, 0.25);
}

.demo-label {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--coral-dim);
  color: var(--coral);
  border-radius: 999px;
}

/* Prose */
.prose-zone {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  max-width: 800px;
}

.prose-zone h2 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.2rem;
  margin: 28px 0 10px;
}

.prose-zone h2:first-of-type {
  margin-top: 0;
}

.prose-zone p,
.prose-zone li {
  color: var(--mist);
}

.prose-zone ul {
  padding-left: 20px;
}

/* Timeline (reel-atlas) */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-bottom: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--cyan), var(--coral));
}

.tl-item {
  position: relative;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: var(--panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.tl-item h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.tl-item p {
  margin: 0;
  color: var(--mist);
  font-size: 0.92rem;
}

/* Echo grid (spin-echo) */
.echo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .echo-grid {
    grid-template-columns: 1fr;
  }
}

.echo-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}

/* Footer */
.site-foot {
  border-top: 1px solid var(--line);
  background: var(--night);
  padding: 40px 24px 32px;
  margin-top: 20px;
}

.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.foot-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.foot-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.foot-brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 4px;
}

.foot-meta {
  font-size: 0.82rem;
  color: var(--mist);
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.foot-nav a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.foot-nav a:hover {
  color: var(--cyan);
}

.foot-legal {
  margin: 0;
  font-size: 0.78rem;
  color: var(--mist);
  line-height: 1.6;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.foot-cta {
  margin-top: 20px;
  text-align: center;
}

/* Game modal */
.game-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.game-modal.is-hidden {
  display: none;
}

.game-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 20, 0.85);
}

.game-modal__panel {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  background: var(--panel);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.game-modal__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}

.game-modal__top h2 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
}

.game-modal__close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--surface);
  color: var(--snow);
  font-size: 1.4rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.game-modal__frame {
  width: 100%;
  height: min(70vh, 560px);
  border: none;
  background: var(--void);
}

.icon-deco-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.icon-deco {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
