:root {
  --bg: #06040f;
  --bg-2: #10081c;
  --ink: #f6f2ff;
  --muted: #b7a8ce;
  --cyan: #3be7ff;
  --orange: #ff6a2c;
  --line: rgba(255, 255, 255, 0.1);
  --glass: rgba(8, 6, 18, 0.62);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { color-scheme: dark; }
body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Sora", "Segoe UI", sans-serif;
  background:
    radial-gradient(900px 420px at 88% -8%, rgba(255, 106, 44, 0.16), transparent 58%),
    radial-gradient(760px 380px at -8% 12%, rgba(59, 231, 255, 0.12), transparent 52%),
    radial-gradient(700px 500px at 50% 110%, rgba(255, 79, 216, 0.06), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, #05030c 100%);
  line-height: 1.6;
}
::selection { background: rgba(59, 231, 255, 0.28); color: #fff; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.9'/></svg>");
}

a { color: var(--cyan); }
a:hover { color: #fff; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: var(--glass);
  border-bottom: 1px solid var(--line);
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo-link { display: block; line-height: 0; }
.logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover { color: var(--cyan); }

.hero {
  padding: 36px 0 8px;
  text-align: center;
}
.kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--cyan);
  margin: 0 0 8px;
}
.sub {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 22px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.16s ease, filter 0.16s ease, border-color 0.16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: #160805;
  box-shadow: 0 0 0 1px #ff9a62 inset, 0 10px 30px rgba(255, 106, 44, 0.28);
}
.btn-primary:hover { color: #160805; filter: brightness(1.07); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover { color: var(--ink); border-color: rgba(59, 231, 255, 0.55); }

.player {
  position: relative;
  border: 1px solid rgba(59, 231, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(59, 231, 255, 0.06);
}
.player video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.play-hit {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(6, 4, 15, 0.08), rgba(6, 4, 15, 0.38));
}
.play-disc {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 0 1px #ff9a62 inset,
    0 0 0 10px rgba(255, 106, 44, 0.14),
    0 12px 36px rgba(0, 0, 0, 0.45);
  position: relative;
  transition: transform 0.16s ease;
}
.play-disc::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 26px;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #160805;
}
.play-hit:hover .play-disc { transform: scale(1.06); }
.player.is-playing .play-hit { display: none; }
.cta-row.after-copy { margin-top: 28px; }

.copy {
  padding: 52px 0 12px;
  max-width: 680px;
  margin: 0 auto;
}
.copy p {
  font-size: 1.06rem;
  color: #ece6fb;
  margin: 0 0 18px;
}
.copy p:first-child {
  font-size: 1.16rem;
  line-height: 1.55;
}
.copy .closer {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0;
}

.lore-teaser {
  padding: 28px 0 8px;
}
.lore-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(59, 231, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  transition: border-color 0.16s ease, transform 0.16s ease;
}
.lore-card:hover {
  border-color: rgba(59, 231, 255, 0.45);
  transform: translateY(-1px);
  color: inherit;
}
.lore-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  background: #000;
}
.lore-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.lore-card-body .kicker { margin-bottom: 6px; }
.lore-card-body h2 {
  font-family: "Teko", Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 0.95;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.lore-card-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}
.lore-link {
  color: var(--cyan);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.story-hero {
  padding: 36px 0 8px;
  text-align: center;
}
.story-title {
  font-family: "Teko", Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 0.9;
  margin: 0 0 10px;
}
.story-title span { color: var(--orange); }
.story-lead { max-width: 36rem; margin-left: auto; margin-right: auto; }
.story-prose {
  padding-top: 40px;
  padding-bottom: 8px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.story-prose p { text-wrap: pretty; }
.story-cta {
  padding-bottom: 48px;
  justify-content: center;
}

.worlds { padding: 36px 0 56px; }
.worlds img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.4);
}

.doc {
  padding: 36px 0 72px;
  max-width: 760px;
}
.doc h1 {
  font-family: "Teko", Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 0.9;
  margin: 0 0 10px;
}
.doc h1 span { color: var(--orange); }
.doc h2 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 32px 0 8px;
}
.doc p, .doc li { color: #ddd4f3; }
.doc ul { padding-left: 1.2rem; }

.foot {
  border-top: 1px solid var(--line);
  padding: 22px 0 36px;
  color: var(--muted);
  font-size: 0.84rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot nav { display: flex; gap: 16px; flex-wrap: wrap; }
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--cyan); }

@media (max-width: 720px) {
  .wrap { width: min(1120px, calc(100% - 28px)); }
  .top-inner { padding: 12px 0; }
  .logo { height: 36px; }
  .nav { gap: 14px; font-size: 0.72rem; }
  .hero { padding-top: 24px; }
  .play-disc { width: 68px; height: 68px; }
  .play-disc::after { left: 26px; top: 21px; }
  .copy { padding-top: 36px; }
  .lore-card { grid-template-columns: 1fr; }
  .lore-card img { min-height: 160px; max-height: 220px; }
  .story-hero { padding-top: 24px; }
  .foot { flex-direction: column; }
}
