* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.75;
  color: #f1f5f9;
  background:
    radial-gradient(circle at top right, rgba(247, 201, 109, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(100, 210, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #08111f 0%, #0b1527 48%, #050a12 100%);
}

a {
  color: #ffd77a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

.shell {
  padding: 20px 0 36px;
}

.header {
  padding: 14px 0 10px;
}

.brand {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.brand h1,
.brand p {
  margin: 0;
}

.brand h1,
.page-title {
  font-family: "Georgia", "Songti SC", "STSong", serif;
  letter-spacing: 0.02em;
}

.brand h1 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.brand p {
  color: #a8b3c6;
}

.brand-tag {
  max-width: 300px;
  text-align: right;
}

.nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.nav a {
  display: block;
  min-height: 78px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
  color: #f7fafc;
  font-weight: 700;
}

.nav a.active {
  border-color: rgba(247, 201, 109, 0.38);
  box-shadow: 0 0 0 1px rgba(247, 201, 109, 0.12), 0 16px 30px rgba(0, 0, 0, 0.24);
  background: linear-gradient(180deg, rgba(247, 201, 109, 0.2), rgba(255, 255, 255, 0.05));
}

.nav span {
  display: block;
  margin-top: 2px;
  color: #a8b3c6;
  font-size: 0.88rem;
  font-weight: 400;
}

.crumbs,
.breadcrumb {
  margin: 10px 0 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.hero,
.page-hero,
.section,
.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.hero {
  position: relative;
  margin-top: 22px;
  padding: 24px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13, 23, 41, 0.96), rgba(7, 13, 23, 0.94));
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at top right, rgba(247, 201, 109, 0.16), transparent 26%),
    radial-gradient(circle at left bottom, rgba(100, 210, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.hero > *,
.page-hero > *,
.section > * {
  position: relative;
}

.hero.hero--media,
.page-hero.hero--media {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
  gap: 18px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: #ffd77a;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.9vw, 2.55rem);
  line-height: 1.15;
  font-family: "Georgia", "Songti SC", "STSong", serif;
}

.hero p {
  margin: 0;
  color: #cbd5e1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  font-weight: 700;
}

.btn.primary {
  border-color: #ffd77a;
  background: linear-gradient(135deg, #ffd77a, #ffefbe);
  color: #111827;
}

.hero-media,
.page-art {
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-media img,
.page-art img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.hero-media figcaption,
.page-art figcaption {
  margin-top: 8px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.card h3,
.section h2 {
  margin: 0 0 10px;
}

.card p,
.section p,
.movie p,
.about-copy p {
  margin: 0;
  color: #a8b3c6;
}

.section {
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(8, 14, 26, 0.86);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.section-head p {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 340px);
  gap: 18px;
}

.pill,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #e5e7eb;
  font-size: 0.92rem;
  font-weight: 700;
}

.page-title {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.page-intro {
  margin: 10px 0 0;
  color: #cbd5e1;
}

.page-hero {
  position: relative;
  margin-top: 22px;
  padding: 24px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(14, 24, 41, 0.96), rgba(7, 12, 22, 0.94));
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.movie-list,
.schedule-list,
.benefit-list,
.about-list,
.contact-list {
  display: grid;
  gap: 12px;
}

.movie,
.schedule-item,
.benefit,
.about-item,
.contact-item {
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.movie h3,
.schedule-item h3,
.benefit h3,
.about-item h3,
.contact-item strong {
  margin: 0 0 6px;
  color: #f8fafc;
}

.movie .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.schedule-item time {
  display: inline-block;
  margin-right: 10px;
  color: #ffd77a;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: #ffd77a;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer {
  margin-top: 24px;
  padding: 18px 0 8px;
  color: #94a3b8;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 0 0 12px;
}

.footer-nav--sub {
  margin-top: -4px;
  margin-bottom: 14px;
  gap: 6px 12px;
}

.footer-nav a {
  color: #dbe4f0;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer strong {
  display: block;
  color: #ffd77a;
  margin-bottom: 8px;
}

.site-mobile-nav {
  display: none;
}

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

  .brand-tag {
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 16px, 1140px);
  }

  .hero,
  .page-hero,
  .section,
  .card {
    padding: 18px;
  }

  .nav {
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 110px;
  }

  .site-mobile-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
    gap: 6px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(6, 12, 22, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .site-mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 56px;
    padding: 6px 4px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #f8fafc;
    text-decoration: none;
  }

  .site-mobile-nav a.active {
    border-color: rgba(247, 201, 109, 0.42);
    background: linear-gradient(180deg, rgba(247, 201, 109, 0.22), rgba(247, 201, 109, 0.08));
  }

  .site-mobile-nav strong {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  .site-mobile-nav span {
    font-size: 0.68rem;
    line-height: 1.1;
    color: #a8b3c6;
  }
}
