:root {
  --bg-1: #0f0d1a;
  --bg-2: #18112a;
  --bg-3: #150f1f;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --stroke: rgba(255, 255, 255, 0.10);
  --stroke-strong: rgba(255, 255, 255, 0.18);
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.38);
  --accent: #7c5cff;
  --accent-soft: rgba(124, 92, 255, 0.22);
  --warm: #ff6b4a;
  --warm-soft: rgba(255, 107, 74, 0.20);
  --mint: #59c3a3;
  --mint-soft: rgba(89, 195, 163, 0.20);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --hairline: rgba(255, 255, 255, 0.06);
  --serif: "Fraunces", "Iowan Old Style", Palatino, "Palatino Linotype", serif;
  --sans: "Figtree", "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; }

html[data-lang="en"] [data-lang="zh"],
html[data-lang="zh"] [data-lang="en"] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1100px 700px at 50% -10%, rgba(124, 92, 255, 0.06), transparent 60%),
    radial-gradient(900px 600px at 50% 110%, rgba(255, 107, 74, 0.05), transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--accent);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.skip:focus { top: 12px; }

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient::before,
.ambient::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .18;
}
.ambient::before {
  width: 520px;
  height: 520px;
  background: var(--accent);
  top: -160px;
  right: -160px;
  animation: blob 36s ease-in-out infinite alternate;
}
.ambient::after {
  width: 440px;
  height: 440px;
  background: var(--warm);
  bottom: 8%;
  left: -160px;
  animation: blob 44s ease-in-out infinite alternate-reverse;
}
@keyframes blob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-10px, 14px) scale(1.04); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(15, 13, 26, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-stuck {
  border-bottom-color: var(--hairline);
  background: rgba(15, 13, 26, 0.88);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}
.mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.9) 0 18%, transparent 19%),
    conic-gradient(from 210deg, var(--warm), #f0b429, var(--accent), var(--warm));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.25), 0 4px 12px rgba(124,92,255,.35);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.lang {
  display: flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--stroke);
}
.lang button {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s ease;
}
.lang button[aria-pressed="true"] {
  background: rgba(255,255,255,0.12);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 24px 56px;
  text-align: center;
  overflow: hidden;
}
.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: none;
  opacity: .55;
  animation: float 14s ease-in-out infinite;
}
.orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.orb-1 { width: 120px; height: 120px; top: 18%; left: 8%; animation-delay: -1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-content {
  position: relative;
  z-index: 1;
}
.kicker {
  display: inline-block;
  margin: 0 0 20px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--faint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kicker::before { content: none; }
h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(4.2rem, 13vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #f6f1ea 0%, #efe9df 55%, #e9e1d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tagline {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
}
.lead {
  margin: 18px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}
.cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 148px;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  padding: 12px 20px;
  border-radius: 10px;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.cta svg { width: 16px; height: 16px; fill: currentColor; }
.btn-ios {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.btn-play {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--hairline);
}
.btn-apk {
  background: transparent;
  color: var(--faint);
  border: 1px solid var(--hairline);
}
.cta a:hover { transform: none; }
.btn-ios:hover { background: rgba(255, 255, 255, 0.12); color: var(--ink); border-color: rgba(255, 255, 255, 0.24); }
.btn-play:hover { color: var(--ink); border-color: rgba(255, 255, 255, 0.18); }
.cta a:focus-visible, .nav a:focus-visible, .lang button:focus-visible, .ticket:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid var(--hairline);
  margin-top: 88px;
  background: transparent;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 22px 0;
  animation: drift 90s linear infinite;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}
.marquee-track span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 24px 0;
}
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.section .deck {
  margin: 14px 0 0;
  max-width: 540px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.1s cubic-bezier(.22,.61,.36,1), transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.shot {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 24px 18px 0;
  min-height: 420px;
  overflow: hidden;
  box-shadow: none;
  transition: border-color .35s ease, background-color .35s ease;
}
.shot:hover { border-color: rgba(255, 255, 255, 0.12); }
.shot h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 560;
  letter-spacing: -0.03em;
}
.shot .sub {
  margin: 5px 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.phone {
  width: min(100%, 210px);
  margin: 0 auto;
  background: #0c0a12;
  border-radius: 28px 28px 0 0;
  padding: 10px 10px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.screen {
  background: linear-gradient(180deg, #1a1625, #0f0d18);
  border-radius: 20px 20px 0 0;
  min-height: 250px;
  padding: 14px 12px 20px;
  color: white;
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom: 0;
}
.screen .bar {
  width: 54px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255,255,255,.18);
  margin: 0 auto 14px;
}
.dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dot {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--c, #ff6b4a);
  box-shadow: inset 0 -8px 12px rgba(0,0,0,.3), 0 2px 6px rgba(0,0,0,.2);
}
.row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
}
.row i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c, #ffb45a);
  display: block;
  flex: none;
}
.row b { font-weight: 650; }
.row em { margin-left: auto; font-style: normal; opacity: .45; }

.menu-grid, .scene-grid, .game-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.menu-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
.panel {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color .35s ease;
}
.panel:hover { border-color: rgba(255, 255, 255, 0.12); }
.panel header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.panel h3 { margin: 0; font-size: 1.3rem; }
.count {
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  font-size: 1.1rem;
}
.dish {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
}
.dish:last-child { border-bottom: 0; }
.dish .thumb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 1px solid var(--stroke);
}
.dish b {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.dish span { color: var(--faint); font-variant-numeric: tabular-nums; }

.scene-grid { grid-template-columns: repeat(3, 1fr); }
.ticket {
  position: relative;
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
  min-height: 160px;
  overflow: hidden;
  transition: border-color .35s ease;
}
.ticket:hover { border-color: rgba(255, 255, 255, 0.12); }
.ticket::before { content: none; }
.ticket strong { display: block; font-size: 1.1rem; }
.ticket p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.ticket .time {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.game-grid { grid-template-columns: repeat(5, 1fr); }
.game {
  position: relative;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 18px;
  min-height: 130px;
  transition: border-color .35s ease;
}
.game:hover { border-color: rgba(255, 255, 255, 0.12); }
.game b { display: block; font-size: 15px; }
.game span {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.contact {
  position: relative;
  z-index: 1;
  margin-top: 100px;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(124, 92, 255, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border-top: 1px solid var(--hairline);
}
.contact .section { padding-bottom: 100px; }
.contact h2 { color: white; }
.contact .deck { color: var(--muted); }
.mail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  max-width: 560px;
}
.mail input {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.22);
  color: white;
  border-radius: 14px;
  padding: 15px 17px;
  font: inherit;
}
.mail a {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-weight: 600;
  border-radius: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color .25s ease, border-color .25s ease;
}
.mail a:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.24); }

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 26px 28px 36px;
  color: var(--faint);
  font-size: 14px;
  border-top: 1px solid var(--stroke);
}
.footer nav { display: flex; gap: 18px; }
.footer a { color: var(--muted); text-decoration: none; transition: color .2s ease; }
.footer a:hover { color: var(--ink); }

.legal {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}
.legal h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 30%, #d4c9ff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 32px 0 10px;
  color: white;
}
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--accent); text-decoration: none; }
.legal a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .shots, .scene-grid { grid-template-columns: 1fr 1fr; }
  .game-grid { grid-template-columns: 1fr 1fr; }
  .orb-5 { display: none; }
}

@media (max-width: 720px) {
  .nav { padding: 12px 16px; }
  .nav-links { gap: 14px; }
  .nav-links a { display: none; }
  .hero { padding-top: 72px; padding-bottom: 40px; }
  .orb, .orb-1 { display: none; }
  .shots, .menu-grid, .scene-grid, .game-grid { grid-template-columns: 1fr; }
  .shot { min-height: 0; padding-bottom: 0; }
  .cta a { flex: 1 1 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .orb, .ambient::before, .ambient::after { animation: none; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (scripting: none) {
  .reveal { opacity: 1; transform: none; }
}
