:root {
  --amber-50: #fff7ed;
  --amber-100: #ffedd5;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --rose-50: #fff1f2;
  --rose-500: #f43f5e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(124, 45, 18, 0.12);
  --shadow-hover: 0 24px 70px rgba(124, 45, 18, 0.2);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-800);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, var(--amber-50), #fffaf0 46%, var(--rose-50));
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 247, 237, 0.96), rgba(255, 237, 213, 0.96));
  border-bottom: 1px solid rgba(217, 119, 6, 0.14);
  box-shadow: 0 8px 22px rgba(124, 45, 18, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.25);
}

.brand-text {
  font-size: 24px;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  padding: 26px 0;
  color: var(--gray-700);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--amber-600);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.12);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--gray-800);
}

.mobile-nav {
  display: none;
  padding: 0 20px 18px;
  border-top: 1px solid rgba(217, 119, 6, 0.1);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--gray-700);
  font-weight: 700;
}

.mobile-link.is-active,
.mobile-link:hover {
  color: var(--amber-600);
  background: rgba(245, 158, 11, 0.12);
}

.hero-shell {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #1f1209;
}

.hero-slider {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
  padding: 80px max(22px, calc((100vw - var(--container)) / 2)) 96px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(124, 45, 18, 0.72), rgba(244, 63, 94, 0.38)),
    var(--hero-image),
    linear-gradient(135deg, #d97706, #f43f5e);
  background-position: center;
  background-size: cover;
  filter: saturate(1.1);
  transform: scale(1.04);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 70% 70%, rgba(245, 158, 11, 0.25), transparent 30%);
}

.hero-copy,
.hero-cover {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
  animation: fadeInUp 0.8s ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.8;
}

.hero-tags,
.detail-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-actions,
.detail-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  box-shadow: 0 16px 34px rgba(217, 119, 6, 0.25);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.ghost-btn {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-btn.dark {
  color: var(--gray-800);
  border-color: var(--gray-200);
  background: #fff;
}

.hero-cover {
  width: 360px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--amber-600), var(--rose-500));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.hero-cover img,
.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.2s ease;
}

.hero-cover img.is-missing,
.movie-poster img.is-missing {
  opacity: 0;
}

.hero-cover span,
.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  color: var(--amber-600);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-controls button {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-size: 28px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dot.is-active {
  width: 34px;
  background: #fff;
}

.feature-strip {
  max-width: var(--container);
  margin: -46px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-item {
  min-height: 110px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  text-align: center;
}

.feature-item strong {
  display: block;
  color: var(--amber-600);
  font-size: 30px;
  line-height: 1;
}

.feature-item span {
  display: block;
  margin-top: 8px;
  color: var(--gray-500);
  font-weight: 700;
}

.content-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 74px 20px;
}

.content-section.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.tinted-section {
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.58), rgba(255, 241, 242, 0.74));
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.heading-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.18);
}

.section-heading h2 {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.8;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.hot-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.all-movie-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.movie-card.is-hidden {
  display: none;
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-500), var(--rose-500));
}

.featured-grid .movie-poster {
  aspect-ratio: 4 / 3;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.08);
}

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.62));
}

.play-mark {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .play-mark {
  opacity: 1;
}

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  padding: 5px 9px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
  font-size: 12px;
  font-weight: 900;
}

.movie-card-body {
  padding: 16px;
}

.card-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--amber-600);
  font-size: 12px;
  font-weight: 800;
}

.card-meta-line span:not(:last-child)::after {
  content: "·";
  margin-left: 6px;
  color: var(--gray-500);
}

.movie-card h3 {
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: 18px;
  line-height: 1.35;
}

.hot-grid .movie-card h3,
.compact-card h3 {
  font-size: 15px;
}

.movie-card h3 a:hover {
  color: var(--amber-600);
}

.movie-card p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row span {
  color: var(--amber-700, #b45309);
  background: var(--amber-50);
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-size: 13px;
}

.rating {
  color: #b45309;
  font-weight: 900;
}

.card-foot a {
  color: var(--amber-600);
  font-weight: 900;
}

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

.category-tile,
.category-card-large {
  display: block;
  padding: 24px;
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-card-large:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.category-tile span,
.category-card-large h2 {
  display: block;
  margin: 0 0 10px;
  color: var(--gray-800);
  font-size: 22px;
  font-weight: 900;
}

.category-tile strong,
.category-count {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
  font-size: 13px;
}

.category-tile em,
.category-card-large p {
  display: block;
  color: var(--gray-500);
  font-style: normal;
  line-height: 1.7;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-samples a {
  padding: 6px 10px;
  color: var(--amber-700, #b45309);
  border-radius: 999px;
  background: var(--amber-50);
  font-size: 12px;
  font-weight: 800;
}

.search-panel {
  margin: 0 0 28px;
  padding: 22px;
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--gray-700);
  font-weight: 900;
}

.search-box input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 16px;
  outline: none;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(217, 119, 6, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.1);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 16px;
  color: var(--gray-700);
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(217, 119, 6, 0.14);
  cursor: pointer;
  font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
}

.result-count {
  margin: 14px 0 0;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 700;
}

.inner-hero {
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(124, 45, 18, 0.88), rgba(234, 88, 12, 0.82), rgba(244, 63, 94, 0.72)),
    linear-gradient(135deg, var(--amber-600), var(--rose-500));
}

.inner-hero p {
  margin: 0 0 10px;
  color: var(--amber-100);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
}

.inner-hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  letter-spacing: -0.05em;
}

.inner-hero span {
  display: block;
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--gray-500);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--amber-600);
}

.detail-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 34px 20px 80px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 30px;
  align-items: start;
}

.player-card,
.detail-info-card,
.detail-content-card,
.static-card {
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 999px;
  color: var(--amber-600);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 28px;
}

.video-frame.is-playing .big-play {
  opacity: 0;
  pointer-events: none;
}

.player-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  margin: 0;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.44);
  font-size: 13px;
  text-align: center;
}

.info-panel {
  padding: 22px;
}

.info-panel h2,
.detail-content-card h2,
.static-block h2 {
  margin: 0 0 16px;
  color: var(--gray-800);
  font-size: 24px;
}

.info-panel dl,
.info-panel dd,
.info-panel dt {
  margin: 0;
}

.info-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-panel dl div {
  padding: 14px;
  border-radius: 16px;
  background: var(--amber-50);
}

.info-panel dt {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 900;
}

.info-panel dd {
  margin-top: 4px;
  color: var(--gray-800);
  font-weight: 900;
}

.detail-info-card {
  padding: 30px;
}

.detail-tags span {
  color: #fff;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
}

.detail-info-card h1 {
  margin: 20px 0 18px;
  color: var(--gray-800);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.score-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.score-line span {
  color: #f59e0b;
}

.score-line strong {
  color: var(--gray-800);
  font-size: 20px;
}

.score-line em {
  color: var(--gray-500);
  font-style: normal;
}

.one-line {
  margin: 0;
  padding: 18px 20px;
  color: var(--gray-700);
  border-left: 4px solid var(--amber-500);
  border-radius: 16px;
  background: var(--amber-50);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 700;
}

.detail-content-card {
  margin-top: 30px;
  padding: 30px;
}

.content-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}

.content-tabs a {
  padding: 10px 16px;
  color: var(--amber-600);
  border-radius: 999px;
  background: var(--amber-50);
  font-weight: 900;
}

.detail-content-card article {
  margin-bottom: 30px;
}

.detail-content-card p,
.detail-content-card blockquote,
.static-block p {
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.95;
}

.detail-content-card blockquote {
  margin: 0;
  padding: 22px 24px;
  border-left: 4px solid var(--orange-500);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber-50), #fff);
  font-weight: 700;
}

.detail-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-data-grid div {
  padding: 16px;
  border-radius: 16px;
  background: var(--gray-50);
}

.detail-data-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 900;
}

.detail-data-grid strong {
  color: var(--gray-800);
}

.table-wrap {
  overflow: auto;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.ranking-table th,
.ranking-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
}

.ranking-table th {
  color: var(--gray-800);
  background: var(--amber-50);
  font-size: 13px;
  text-transform: uppercase;
}

.ranking-table td:first-child {
  color: var(--amber-600);
  font-weight: 900;
}

.ranking-table a {
  color: var(--gray-800);
  font-weight: 900;
}

.ranking-table a:hover {
  color: var(--amber-600);
}

.static-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
}

.static-block + .static-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-100);
}

.site-footer {
  color: #fff7ed;
  background: linear-gradient(135deg, #78350f, #9a3412, #7f1d1d);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 52px 20px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
}

.footer-panel h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
}

.footer-panel p,
.footer-panel li,
.footer-bottom p {
  color: rgba(255, 247, 237, 0.76);
  line-height: 1.8;
}

.footer-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-panel a:hover {
  color: #fff;
}

.footer-brand {
  color: #fff;
  font-size: 22px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 237, 213, 0.18);
  text-align: center;
}

.footer-bottom p {
  margin: 5px 0;
  font-size: 13px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .all-movie-grid,
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hot-grid,
  .category-grid,
  .category-large-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
  }

  .hero-cover {
    width: 280px;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-shell,
  .hero-slider {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding-top: 52px;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-actions,
  .detail-actions {
    justify-content: center;
  }

  .hero-cover {
    width: min(300px, 76vw);
    margin: 0 auto;
    transform: none;
  }

  .feature-strip,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-data-grid,
  .info-panel dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-inner {
    min-height: 66px;
  }

  .brand-text {
    font-size: 20px;
  }

  .content-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .movie-grid,
  .hot-grid,
  .all-movie-grid,
  .category-grid,
  .category-large-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .movie-card-body {
    padding: 12px;
  }

  .movie-card h3 {
    font-size: 15px;
  }

  .movie-card p {
    min-height: 42px;
    font-size: 12px;
  }

  .feature-strip {
    margin-top: -24px;
  }

  .feature-item {
    min-height: 88px;
    padding: 18px;
  }

  .detail-info-card,
  .detail-content-card,
  .static-card {
    padding: 22px;
  }
}

@media (max-width: 440px) {
  .movie-grid,
  .hot-grid,
  .all-movie-grid,
  .category-grid,
  .category-large-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }
}
