/* Vyronix.games — Slots Oscar promo · 2026 · neon saloon */
:root {
  --night: #07060f;
  --slate: #12101f;
  --panel: rgba(22, 18, 38, 0.72);
  --panel-solid: #16122a;
  --cream: #faf6ff;
  --sand: #b8adc8;
  --ink: #ece6f5;
  --ink-dim: #8f84a8;
  --gold: #ffc857;
  --gold-deep: #e89b1f;
  --copper: #ff5e7a;
  --violet: #9d4edd;
  --teal: #3dd6c3;
  --line: rgba(255, 200, 87, 0.2);
  --glow: 0 0 48px rgba(157, 78, 221, 0.35);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-ui: "DM Sans", system-ui, sans-serif;
  --glass-blur: blur(18px);
}

*,
*::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(--ink);
  background: var(--night);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

/* Animated background layer (injected via site.js) */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.site-bg__mesh {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(157, 78, 221, 0.35),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 94, 122, 0.28),
      transparent 42%
    ),
    radial-gradient(
      circle at 60% 85%,
      rgba(61, 214, 195, 0.22),
      transparent 48%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(255, 200, 87, 0.18),
      transparent 40%
    );
  animation: mesh-drift 22s ease-in-out infinite alternate;
}

.site-bg__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(6) infinite;
}

.site-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}

.site-bg__orb--a {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -12%;
  left: -8%;
  background: rgba(157, 78, 221, 0.5);
  animation: orb-float-a 18s ease-in-out infinite;
}

.site-bg__orb--b {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  bottom: -15%;
  right: -5%;
  background: rgba(255, 94, 122, 0.45);
  animation: orb-float-b 24s ease-in-out infinite;
}

.site-bg__orb--c {
  width: min(300px, 40vw);
  height: min(300px, 40vw);
  top: 45%;
  left: 42%;
  transform: translate(-50%, -50%);
  background: rgba(61, 214, 195, 0.35);
  animation: orb-float-c 20s ease-in-out infinite;
}

.site-bg__spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 12px var(--gold),
    0 0 24px rgba(255, 200, 87, 0.5);
  animation: spark-twinkle 4s ease-in-out infinite;
}

.site-bg__spark--1 {
  top: 18%;
  left: 12%;
  animation-delay: 0s;
}
.site-bg__spark--2 {
  top: 62%;
  left: 78%;
  animation-delay: 1.2s;
}
.site-bg__spark--3 {
  top: 35%;
  left: 55%;
  animation-delay: 2.4s;
  width: 4px;
  height: 4px;
}
.site-bg__spark--4 {
  top: 82%;
  left: 28%;
  animation-delay: 0.8s;
}
.site-bg__spark--5 {
  top: 8%;
  left: 68%;
  animation-delay: 3s;
}

.site-bg__ring {
  position: absolute;
  border: 1px solid rgba(255, 200, 87, 0.12);
  border-radius: 50%;
  animation: ring-pulse 12s ease-in-out infinite;
}

.site-bg__ring--1 {
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.site-bg__ring--2 {
  width: min(900px, 120vw);
  height: min(900px, 120vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -4s;
  border-color: rgba(157, 78, 221, 0.1);
}

@keyframes mesh-drift {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(4%, 6%) rotate(8deg) scale(1.08);
  }
}

@keyframes grain-shift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-2%, -1%);
  }
}

@keyframes orb-float-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8%, 12%) scale(1.1);
  }
}

@keyframes orb-float-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10%, -8%) scale(1.05);
  }
}

@keyframes orb-float-c {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.35;
  }
  50% {
    transform: translate(-42%, -58%) scale(1.15);
    opacity: 0.5;
  }
}

@keyframes spark-twinkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes ring-pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.02);
  }
}

@keyframes border-shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    box-shadow: var(--glow);
  }
  50% {
    box-shadow:
      0 0 32px rgba(255, 200, 87, 0.45),
      0 0 64px rgba(157, 78, 221, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-bg__mesh,
  .site-bg__grain,
  .site-bg__orb,
  .site-bg__spark,
  .site-bg__ring,
  .logo-slot,
  .hero-emblem,
  .bento-card,
  .store-copy,
  .flagship-card,
  .btn-gold,
  .play-cta::before,
  .logo-slot::before {
    animation: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--cream);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--panel);
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 10000;
  color: var(--cream);
}

.shell {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.top-bar,
.compliance-strip,
.site-foot,
.age-overlay {
  position: relative;
  z-index: 2;
}

/* Contain rule — all branded image slots */
.contain-slot,
.contain-slot img,
.logo-slot img,
.chip img,
.hero-emblem img,
.bento-icon img,
.review-badge img,
.mosaic-tile img,
.shot-frame img,
.stills-frame img,
.deco-orbit img,
.timeline-icon img,
.demo-thumb img {
  object-fit: contain;
}

.contain-slot {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* overflow hidden only on icon boxes — not on screenshots */
.contain-slot:not(.shot-frame):not(.stills-frame) {
  overflow: hidden;
}

.shot-frame.contain-slot,
.stills-frame.contain-slot {
  overflow: visible;
}

/* Compliance strip */
.compliance-strip {
  background: rgba(18, 14, 32, 0.85);
  backdrop-filter: var(--glass-blur);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      var(--violet),
      var(--gold),
      var(--copper)
    )
    1;
  padding: 12px 20px;
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
  color: var(--sand);
}

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

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

.compliance-strip .badge-18 {
  display: inline-block;
  margin: 0 5px;
  padding: 2px 9px;
  border-radius: 4px;
  background: var(--copper);
  color: #fff;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

/* Header */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(10, 8, 18, 0.78);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.top-bar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

@media (max-width: 900px) {
  .top-bar__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}

.logo-slot {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--panel-solid);
  border: 2px solid transparent;
  background-clip: padding-box;
  flex-shrink: 0;
  box-shadow: var(--glow);
  animation: logo-pulse 4s ease-in-out infinite;
  position: relative;
}

.logo-slot::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--violet),
    var(--copper)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  animation: border-shine 6s linear infinite;
  background-size: 200% 200%;
}

.logo-slot img {
  width: 100%;
  height: 100%;
}

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

.brand__sub {
  font-size: 0.72rem;
  color: var(--ink-dim);
  display: block;
}

.nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.nav-pills a {
  text-decoration: none;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-dim);
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.nav-pills a:hover,
.nav-pills a[aria-current="page"] {
  color: var(--cream);
  background: linear-gradient(
    135deg,
    rgba(157, 78, 221, 0.25),
    rgba(255, 200, 87, 0.15)
  );
  border-color: var(--line);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
}

.nav-extra {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .nav-extra {
    justify-content: center;
  }
}

.nav-extra a {
  font-size: 0.75rem;
  padding: 6px 12px;
  text-decoration: none;
  color: var(--teal);
  border: 1px solid rgba(61, 214, 195, 0.35);
  border-radius: 8px;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}

.nav-extra a:hover {
  background: rgba(61, 214, 195, 0.15);
  color: var(--cream);
  box-shadow: 0 0 16px rgba(61, 214, 195, 0.25);
}

/* Typography blocks */
.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(157, 78, 221, 0.2);
  border: 1px solid rgba(255, 200, 87, 0.25);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 1.2;
}

.page-top {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}

.page-top h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 12px;
}

.page-top p {
  margin: 0;
  max-width: 640px;
  color: var(--ink-dim);
}

/* Game intro block */
.store-copy {
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 36px 0;
  position: relative;
  overflow: hidden;
  animation: card-rise 0.7s ease-out both;
  box-shadow: var(--shadow);
}

.store-copy::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 184, 74, 0.2), transparent 70%);
  pointer-events: none;
}

.store-copy h2 {
  font-size: 1.35rem;
  margin: 0 0 16px;
  color: var(--gold);
}

.store-copy p {
  margin: 0 0 14px;
  color: var(--ink);
}

.store-copy ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.store-copy li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--sand);
}

.store-copy li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.ribbon-note {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 20px;
  margin-bottom: 28px;
  background: rgba(232, 184, 74, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem;
  color: var(--sand);
}

.ribbon-note .logo-slot {
  width: 40px;
  height: 40px;
  margin-left: auto;
}

/* Hero */
.hero-zone {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0 48px;
}

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

.hero-zone__visual {
  position: relative;
}

.hero-emblem {
  width: min(280px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border: 2px solid var(--line);
  box-shadow: var(--shadow), var(--glow);
  padding: 24px;
  animation: logo-pulse 5s ease-in-out infinite;
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.orbit-deco {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.deco-orbit {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--slate);
  border: 1px solid var(--line);
  padding: 6px;
}

.deco-orbit img {
  width: 100%;
  height: 100%;
}

.hero-zone__copy h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  margin: 0 0 16px;
}

.hero-zone__copy .lead {
  font-size: 1.05rem;
  color: var(--ink-dim);
  margin-bottom: 24px;
}

/* Spec card */
.spec-card {
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
}

.spec-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

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

.spec-card strong {
  color: var(--gold);
  margin-right: 8px;
}

/* Metrics row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 32px 0;
}

@media (max-width: 720px) {
  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.metric {
  text-align: center;
  padding: 20px 12px;
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.25s;
}

.metric:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(157, 78, 221, 0.2);
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.metric span {
  font-size: 0.75rem;
  color: var(--ink-dim);
}

/* Section */
.block {
  margin: 56px 0;
}

.block-head {
  margin-bottom: 28px;
}

.block-head h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 0 0 8px;
}

.block-head p {
  margin: 0;
  color: var(--ink-dim);
  max-width: 560px;
}

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

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

.bento-card {
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  animation: card-rise 0.6s ease-out both;
}

.bento-card:nth-child(2) {
  animation-delay: 0.08s;
}
.bento-card:nth-child(3) {
  animation-delay: 0.16s;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(157, 78, 221, 0.25);
}

.bento-card--wide {
  grid-column: span 2;
}

@media (max-width: 800px) {
  .bento-card--wide {
    grid-column: span 1;
  }
}

.bento-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  padding: 8px;
  background: var(--slate);
  border-radius: 12px;
}

.bento-icon img {
  width: 100%;
  height: 100%;
}

.bento-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.bento-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-dim);
}

/* Screenshot mosaic — portrait-friendly (game stills are 9:16) */
.shot-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 720px) {
  .shot-mosaic {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.shot-tile {
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

@media (hover: hover) {
  .shot-tile:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 94, 122, 0.2);
  }
}

.shot-frame {
  background: #0a0e12;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  line-height: 0;
}

.shot-frame img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (min-width: 721px) {
  .shot-frame {
    max-height: 480px;
  }

  .shot-frame img {
    max-height: 456px;
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .shot-frame {
    aspect-ratio: unset;
    min-height: unset;
    max-height: none;
  }

  .shot-frame img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

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

/* Stills slider */
.stills-carousel {
  position: relative;
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.stills-slide {
  display: none;
  text-align: center;
}

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

.stills-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080c10;
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 12px;
  line-height: 0;
  min-height: 120px;
}

.stills-frame img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (min-width: 721px) {
  .stills-frame {
    max-height: 520px;
  }

  .stills-frame img {
    max-height: 496px;
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .stills-frame {
    height: auto;
    max-height: none;
  }

  .stills-frame img {
    width: 100%;
    height: auto;
    max-height: min(75vh, 640px);
  }
}

.stills-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--slate);
  color: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 2;
}

.stills-nav:hover {
  background: var(--gold-deep);
  color: var(--night);
}

.stills-nav--prev {
  left: 8px;
}

.stills-nav--next {
  right: 8px;
}

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

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

.stills-dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

/* Tabs */
.tab-shell {
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.tab-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.tab-trigger {
  padding: 10px 18px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-dim);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-trigger:hover {
  color: var(--cream);
}

.tab-trigger.is-active {
  background: rgba(232, 184, 74, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.tab-pane {
  display: none;
}

.tab-pane.is-active {
  display: block;
}

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

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

.review-tile {
  background: var(--slate);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.review-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--panel);
  padding: 6px;
  flex-shrink: 0;
}

.review-badge img {
  width: 100%;
  height: 100%;
}

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

.review-meta {
  font-size: 0.72rem;
  color: var(--ink-dim);
}

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

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

/* Quest strip */
.quest-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quest-strip span {
  padding: 10px 16px;
  background: var(--slate);
  border: 1px dashed var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sand);
}

.mosaic-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 20px;
}

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

.mosaic-tile {
  aspect-ratio: 1;
  background: var(--slate);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--line);
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
}

/* Timeline (bonus atlas) */
.timeline {
  position: relative;
  padding-left: 32px;
}

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

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--night);
}

.timeline-icon {
  width: 48px;
  height: 48px;
  float: right;
  margin-left: 16px;
  padding: 8px;
  background: var(--slate);
  border-radius: 10px;
}

.timeline-icon img {
  width: 100%;
  height: 100%;
}

/* FAQ */
.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

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

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

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--ink-dim);
}

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

/* Store CTA */
.play-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.play-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 200, 87, 0.06) 50%,
    transparent 60%
  );
  animation: cta-sweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-sweep {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.play-cta p {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-dim);
}

.store-link img {
  height: 54px;
  width: auto;
}

/* Game card */
.flagship-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  animation: card-rise 0.5s ease-out both;
}

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

.flagship-card .logo-slot {
  width: 88px;
  height: 88px;
}

/* Demo */
.demo-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  padding: 24px;
  background: var(--slate);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

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

.demo-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid var(--gold-deep);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #080c10;
  aspect-ratio: 16/10;
}

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

@media (max-width: 720px) {
  .demo-thumb {
    aspect-ratio: auto;
    min-height: 160px;
    height: auto;
  }

  .demo-thumb img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }
}

.demo-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 18, 24, 0.55);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background 0.2s;
}

.demo-thumb:hover .demo-play {
  background: rgba(232, 184, 74, 0.35);
  color: var(--night);
}

.demo-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(42, 157, 143, 0.2);
  color: var(--teal);
  border-radius: 6px;
}

/* Content prose */
.prose-panel {
  background: var(--panel);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow);
}

.prose-panel h2 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--gold);
}

.prose-panel h2:first-child {
  margin-top: 0;
}

.prose-panel p,
.prose-panel li {
  color: var(--ink-dim);
  font-size: 0.92rem;
}

.prose-panel ul {
  padding-left: 1.2em;
}

/* Age gate */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 12, 16, 0.92);
}

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

.age-panel {
  max-width: 420px;
  width: 100%;
  padding: 36px 32px;
  background: rgba(22, 18, 38, 0.92);
  backdrop-filter: var(--glass-blur);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow:
    var(--shadow),
    0 0 80px rgba(157, 78, 221, 0.35);
}

.age-panel h1 {
  font-size: 1.35rem;
  margin: 16px 0 12px;
}

.age-panel p {
  font-size: 0.88rem;
  color: var(--ink-dim);
  margin-bottom: 20px;
}

.age-range {
  width: 100%;
  margin: 12px 0;
  accent-color: var(--gold);
}

.age-hint {
  font-size: 0.78rem;
  color: var(--ink-dim);
  margin: 8px 0 20px;
}

.btn-gold {
  width: 100%;
  padding: 14px 24px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  background: linear-gradient(
    110deg,
    var(--gold),
    var(--copper),
    var(--violet),
    var(--gold)
  );
  background-size: 300% 100%;
  color: var(--night);
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s;
  animation: border-shine 5s linear infinite;
}

.btn-gold:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

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

/* Game modal */
.game-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  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(0, 0, 0, 0.82);
}

.game-modal__box {
  position: relative;
  width: min(1100px, 100%);
  height: min(82vh, 720px);
  background: var(--panel);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
}

.game-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--slate);
  border-bottom: 1px solid var(--line);
}

.game-modal__head h2 {
  margin: 0;
  font-size: 1rem;
}

.game-modal__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  border-radius: 8px;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.game-modal__close:hover {
  background: var(--copper);
  border-color: var(--copper);
}

.game-modal__frame {
  flex: 1;
  width: 100%;
  border: none;
  background: #000;
}

/* Footer */
.site-foot {
  margin-top: 64px;
  padding: 40px 0 32px;
  background: rgba(14, 10, 26, 0.9);
  backdrop-filter: var(--glass-blur);
  border-top: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      var(--copper),
      var(--violet),
      var(--gold)
    )
    1;
}

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

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

.foot-brand .logo-slot {
  width: 56px;
  height: 56px;
}

.foot-brand strong {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.1rem;
}

.foot-meta {
  font-size: 0.78rem;
  color: var(--ink-dim);
  margin-top: 4px;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.foot-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sand);
}

.foot-links a:hover {
  color: var(--gold);
}

.foot-legal {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--ink-dim);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin: 0;
}

.foot-legal strong {
  color: var(--sand);
}
