:root {
  color-scheme: dark;
  --black: #030609;
  --navy: #07131a;
  --navy-2: #0c1a21;
  --gold: #c99a50;
  --gold-2: #e1bd78;
  --paper: #f4eadb;
  --muted: #b7aa98;
  --blue: #47b7d8;
  --line: rgba(225, 189, 120, 0.28);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 0%, rgba(71, 183, 216, 0.18), transparent 28rem),
    linear-gradient(180deg, #030609 0%, #07131a 54%, #020304 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 42px;
  background: linear-gradient(180deg, rgba(3, 6, 9, 0.82), rgba(3, 6, 9, 0));
  backdrop-filter: blur(6px);
}

.brand {
  display: grid;
  gap: 3px;
  text-transform: uppercase;
}

.brand strong,
h1,
h2,
h3,
.subtitle {
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0;
}

.brand strong {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: var(--paper);
  font-size: 24px;
  line-height: 1;
}

.brand-ball {
  position: relative;
  display: inline-block;
  width: 0.86em;
  height: 0.86em;
  margin: 0 0.02em;
  border: 1px solid rgba(244, 234, 219, 0.96);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #050607 0 19%, transparent 20%),
    radial-gradient(circle at 50% 4%, #050607 0 11%, transparent 12%),
    radial-gradient(circle at 94% 38%, #050607 0 11%, transparent 12%),
    radial-gradient(circle at 76% 96%, #050607 0 11%, transparent 12%),
    radial-gradient(circle at 24% 96%, #050607 0 11%, transparent 12%),
    radial-gradient(circle at 6% 38%, #050607 0 11%, transparent 12%),
    linear-gradient(36deg, transparent 42%, rgba(3, 6, 9, 0.62) 43% 47%, transparent 48%),
    linear-gradient(108deg, transparent 42%, rgba(3, 6, 9, 0.62) 43% 47%, transparent 48%),
    linear-gradient(180deg, transparent 42%, rgba(3, 6, 9, 0.62) 43% 47%, transparent 48%),
    linear-gradient(252deg, transparent 42%, rgba(3, 6, 9, 0.62) 43% 47%, transparent 48%),
    linear-gradient(324deg, transparent 42%, rgba(3, 6, 9, 0.62) 43% 47%, transparent 48%),
    radial-gradient(circle at 34% 28%, #ffffff 0 8%, transparent 9%),
    linear-gradient(145deg, #ffffff 0%, #ece8df 58%, #bfc3c8 100%);
  box-shadow:
    inset 0 0 0 1px rgba(3, 6, 9, 0.34),
    0 0 10px rgba(244, 234, 219, 0.18);
  transform: translateY(0.04em);
}

.brand-ball::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.32em;
  height: 0.3em;
  content: "";
  background: #050607;
  clip-path: polygon(50% 0, 98% 36%, 80% 100%, 20% 100%, 2% 36%);
  transform: translate(-50%, -50%);
}

.brand-ball::after {
  position: absolute;
  inset: 0.16em;
  content: "";
  border: 1px solid rgba(3, 6, 9, 0.52);
  border-radius: 50%;
  opacity: 0.7;
}

.brand span,
.language-switch .is-active {
  color: var(--blue);
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav a,
.language-switch button {
  transition: color 160ms ease, border-color 160ms ease;
}

.main-nav a:hover {
  color: var(--gold-2);
}

.language-switch {
  display: flex;
  gap: 10px;
}

.language-switch button {
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 5px 0;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.language-switch .is-active {
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 180px 42px 70px;
}

.hero-carousel,
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 9%;
  filter: saturate(0.9) contrast(1.08);
}

.hero-slide {
  opacity: 0;
  transform: scale(1);
  transition: opacity 900ms ease, transform 6200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.035);
}

.hero-slide:nth-child(1) {
  object-position: 62% 9%;
}

.hero-slide:nth-child(2) {
  object-position: 56% 42%;
}

.hero-slide:nth-child(3) {
  object-position: 58% 18%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.97) 0%, rgba(3, 6, 9, 0.83) 34%, rgba(3, 6, 9, 0.15) 76%),
    linear-gradient(180deg, rgba(3, 6, 9, 0.18) 0%, rgba(3, 6, 9, 0.08) 58%, rgba(3, 6, 9, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--gold-2);
  font-size: clamp(34px, 7.2vw, 104px);
  font-weight: 500;
  line-height: 0.96;
  text-transform: uppercase;
  white-space: nowrap;
}

#hero-title {
  max-width: 100%;
  overflow-wrap: normal;
}

.subtitle {
  margin: 26px 0 12px;
  color: var(--paper);
  font-size: clamp(24px, 3.2vw, 44px);
  text-transform: uppercase;
}

.subtitle-zh {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: clamp(22px, 2.6vw, 38px);
  letter-spacing: 0.18em;
}

.logline {
  max-width: 580px;
  margin: 0 0 36px;
  color: #eadfce;
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.55;
}

.meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  width: min(660px, 100%);
  margin: 0 0 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.meta-row span {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: rgba(3, 6, 9, 0.72);
  color: var(--paper);
  font-size: 13px;
}

.meta-row b {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-dots {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-dots button {
  width: 42px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(244, 234, 219, 0.35);
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots .is-active {
  width: 72px;
  background: var(--gold-2);
}

.gold-button,
.line-button,
.updates-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 3px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gold-button,
.updates-form button {
  border: 1px solid var(--gold-2);
  background: linear-gradient(180deg, #e6bf75, #b7823e);
  color: #0a0a08;
}

.line-button {
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(3, 6, 9, 0.48);
}

.gold-button:hover,
.updates-form button:hover {
  filter: brightness(1.08);
}

.line-button:hover {
  border-color: var(--gold-2);
}

.disclaimer {
  max-width: 430px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.story-section,
.trailer-section,
.timeline-section,
.film-section,
.updates-section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 92px 0;
}

.story-section {
  position: relative;
  text-align: center;
}

.story-section h2,
.timeline-section h2,
.film-section h2,
.updates-section h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.06;
  text-transform: uppercase;
}

.story-section h2 {
  max-width: 760px;
  margin: 0 auto 26px;
}

.story-section p {
  max-width: 690px;
  margin: 0 auto;
  color: #d7cbbb;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
}

.story-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.story-facts span {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--navy);
  color: var(--paper);
  font-size: 13px;
}

.story-facts b {
  color: var(--gold);
  text-transform: uppercase;
}

.trailer-section {
  border-top: 1px solid rgba(225, 189, 120, 0.16);
}

.trailer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  gap: 58px;
  align-items: center;
}

.teaser-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  color: var(--paper);
  background: var(--black);
}

.teaser-card img,
.teaser-card video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 54% 48%;
  opacity: 0.74;
}

.teaser-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(3, 6, 9, 0.08), rgba(3, 6, 9, 0.78));
}

.teaser-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(244, 234, 219, 0.78);
  border-radius: 999px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.teaser-card strong {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  z-index: 1;
  color: var(--paper);
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 0.18em;
  line-height: 1.55;
  text-transform: uppercase;
}

blockquote {
  margin: 0;
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: clamp(25px, 3vw, 40px);
  font-style: italic;
  line-height: 1.38;
}

.moments-section,
.timeline-section {
  border-top: 1px solid rgba(225, 189, 120, 0.16);
}

.moments-section {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 92px 0;
}

.moments-section h2 {
  max-width: 780px;
  margin: 0 0 34px;
  color: var(--paper);
  font-size: clamp(38px, 5vw, 72px);
  font-family: Cinzel, Georgia, serif;
  font-weight: 500;
  line-height: 1.06;
  text-transform: uppercase;
}

.moments-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
}

.moment-card {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(225, 189, 120, 0.22);
  border-radius: 5px;
  background: #05090d;
}

.moment-card.is-wide {
  grid-row: span 3;
  min-height: 720px;
}

.moment-card.emotion-card {
  min-height: 420px;
}

.moment-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 260ms ease, opacity 260ms ease;
}

.moment-card.is-wide img {
  object-position: 58% center;
}

.moment-card:not(.is-wide) img {
  object-position: center;
}

.moment-card.emotion-card img {
  object-position: 56% center;
}

.moment-card:hover img {
  transform: scale(1.025);
  opacity: 0.96;
}

.moment-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(3, 6, 9, 0.84));
  pointer-events: none;
}

.moment-card figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.moment-card strong {
  color: var(--gold-2);
  font-family: Cinzel, Georgia, serif;
  font-size: 22px;
  text-transform: uppercase;
}

.moment-card span {
  color: #d8cbbb;
  font-size: 13px;
  line-height: 1.55;
}

.timeline-section h2 {
  max-width: 680px;
  margin-bottom: 36px;
}

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.chapter-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(225, 189, 120, 0.24);
  border-radius: 5px;
  background: #061016;
  outline: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.chapter-card:hover,
.chapter-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--gold-2);
}

.chapter-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  opacity: 0.72;
}

.chapter-card:nth-child(1) img {
  object-position: 48% 42%;
}

.chapter-card:nth-child(2) img {
  object-position: 52% 20%;
}

.chapter-card:nth-child(3) img {
  object-position: 67% 12%;
}

.chapter-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(3, 6, 9, 0.14), rgba(3, 6, 9, 0.78));
}

.chapter-card span,
.chapter-card h3,
.chapter-card p {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
}

.chapter-card span {
  top: 24px;
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: 28px;
}

.chapter-card h3 {
  bottom: 78px;
  margin: 0;
  color: var(--paper);
  font-size: 32px;
  text-transform: uppercase;
}

.chapter-card p {
  bottom: 24px;
  margin: 0;
  color: #d8cbbb;
  line-height: 1.5;
}

.chapter-status {
  min-height: 24px;
  margin: 22px 0 0;
  color: var(--gold-2);
  font-size: 14px;
}

.film-section,
.updates-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  border-top: 1px solid rgba(225, 189, 120, 0.16);
}

.film-notes p,
.updates-section p {
  margin: 0 0 28px;
  color: #d8cbbb;
  font-size: 18px;
  line-height: 1.75;
}

.film-notes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.film-notes li {
  border: 1px solid var(--line);
  padding: 18px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.updates-section {
  align-items: center;
  padding-bottom: 120px;
}

.updates-form {
  display: grid;
  gap: 14px;
}

.updates-form label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.updates-form input {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 16px;
  color: var(--paper);
  background: rgba(3, 6, 9, 0.58);
  outline: none;
}

.updates-form input:focus {
  border-color: var(--gold-2);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold-2);
  font-size: 14px;
}

.teaser-dialog {
  width: min(880px, calc(100% - 30px));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0;
  color: var(--paper);
  background: #030609;
}

.teaser-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(3, 6, 9, 0.72);
  font-weight: 900;
}

.modal-poster {
  height: 495px;
  overflow: hidden;
}

.modal-poster img,
.modal-poster video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% 10%;
}

.highlight-video {
  background: #000;
}

.modal-copy {
  padding: 34px;
}

.modal-copy h2 {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: clamp(30px, 5vw, 58px);
  text-transform: uppercase;
}

.modal-copy p:last-child {
  margin: 0;
  color: #d8cbbb;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 20px 24px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding: 140px 24px 58px;
  }

  .hero-bg,
  .hero-slide:nth-child(1) {
    object-position: 69% 0;
  }

  .hero-slide:nth-child(2) {
    object-position: 58% 50%;
  }

  .hero-slide:nth-child(3) {
    object-position: 64% 14%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 6, 9, 0.96), rgba(3, 6, 9, 0.54)),
      linear-gradient(180deg, rgba(3, 6, 9, 0.1), rgba(3, 6, 9, 0.95));
  }

  .story-section,
  .trailer-section,
  .moments-section,
  .timeline-section,
  .film-section,
  .updates-section {
    width: min(100% - 34px, 720px);
    padding: 70px 0;
  }

  .trailer-layout,
  .film-section,
  .updates-section {
    grid-template-columns: 1fr;
  }

  .story-facts,
  .moments-grid,
  .chapter-grid {
    grid-template-columns: 1fr;
  }

  .moment-card.is-wide {
    grid-row: auto;
    min-height: 480px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    display: none;
  }

  .language-switch {
    gap: 7px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-actions,
  .meta-row,
  .film-notes ul {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .gold-button,
  .line-button {
    width: 100%;
  }

  .teaser-card,
  .teaser-card img,
  .teaser-card video {
    min-height: 340px;
  }

  .hero-dots button {
    width: 34px;
  }

  .hero-dots .is-active {
    width: 56px;
  }

  .modal-poster {
    height: 260px;
  }
}
