:root {
  --bg: #f4f5f7;
  --paper: #ffffff;
  --text: #1f2430;
  --muted: #6d7482;
  --line: #e6e8ee;
  --gold: #c99b46;
  --orange: #d47a2d;
  --deep: #111826;
  --radius-lg: 14px;
  --radius-md: 8px;
  --shadow: 0 6px 16px rgba(15, 28, 48, 0.05);
  --card-gray: #eef1f4;
  --card-gray-deep: #e5e9ee;
  --fs-nav: 17px;
  --fs-title: 34px;
  --fs-card-title: 18px;
  --fs-body: 15px;
  --fs-button: 14px;
  --fs-meta: 12px;
  --fs-meta-sm: 11px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Heiti SC", sans-serif;
  background: var(--bg);
  color: var(--text);
}

main {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1690px, calc(100vw - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header-wrap {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.top-nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "logo panel";
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 10px 28px;
  transition: min-height 0.25s ease, padding 0.25s ease, gap 0.25s ease;
}

.logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  min-width: 210px;
}

.logo img {
  display: block;
  width: auto;
  height: 54px;
  max-width: 240px;
  object-fit: contain;
  transition: height 0.25s ease, max-width 0.25s ease;
}

.mobile-nav-panel {
  grid-area: panel;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.mobile-nav-panel > .main-nav,
.mobile-nav-panel > .nav-actions {
  grid-area: auto;
}

.mobile-menu-toggle,
.mobile-nav-backdrop {
  display: none;
}

.mobile-menu-toggle {
  grid-area: toggle;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #d9e0ea;
  border-radius: 6px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #263244;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid #c99b46;
  outline-offset: 2px;
}

.main-nav {
  grid-area: nav;
  position: relative;
  width: 100%;
}

.main-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  width: 100%;
  gap: 4px;
}

.main-nav-list > .nav-item {
  position: relative;
}

.nav-item.has-mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.main-nav-list > .nav-item > a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #2d3443;
  font-size: var(--fs-nav);
  letter-spacing: 0.2px;
  padding: 16px 6px 14px;
  border-radius: 0;
  position: relative;
  transition: color 0.2s ease, font-size 0.25s ease, padding 0.25s ease;
}

.main-nav-list > .nav-item:hover > a {
  color: #8c5a15;
}

.main-nav-list > .nav-item > a::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 2px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.main-nav-list > .nav-item:hover > a::after,
.main-nav-list > .nav-item > a.is-current::after {
  background: #c99b46;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 320px;
  max-width: 380px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 252, 255, 0.98));
  border: 1px solid #e1e7f0;
  border-radius: 0;
  box-shadow: 0 20px 48px rgba(15, 31, 55, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 20;
}

.mega-menu::before {
  content: none;
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #e3e8ef;
  filter: drop-shadow(0 -1px 1px rgba(20, 33, 51, 0.05));
}

.mega-menu::after {
  content: none;
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

.nav-item.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-inner {
  width: 100%;
  margin: 0;
  padding: 16px 18px 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mega-inner > div:not(:first-child) {
  display: none;
}

.mega-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 1.6px;
  color: #8b96a9;
  text-transform: uppercase;
}

.mega-inner > div:first-of-type {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 0;
  row-gap: 0;
}

.mega-inner a {
  display: block;
  text-decoration: none;
  color: #3f4b60;
  font-size: 15px;
  line-height: 2.05;
  border-bottom: 1px solid #edf1f6;
  letter-spacing: 0.2px;
  padding: 2px 0 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.mega-inner a:hover {
  color: #8c5a15;
  background: rgba(247, 250, 255, 0.85);
}

.nav-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-right: 12px;
  border-right: 1px solid #dfe4ec;
}

.lang-switch .lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #596273;
  font-size: 13px;
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.lang-switch .lang-link:hover {
  color: #8c5a15;
  background: #f6f7fa;
}

.lang-switch .lang-link.is-active {
  color: #8c5a15;
  background: #f4efe6;
  font-weight: 600;
}

.lang-btn {
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  text-decoration: none;
  transition: padding 0.25s ease, font-size 0.25s ease;
}

.apply-btn {
  border-radius: 0;
  padding: 7px 0;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease, padding 0.25s ease, font-size 0.25s ease;
}

.header-wrap.is-scrolled {
  box-shadow: 0 4px 12px rgba(15, 24, 38, 0.07);
}

.header-wrap.is-scrolled .top-nav {
  min-height: 62px;
  gap: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.header-wrap.is-scrolled .logo img {
  height: 44px;
  max-width: 210px;
}

.header-wrap.is-scrolled .main-nav-list > .nav-item > a {
  font-size: 16px;
  padding-top: 11px;
  padding-bottom: 10px;
}

.header-wrap.is-scrolled .apply-btn {
  padding: 6px 12px;
  font-size: 12px;
}

.lang-btn {
  border: 1px solid #d4d9e3;
  background: #fff;
}

.apply-btn {
  color: #354052;
  background: transparent;
  font-weight: 500;
}

.apply-btn:hover {
  color: #8c5a15;
  background: transparent;
}

.hero {
  margin-top: 0;
  min-height: 40vw;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.hero-inner {
  min-height: 40vw;
  display: flex;
  align-items: center;
  position: static;
}

.hero::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 25, 0.5) 0%,
    rgba(8, 14, 25, 0.38) 45%,
    rgba(8, 14, 25, 0.54) 100%
  );
}

.hero::after {
  content: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 4.5s ease;
}

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

.hero-slide.s1 {
  background-image: url("../images/banner2.jpg");
}

.hero-slide.s2 {
  background-image: url("../images/banner3.jpg");
  background-position: center center;
}

.hero-slide.s3 {
  background-image: url("../images/banner4.jpg");
  background-position: center right;
}

.hero-slide.s4 {
  background-image: url("../images/banner5.jpg");
  background-position: center;
}

.hero-slide.s5 {
  background-image: url("../images/banner0.jpg");
  background-position: center;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  max-width: 560px;
  padding: 30px 0;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: var(--fs-meta);
  letter-spacing: 0.8px;
  color: rgba(236, 240, 247, 0.92);
}

.hero h1 {
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Heiti SC", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  font-size: clamp(32px, 3.2vw, 52px);
  letter-spacing: 0.2px;
}

.hero-meta {
  margin: 12px 0 0;
  color: rgba(223, 230, 242, 0.92);
  max-width: 540px;
  font-size: var(--fs-body);
  letter-spacing: 0.3px;
}

.hero-buttons {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-buttons a {
  text-decoration: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #b98937;
  background: linear-gradient(135deg, #ce8c32, #a56411);
  font-size: var(--fs-button);
  letter-spacing: 0.5px;
  transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.hero-buttons a:hover {
  filter: brightness(1.06);
  box-shadow: 0 4px 14px rgba(165, 100, 17, 0.35);
}

.hero-buttons a.ghost {
  background: linear-gradient(135deg, rgba(206, 140, 50, 0.55), rgba(165, 100, 17, 0.55));
  border-color: rgba(185, 137, 55, 0.85);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 6;
  width: 30px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  transform: translateX(-50%);
  display: grid;
  place-items: start center;
  padding-top: 8px;
  text-decoration: none;
}

.scroll-cue span {
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: #fff;
  animation: scrollCue 1.6s ease-in-out infinite;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin-top: 0;
  display: flex;
  gap: 10px;
  z-index: 5;
  padding: 0;
}

.hero-dots button {
  width: 36px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(170, 182, 201, 0.66);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-dots .active {
  background: #c99b46;
  transform: scale(1.04);
  box-shadow: none;
}

.quote {
  display: none;
  text-align: center;
  padding: 42px 0 20px;
}

.silk-band {
  position: relative;
  isolation: isolate;
  margin-top: 0;
  padding: 24px 0 42px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(249, 248, 244, 0.92) 0%, rgba(247, 245, 239, 0.98) 14%, rgba(247, 247, 247, 1) 58%);
}

.silk-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/silk-silhouette.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100vw auto;
  background-attachment: fixed;
  opacity: 0.085;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1) contrast(0.92);
}

.silk-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.1) 26%, rgba(255, 255, 255, 0.42) 100%);
  pointer-events: none;
  z-index: 0;
}

.people-marquee-section {
  position: relative;
  z-index: 1;
  padding: 28px 0 20px;
  background: transparent;
}

.people-head {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title more";
  column-gap: 18px;
  align-items: center;
}

.people-head h2 {
  grid-area: title;
  margin: 0;
  font-size: var(--fs-title);
}

.people-head .section-en {
  color: #8c94a3;
}

.people-marquee {
  width: min(1690px, calc(100vw - 48px));
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.people-marquee::before,
.people-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.people-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(247, 247, 247, 1), rgba(247, 249, 252, 0));
}

.people-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(247, 247, 247, 1), rgba(247, 249, 252, 0));
}

.people-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marqueeLeft 30s linear infinite;
}

.people-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.people-item {
  position: relative;
  flex: 0 0 auto;
  width: 280px;
  height: 162px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #d9dee7;
}

.people-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.people-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(9, 17, 30, 0.68));
}

.people-item span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 1;
  font-size: 15px;
  font-weight: 600;
}

.logo-marquee-section {
  padding: 16px 0 8px;
}

.logo-marquee-section:not(.logo-marquee-section-bottom) {
  display: none;
}

.logo-marquee-section-bottom {
  margin-top: 44px;
  padding: 6px 0 18px;
}

.logo-marquee {
  width: min(1690px, calc(100vw - 48px));
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  background: #f7f9fc;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f7f9fc, rgba(247, 249, 252, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f7f9fc, rgba(247, 249, 252, 0));
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marqueeLeft 28s linear infinite;
}

.logo-track-reverse {
  animation-name: marqueeRight;
}

.logo-group {
  display: flex;
  align-items: center;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 62px;
  margin: 10px 8px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0.8px;
  color: #737f92;
  background: #eceff4;
  border: 1px solid #e2e7ee;
  white-space: nowrap;
}

.logo-item img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  object-position: center;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}

.quote p {
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Heiti SC", sans-serif;
  font-size: 22px;
}

.quote span {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: #8b91a0;
  letter-spacing: 1px;
}

.ad-strip {
  margin-top: 10px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.ad-meta small {
  display: block;
  color: #8b94a7;
  letter-spacing: 1.4px;
  font-size: 10px;
  text-transform: uppercase;
}

.ad-sub {
  margin: 8px 0 0;
  font-size: var(--fs-meta);
  letter-spacing: 1px;
  color: #9ca5b6;
}

.ad-main h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Heiti SC", sans-serif;
}

.ad-main p {
  margin: 6px 0 0;
  color: #7f899b;
  letter-spacing: 0.6px;
  font-size: var(--fs-body);
  text-transform: uppercase;
}

.title-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.title-with-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.15) brightness(0.68);
  opacity: 1;
}

.ad-cta {
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 22px;
  background: #111b2d;
  color: #fff;
  font-size: var(--fs-button);
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.ad-cta:hover {
  background: #1b2a44;
  transform: translateY(-1px);
}

.section-head {
  padding: 64px 0 22px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title more";
  column-gap: 18px;
  align-items: center;
}

.section-head h2 {
  grid-area: title;
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Heiti SC", sans-serif;
  font-size: var(--fs-title);
}

.section-en {
  grid-area: sub;
  display: inline-block;
  margin-top: 4px;
  font-size: var(--fs-meta);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8c94a3;
}

.section-more-btn {
  grid-area: more;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  align-self: center;
  min-width: 112px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #d6dde8;
  color: #3a465c;
  text-decoration: none;
  font-size: var(--fs-button);
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.section-more-btn:hover {
  border-color: #b58a46;
  color: #845514;
  background: rgba(255, 255, 255, 0.92);
}

.timeflow-bg {
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.flow-top {
  border-top: 1px solid #e7ebf2;
  background: linear-gradient(180deg, rgba(248, 250, 253, 0.6), rgba(248, 250, 253, 0.15));
}

.flow-mid {
  border-top: 1px solid #e7ebf2;
  background: linear-gradient(180deg, rgba(248, 250, 253, 0.35), rgba(248, 250, 253, 0.08));
}

.flow-bottom {
  border-top: 1px solid #e7ebf2;
  border-bottom: 1px solid #e7ebf2;
  background: linear-gradient(180deg, rgba(248, 250, 253, 0.25), rgba(248, 250, 253, 0.05));
}

.news-band {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 56px 0 68px;
  border: 0;
  background-color: var(--bg);
  overflow: hidden;
}

.news-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/news-silk-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.news-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(250, 251, 253, 0.9) 16%,
    rgba(244, 245, 247, 0.8) 42%,
    rgba(244, 245, 247, 0.62) 72%,
    rgba(244, 245, 247, 0.45) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.news-band > .container {
  position: relative;
  z-index: 1;
}

.news-band-head {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title more"
    "sub more";
  column-gap: 18px;
  align-items: end;
  margin-bottom: 40px;
}

.news-band-head h2 {
  grid-area: title;
  margin: 0;
  color: var(--text);
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Heiti SC", sans-serif;
  font-size: var(--fs-title);
}

.news-band-head .section-en {
  grid-area: sub;
  color: #8c94a3;
}

.news-band-head p {
  display: none;
}

.news-h-grid {
  counter-reset: news-item;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 20px;
}

.news-h-card {
  counter-increment: news-item;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 168px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, background-color 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.news-h-card:hover {
  background: #fafbfd;
  border-color: #d8dde6;
  box-shadow: 0 12px 28px rgba(15, 28, 48, 0.1);
  transform: translateY(-3px);
}

.news-h-card:focus-visible {
  outline: 2px solid #c99b46;
  outline-offset: 2px;
}

.news-h-thumb {
  flex: 0 0 40%;
  max-width: 200px;
  min-width: 118px;
  align-self: stretch;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  transition: filter 0.32s ease, transform 0.32s ease;
}

.news-h-card:hover .news-h-thumb {
  filter: brightness(1.06);
}

.news-h-p1 {
  background-image: url("../images/films/film1.jpg");
}

.news-h-p2 {
  background-image: url("../images/films/film2.jpg");
}

.news-h-p3 {
  background-image: url("../images/films/film3.jpg");
}

.news-h-p4 {
  background-image: url("../images/films/film4.jpg");
}

.news-h-p5 {
  background-image: url("../images/films/film5.jpg");
}

.news-h-p6 {
  background-image: url("../images/banner2.jpg");
  background-position: center 40%;
}

.news-h-body {
  flex: 1;
  min-width: 0;
  padding: 18px 20px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.news-h-body::before {
  content: counter(news-item, decimal-leading-zero);
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #a8b0be;
  font-weight: 700;
}

.news-h-meta {
  margin: 0;
  font-size: var(--fs-meta-sm);
  letter-spacing: 0.8px;
  color: #8c96a6;
  text-transform: uppercase;
}

.news-h-body h3 {
  margin: 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.42;
  font-weight: 600;
  color: #243048;
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Heiti SC", sans-serif;
  transition: color 0.28s ease;
}

.news-h-card:hover .news-h-body h3 {
  color: #8c5a15;
}

.news-h-body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #5f697d;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-h-body p.news-h-meta {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}

.news-intl {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
}

/* 仅 1 条新闻时无右侧列表，主卡单列铺满 */
.news-intl-single {
  grid-template-columns: 1fr;
}

.news-more-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.news-more-btn {
  grid-area: more;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #d6dde8;
  color: #3a465c;
  text-decoration: none;
  font-size: var(--fs-button);
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.news-more-btn:hover {
  border-color: #b58a46;
  color: #845514;
  background: rgba(255, 255, 255, 0.92);
}

.official-video-band {
  margin-top: 54px;
  margin-bottom: 56px;
  padding: 0;
  background: transparent;
  border: 0;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.official-video-band::before {
  content: none;
}

.official-video-band > * {
  position: relative;
  z-index: 1;
}

.official-video-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.official-video-head .title-with-icon {
  margin: 0;
  color: var(--text);
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Heiti SC", sans-serif;
  font-size: var(--fs-title);
}

.official-video-head .section-en {
  margin-top: 4px;
}

.official-video-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #d6dde8;
  color: #3a465c;
  text-decoration: none;
  font-size: var(--fs-button);
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.official-video-more:hover {
  border-color: #b58a46;
  color: #845514;
  background: rgba(255, 255, 255, 0.92);
}

.video-carousel {
  position: relative;
  overflow: hidden;
}

.video-carousel::after {
  content: none;
}

.video-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform 0.58s ease;
}

.video-card {
  flex: 0 0 calc((100% - 36px) / 2.5);
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid #dfe5ee;
  box-shadow: 0 10px 20px rgba(17, 25, 40, 0.12);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 16, 28, 0.64), rgba(10, 16, 28, 0.12) 58%);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(12, 18, 30, 0.58);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.video-card:hover .video-play,
.video-card:focus-within .video-play,
.video-list-thumb:hover .video-play,
.video-list-thumb:focus-within .video-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.video-play:hover {
  background: rgba(12, 18, 30, 0.74);
}

.video-play:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.video-play:focus-visible {
  outline: 2px solid #c99b46;
  outline-offset: 3px;
}

.video-card h3 {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  margin: 0;
  color: #eef3ff;
  font-size: var(--fs-card-title);
  font-weight: 500;
  line-height: 1.3;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 22, 0.76);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #0f1724;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.video-modal-head {
  min-height: 52px;
  padding: 0 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.video-modal-head h3 {
  margin: 0;
  color: #f4f7fb;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.video-modal-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.video-modal-close:focus-visible {
  outline: 2px solid #c99b46;
  outline-offset: 2px;
}

.video-modal-body {
  background: #05080d;
}

.video-modal-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

body.video-modal-open {
  overflow: hidden;
}

.v1 { background-image: url("../images/banner1.jpg"); }
.v2 { background-image: url("../images/banner2.jpg"); }
.v3 { background-image: url("../images/films/film3.jpg"); }
.v4 { background-image: url("../images/films/film4.jpg"); }
.v5 { background-image: url("../images/bjiff-jury-2.jpg"); }
.v6 { background-image: url("../images/bjiff-jury-4.jpg"); }

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

.video-nav button {
  width: 36px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(170, 182, 201, 0.66);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.video-nav button.active {
  background: #c99b46;
  transform: scale(1.04);
}

.hero-dots button:hover,
.video-nav button:hover {
  background: rgba(194, 205, 223, 0.88);
}

.news-main {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-main-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}

.news-main-body {
  margin-top: 14px;
  padding-right: 6px;
}

.news-main-body h3 {
  margin: 6px 0 8px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.3;
  color: #1f2a3d;
  font-weight: 600;
}

.news-main-body p {
  margin: 0;
  color: #5f697d;
  line-height: 1.7;
  font-size: var(--fs-body);
}

.news-side {
  counter-reset: side-news;
  border-left: 1px solid #e4e8ef;
  padding-left: 20px;
}

.news-side-item {
  counter-increment: side-news;
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 10px 0 12px;
  border-bottom: 1px dashed #dde2ea;
  position: relative;
}

.news-side-item:last-child {
  border-bottom: 0;
}

.news-side-item::before {
  content: counter(side-news, decimal-leading-zero);
  position: absolute;
  right: 0;
  top: 10px;
  color: #a9b1bf;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
}

.news-side-item h4 {
  margin: 6px 34px 0 0;
  color: #293448;
  font-size: var(--fs-card-title);
  line-height: 1.45;
  font-weight: 500;
}

.news-side-item:hover h4,
.news-main:hover h3 {
  color: #8c5a15;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 26px 20px;
}

.film-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  position: relative;
}

.film-card::before,
.jury-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #c89b3c, #6f8f7a);
}

.tone-gold::before {
  background: #c89b3c;
}

.tone-green::before {
  background: #6f8f7a;
}

.tone-red::before {
  background: #8b3a2e;
}

.film-large {
  grid-column: span 4;
}

.film-card {
  grid-column: span 2;
}

.thumb {
  border-radius: 8px;
  height: 180px;
  background: linear-gradient(145deg, var(--card-gray-deep), #d9dee5);
  position: relative;
}

.thumb::after,
.avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 14px,
      rgba(63, 77, 95, 0.06) 14px 15px
    );
}

.film-large .thumb {
  height: 300px;
}

.t1,
.t2,
.t3,
.t4,
.t5,
.t6 { background: linear-gradient(145deg, var(--card-gray-deep), #d9dee5); }

.film-card h3 {
  margin: 12px 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.film-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.film-stagger {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  padding: 22px 0 160px;
  border-bottom: 1px solid #e6ebf3;
}

.film-stagger::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 76px;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(133, 152, 180, 0.1) 0 28px, transparent 28px 62px),
    linear-gradient(180deg, rgba(237, 241, 247, 0.35), rgba(237, 241, 247, 0));
  opacity: 0.22;
  z-index: 0;
}

.film-poster {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
}

.film-poster .poster-img {
  width: 100%;
  aspect-ratio: 2 / 3.1;
  border-radius: 0;
  border: 1px solid rgba(220, 226, 236, 0.9);
  box-shadow: 0 14px 24px rgba(8, 16, 28, 0.2);
  background-size: cover;
  background-position: center;
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease, filter 0.38s ease;
}

.film-poster:hover .poster-img {
  transform: scale(1.028);
  box-shadow: 0 22px 42px rgba(8, 16, 28, 0.26), 0 0 0 1px rgba(201, 155, 70, 0.2);
  border-color: rgba(201, 155, 70, 0.5);
  filter: brightness(1.05);
}

.film-poster:hover h3 {
  color: #8c5a15;
}

.film-poster:focus-visible {
  outline: 2px solid #c99b46;
  outline-offset: 6px;
}

.film-poster h3 {
  margin: 10px 2px 0;
  font-size: var(--fs-card-title);
  font-weight: 500;
  color: #2b3342;
  transition: color 0.28s ease;
}

.film-meta {
  margin: 4px 2px 0;
  font-size: var(--fs-meta-sm);
  color: #8f99ab;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.p1 { transform: translateY(28px); }
.p2 { transform: translateY(70px); }
.p3 { transform: translateY(8px); }
.p4 { transform: translateY(64px); }
.p5 { transform: translateY(22px); }

.p1 .poster-img { background-image: url("../images/films/film1.jpg"); }
.p2 .poster-img { background-image: url("../images/films/film2.jpg"); }
.p3 .poster-img { background-image: url("../images/films/film3.jpg"); }
.p4 .poster-img { background-image: url("../images/films/film4.jpg"); }
.p5 .poster-img { background-image: url("../images/films/film5.jpg"); }

.quick-portal {
  margin-top: 28px;
  margin-bottom: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 248, 252, 0.72));
  border-radius: 0;
  padding: 8px 0 10px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.quick-portal .qp-item {
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  color: #3b4455;
  padding: 10px 10px 12px;
  border-right: 1px solid var(--line);
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.quick-portal .qp-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #bcc5d3;
}

.quick-portal .qp-item:first-child::before {
  display: none;
}

.quick-portal .qp-item:hover {
  background: rgba(241, 245, 251, 0.8);
  transform: translateY(-1px);
}

.quick-portal .qp-item:last-child {
  border-right: 0;
}

.qp-icon {
  display: none;
}

.qp-cn {
  font-size: 16px;
  color: #1f2d43;
  letter-spacing: 0.3px;
}

.qp-en {
  font-size: var(--fs-meta-sm);
  color: #8e98ab;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quick-portal .qp-item.qp-primary {
  background: linear-gradient(180deg, rgba(201, 155, 70, 0.14), rgba(201, 155, 70, 0.06));
}

.quick-portal .qp-item.qp-primary .qp-icon,
.quick-portal .qp-item.qp-primary .qp-cn {
  color: #855819;
}

.quick-portal .qp-item.qp-primary::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 0;
  height: 2px;
  background: #c99b46;
}

.jury-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.jury-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: center;
  position: relative;
}

.avatar {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 2px;
  margin-bottom: 10px;
  background: linear-gradient(145deg, var(--card-gray-deep), #d9dee5);
}

.a1,
.a2,
.a3,
.a4,
.a5 { background: linear-gradient(145deg, var(--card-gray-deep), #d9dee5); }

.jury-card h4 {
  margin: 4px 0;
  font-size: 14px;
}

.jury-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.jury-head {
  position: relative;
  overflow: hidden;
}

.jury-head::before {
  content: none;
  position: absolute;
  inset: 16px 0 0;
  pointer-events: none;
  background:
    radial-gradient(90% 120% at 0% 100%, rgba(106, 155, 120, 0.12) 0, rgba(106, 155, 120, 0) 70%),
    repeating-linear-gradient(160deg, rgba(121, 160, 134, 0.12) 0 1px, transparent 1px 14px);
  opacity: 0.58;
}

.jury-head > * {
  position: relative;
  z-index: 1;
}

.jury-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 368px 328px;
  gap: 14px;
  padding: 16px 0 0;
}

.collage-item {
  display: flex;
  flex-direction: column;
}

.collage-photo {
  width: 100%;
  flex: 1;
  min-height: 0;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(220, 226, 236, 0.9);
}

.collage-item h4 {
  margin: 10px 2px 0;
  font-size: var(--fs-card-title);
  font-weight: 500;
  color: #2b3342;
}

.collage-item p {
  margin: 4px 2px 0;
  font-size: var(--fs-meta-sm);
  color: #8f99ab;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.c1 { grid-column: span 5; }
.c2 { grid-column: span 7; }
.c3 { grid-column: span 3; }
.c4 { grid-column: span 6; }
.c5 { grid-column: span 3; }

.c1 .collage-photo { background-image: url("../images/bjiff-jury-1.jpg"); background-position: center 8%; }
.c2 .collage-photo { background-image: url("../images/bjiff-jury-2.jpg"); background-position: center 6%; }
.c3 .collage-photo { background-image: url("../images/bjiff-jury-3.jpg"); background-position: center 8%; }
.c4 .collage-photo { background-image: url("../images/bjiff-jury-4.jpg"); background-position: center 10%; }
.c5 .collage-photo { background-image: url("../images/bjiff-jury-5.jpg"); background-position: center 30%; }

.awards {
  margin-top: 36px;
  margin-bottom: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 24px 0 26px;
  background: transparent;
}

.awards-main {
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px 0 14px;
}

.awards-main p {
  margin: 0;
  color: var(--muted);
}

.awards-main h3 {
  margin: 4px 0;
  font-size: 60px;
  color: #2863c7;
  line-height: 1;
}

.awards-main span {
  color: #7b8597;
}

.awards-sub {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.awards-sub article {
  background: var(--card-gray);
  border: 0;
  border-radius: 4px;
  padding: 14px 12px;
}

.awards-sub h4 {
  margin: 0;
  font-size: 14px;
}

.awards-sub p {
  margin: 6px 0 0;
  color: #57617a;
  font-size: 13px;
}

.site-footer {
  position: relative;
  background: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 155, 70, 0) 0%,
    rgba(201, 155, 70, 0.75) 22%,
    rgba(146, 162, 188, 0.7) 52%,
    rgba(106, 155, 120, 0.72) 78%,
    rgba(106, 155, 120, 0) 100%
  );
}

.footer-inner {
  padding: 20px 0 28px;
  text-align: center;
  color: #7d8698;
  font-size: 13px;
}

.footer-inner p {
  margin: 4px 0;
}

.friend-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 4px 0 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid #edf0f5;
}

.friend-links span {
  color: #1f2430;
  font-weight: 600;
}

.friend-links a {
  color: #6c7586;
  text-decoration: none;
}

.friend-links a:hover {
  color: #8c5a15;
}

@media (max-width: 1100px) {
  .top-nav {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas: "logo panel";
    gap: 10px;
    padding: 10px 12px;
  }

  .mobile-nav-panel {
    gap: 10px;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
  }

  .main-nav-list {
    display: flex;
    width: max-content;
    min-width: 100%;
    padding: 0;
  }

  .main-nav-list > .nav-item > a {
    padding: 12px 11px;
    font-size: 15px;
  }

  .logo {
    min-width: 170px;
  }

  .logo img {
    height: 46px;
    max-width: 190px;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-switch {
    padding-right: 8px;
  }

  .lang-switch .lang-link {
    padding: 4px 6px;
    font-size: 12px;
  }

  .apply-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .mega-inner {
    padding: 10px 10px 12px;
  }

  .mega-menu {
    min-width: 300px;
    max-width: 340px;
  }

  .mega-inner > div:first-of-type {
    column-gap: 0;
  }

  .film-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .film-stagger {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .p1,
  .p2,
  .p3,
  .p4,
  .p5 {
    transform: translateY(0);
  }

  .news-intl {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-band-head {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "sub"
      "more";
    row-gap: 8px;
  }

  .news-more-btn {
    justify-self: start;
  }

  .video-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .news-side {
    border-left: 0;
    border-top: 1px solid #e4e8ef;
    padding-left: 0;
    padding-top: 12px;
  }

  .film-card {
    grid-column: span 1;
  }

  .film-large {
    grid-column: span 2;
  }

  .jury-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 280px);
  }

  .c1,
  .c2,
  .c3,
  .c4,
  .c5 {
    grid-column: span 1;
  }

  .people-item {
    width: 240px;
    height: 140px;
  }
}

@media (max-width: 720px) {
  body.nav-open {
    overflow: hidden;
  }

  .header-wrap {
    z-index: 100;
  }

  .top-nav {
    position: relative;
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "logo toggle";
    gap: 12px;
    padding: 10px 58px 10px 14px;
  }

  .header-wrap.is-scrolled .top-nav {
    min-height: 60px;
    padding: 8px 58px 8px 14px;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    position: fixed;
    top: 10px;
    right: 14px;
    z-index: 1002;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .header-wrap.is-scrolled .mobile-menu-toggle {
    top: 8px;
  }

  .header-wrap.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .header-wrap.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header-wrap.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    width: min(86vw, 360px);
    height: 100dvh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 84px 18px 24px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 40px rgba(15, 24, 38, 0.18);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.24s ease, visibility 0.24s ease;
  }

  .header-wrap.is-menu-open .mobile-nav-panel {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(17, 24, 38, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
  }

  .header-wrap.is-menu-open .mobile-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav {
    width: 100%;
    overflow: visible;
  }

  .main-nav-list {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .main-nav-list > .nav-item {
    border-bottom: 1px solid #edf1f6;
  }

  .nav-item.has-mega::after {
    display: none;
  }

  .main-nav-list > .nav-item > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 0;
    text-align: left;
    white-space: normal;
    font-size: 16px;
    line-height: 1.45;
  }

  .main-nav-list > .nav-item > a::after {
    left: 0;
    right: auto;
    width: 34px;
  }

  .mega-menu {
    position: static;
    display: block;
    min-width: 0;
    max-width: none;
    margin: 0 0 10px;
    border: 0;
    background: #f7f9fc;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.has-mega:hover .mega-menu {
    transform: none;
  }

  .mega-inner {
    padding: 8px 12px;
    gap: 0;
  }

  .mega-kicker {
    display: none;
  }

  .mega-inner > div:first-of-type {
    display: grid;
    row-gap: 0;
  }

  .mega-inner a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 8px 0;
    line-height: 1.45;
    font-size: 14px;
  }

  .nav-actions {
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 4px;
    white-space: normal;
  }

  .lang-switch {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-right: 0;
    border-right: 0;
    gap: 8px;
  }

  .lang-switch .lang-link {
    min-height: 42px;
    padding: 8px 6px;
    border: 1px solid #dfe4ec;
    border-radius: 6px;
  }

  .apply-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    font-size: 14px;
  }

  .section-head {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "more";
    row-gap: 8px;
  }

  .people-head {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "more";
    row-gap: 8px;
    align-items: start;
  }

  .section-more-btn {
    justify-self: start;
  }

  .hero-overlay {
    padding: 22px 10px;
  }

  .hero,
  .hero-inner {
    min-height: 380px;
  }

  .hero-dots {
    bottom: 8px;
    gap: 8px;
  }

  .scroll-cue {
    display: none;
  }

  .hero-dots button {
    width: 30px;
    height: 5px;
  }

  .video-nav button {
    width: 30px;
    height: 5px;
  }

  .ad-strip {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 10px;
  }

  .film-grid,
  .film-stagger,
  .jury-collage,
  .awards-sub {
    grid-template-columns: 1fr;
  }

  .news-intl {
    grid-template-columns: 1fr;
  }

  .official-video-band {
    padding: 0;
  }

  .official-video-head {
    margin-bottom: 14px;
    align-items: center;
  }

  .official-video-head .title-with-icon {
    font-size: 30px;
  }

  .video-card {
    flex: 0 0 calc(100% / 1.15);
  }

  .video-play {
    width: 50px;
    height: 50px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .video-card h3 {
    font-size: 14px;
  }

  .jury-collage {
    grid-template-rows: repeat(5, 260px);
    gap: 10px;
  }

  .logo {
    min-width: 170px;
  }

  .logo img {
    height: 44px;
    max-width: 180px;
  }

  .header-wrap.is-scrolled .logo img {
    height: 44px;
    max-width: 180px;
  }

  .logo-item {
    min-width: 140px;
    height: 54px;
    margin: 8px 6px;
    font-size: 12px;
  }

  .logo-item img {
    height: 28px;
    max-width: 128px;
  }

  .people-marquee-section {
    padding: 22px 0 14px;
  }

  .people-marquee {
    width: min(100%, calc(100vw - 24px));
  }

  .people-marquee::before,
  .people-marquee::after {
    width: 42px;
  }

  .people-item {
    width: 178px;
    height: 104px;
  }

  .people-item span {
    font-size: 14px;
  }

  .friend-links {
    gap: 8px 12px;
    align-items: flex-start;
  }

  .timeflow-bg {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .people-track,
  .logo-track,
  .scroll-cue span {
    animation: none;
  }
}

.inner-main {
  min-height: 72vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 245, 247, 0.96)),
    var(--bg);
}

.inner-hero {
  position: relative;
  padding: 70px 0 62px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 24, 38, 0.88), rgba(17, 24, 38, 0.38)),
    url("../images/banner2.jpg") center 48% / cover no-repeat;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 155, 70, 0), rgba(201, 155, 70, 0.9), rgba(201, 155, 70, 0));
}

.inner-kicker {
  margin: 0 0 10px;
  color: #e2c179;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.inner-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
}

.inner-hero p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.75;
}

.inner-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 36px;
  padding-bottom: 58px;
}

.side-nav {
  position: sticky;
  top: 98px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e2e7ef;
  border-radius: 0;
}

.side-nav h2 {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9edf3;
  color: #1f2430;
  font-size: 18px;
}

.side-nav h2:not(:first-child) {
  margin-top: 24px;
}

.side-nav a {
  display: block;
  min-height: 44px;
  padding: 11px 12px;
  border-bottom: 1px solid #edf1f6;
  color: #4d596d;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.side-nav a:hover,
.side-nav a.active {
  color: #8c5a15;
  background: #f8f3e8;
}

.member-account {
  margin: -2px 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e9edf3;
  color: #667186;
  font-size: 14px;
  line-height: 1.55;
  word-break: break-all;
}

/* Member center — profile download grid */
.member-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 28px;
}

.member-download-button {
  display: block;
  min-height: 104px;
  padding: 22px 24px;
  border: 1px solid #e4e9f1;
  border-radius: 0;
  background: #f8fafc;
  color: #1f2430;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.member-download-button strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.member-download-button span {
  display: block;
  color: #667186;
  font-size: 15px;
  line-height: 1.6;
}

.member-download-button:hover {
  border-color: #c99b46;
  background: #fff8ec;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .member-download-grid {
    grid-template-columns: 1fr;
  }

  .member-download-button {
    min-height: 92px;
    padding: 18px;
  }

  .member-download-button strong {
    font-size: 20px;
  }
}

/* Member center — category file list */
.member-file-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.member-file-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #e4e9f1;
  border-radius: 0;
  background: #f8fafc;
}

.member-file-icon {
  position: relative;
  width: 42px;
  height: 32px;
  border-radius: 0;
  background: #d8a94c;
}

.member-file-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -7px;
  width: 18px;
  height: 10px;
  border-radius: 0;
  background: #e6bf70;
}

.member-file-icon::after {
  content: "";
  position: absolute;
  inset: 9px 0 0;
  border-radius: 0;
  background: #c99b46;
}

.member-file-info {
  min-width: 0;
}

.member-file-info strong,
.member-file-info span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-file-info strong {
  color: #1f2430;
  font-size: 17px;
  line-height: 1.45;
}

.member-file-info span {
  margin-top: 3px;
  color: #667186;
  font-size: 14px;
}

.member-file-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 38px;
  padding: 0 18px;
  border-radius: 0;
  background: #1f2430;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.member-file-download:hover {
  background: #8c5a15;
  color: #fff;
}

.member-file-empty {
  padding: 18px 0;
  color: #667186;
  font-size: 16px;
}

@media (max-width: 620px) {
  .member-file-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .member-file-download {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.content-panel {
  min-width: 0;
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e2e7ef;
  border-radius: 0;
}

.content-eyebrow {
  margin: 0 0 8px;
  color: #c99b46;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.article-body h2,
.list-head h2 {
  margin: 0;
  color: #1f2430;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.article-body h3 {
  margin: 30px 0 12px;
  color: #1f2430;
  font-size: 22px;
}

.article-body p,
.article-body li {
  color: #4e596b;
  font-size: 16px;
  line-height: 1.9;
}

.article-body p {
  margin: 16px 0;
}

.article-body ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.intro-figure {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 22px;
  align-items: center;
  margin: 28px 0;
  padding: 18px;
  border: 1px solid #e8edf4;
  border-radius: 0;
  background: #f8fafc;
}

.intro-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.intro-figure h3 {
  margin-top: 0;
}

.list-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid #e6ebf2;
}

.list-head span {
  color: #7b8597;
  font-size: 14px;
  white-space: nowrap;
}

.news-list-template {
  display: grid;
  gap: 0;
}

.news-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #edf1f6;
  color: inherit;
  text-decoration: none;
}

.news-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}

.news-row p {
  margin: 0 0 8px;
  color: #a06c22;
  font-size: 12px;
  letter-spacing: 0.7px;
}

.news-row h3 {
  margin: 0 0 10px;
  color: #1f2430;
  font-size: 22px;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.news-row span {
  color: #667186;
  font-size: 15px;
  line-height: 1.75;
}

.news-row:hover h3 {
  color: #8c5a15;
}

.news-row.featured {
  padding-top: 28px;
}

.image-grid-template {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 28px;
}

.image-card {
  display: block;
  color: #1f2430;
  text-decoration: none;
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  background: #e8edf4;
  transition: transform 0.2s ease;
}

.image-card span {
  display: block;
  padding-top: 10px;
  font-size: 16px;
  line-height: 1.55;
}

.image-card:hover img {
  transform: translateY(-2px);
}

.video-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 28px;
}

.video-list-card {
  min-width: 0;
  border: 1px solid #e0e6ef;
  background: #fff;
}

.video-list-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #101827;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.video-list-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 16, 28, 0.36), rgba(10, 16, 28, 0.08));
}

.video-list-body {
  padding: 16px 16px 18px;
}

.video-list-body h3 {
  margin: 0;
  color: #1f2430;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
}

.video-list-body p {
  margin: 8px 0 0;
  color: #7b8597;
  font-size: 14px;
  line-height: 1.6;
}

.page-links,
.page-list {
  margin-top: 30px;
}

.page-links .pagination,
.page-list .pagination,
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-links .pagination li,
.page-list .pagination li,
.pagination li {
  margin: 0;
  padding: 0;
}

.page-links .pagination a,
.page-links .pagination span,
.page-list .pagination a,
.page-list .pagination span,
.pagination a,
.pagination span {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #d9e0ea;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #3b4658;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.page-links .pagination a:hover,
.page-list .pagination a:hover,
.pagination a:hover {
  border-color: #c99b46;
  color: #8c5a15;
  background: #faf8f3;
}

.page-links .pagination .active span,
.page-list .pagination .active span,
.pagination .active span {
  border-color: #c99b46;
  background: #c99b46;
  color: #fff;
  font-weight: 600;
}

.page-links .pagination .disabled span,
.page-list .pagination .disabled span,
.pagination .disabled span {
  border-color: #e5e9f0;
  background: #f4f6f9;
  color: #a0a9b8;
  cursor: not-allowed;
}

.detail-panel {
  width: 100%;
}

.detail-meta {
  margin-bottom: 14px;
  color: #8b96a9;
  font-size: 14px;
}

.detail-cover {
  display: block;
  width: 100%;
  max-height: 520px;
  margin: 24px 0;
  object-fit: cover;
  border-radius: 0;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #e6ebf2;
}

.detail-actions a {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid #d6dde8;
  border-radius: 0;
  color: #2f3848;
  text-decoration: none;
}

.detail-actions a:first-child {
  border-color: #c99b46;
  background: #c99b46;
  color: #fff;
}

@media (max-width: 1100px) {
  .inner-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
  }

  .content-panel {
    padding: 26px;
  }

  .image-grid-template {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .inner-hero {
    padding: 46px 0 42px;
  }

  .inner-layout {
    grid-template-columns: 1fr;
    padding-top: 22px;
    padding-bottom: 38px;
  }

  .side-nav {
    position: static;
    padding: 14px;
  }

  .content-panel {
    padding: 20px;
  }

  .intro-figure,
  .news-row {
    grid-template-columns: 1fr;
  }

  .image-grid-template {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .list-head {
    display: block;
  }

  .list-head span {
    display: block;
    margin-top: 8px;
  }
}
