:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --rose-600: #e11d48;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
  --shadow-soft: 0 18px 50px rgba(17, 24, 39, 0.12);
  --shadow-strong: 0 28px 70px rgba(17, 24, 39, 0.22);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-900);
  background: var(--gray-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 255, 255, 0.96), rgba(255, 251, 235, 0.96));
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--container));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
  box-shadow: 0 14px 28px rgba(146, 64, 14, 0.28);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 24px;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--amber-800), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  color: var(--gray-600);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--amber-600);
  transition: width 0.24s ease;
}

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
}

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

.mobile-nav {
  display: none;
  padding: 12px 16px 18px;
  background: white;
  border-top: 1px solid var(--gray-100);
}

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

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

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--amber-700);
  background: var(--amber-50);
}

.hero-section {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  padding: 34px max(16px, calc((100vw - var(--container)) / 2)) 52px;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34%), linear-gradient(135deg, var(--amber-50), #fff7ed 48%, #fff1f2);
}

.hero-slider {
  position: relative;
  min-height: 590px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: var(--gray-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: clamp(28px, 5vw, 72px);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.56), rgba(17, 24, 39, 0.18));
}

.hero-content {
  position: relative;
  max-width: 720px;
  color: white;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 999px;
  color: var(--amber-200);
  background: rgba(146, 64, 14, 0.28);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-content h2 {
  margin: 0 0 14px;
  color: var(--amber-100);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.hero-tags span,
.movie-meta span,
.tag-row span,
.rank-meta span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  padding: 7px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

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

.primary-btn {
  color: white;
  background: linear-gradient(90deg, var(--amber-600), var(--amber-700));
  box-shadow: 0 18px 36px rgba(180, 83, 9, 0.32);
}

.ghost-btn {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(17, 24, 39, 0.22);
}

.hero-dots {
  position: absolute;
  left: clamp(28px, 5vw, 72px);
  bottom: 30px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 36px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dot.is-active {
  background: var(--amber-500);
}

.hero-card-panel {
  align-self: stretch;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
}

.hero-card-head span {
  color: var(--gray-900);
  font-size: 20px;
}

.hero-card-head a {
  color: var(--amber-700);
  font-size: 14px;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quick-categories {
  padding: 26px 0;
  background: white;
  border-bottom: 1px solid var(--gray-100);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.chip-row a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--amber-800);
  background: var(--amber-50);
  border: 1px solid rgba(217, 119, 6, 0.18);
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease;
}

.chip-row a:hover {
  transform: translateY(-2px);
  background: var(--amber-100);
}

.search-panel {
  max-width: 760px;
  margin: 0 auto 28px;
}

.search-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-700);
  font-weight: 800;
}

.search-box {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: white;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}

.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--gray-900);
  background: transparent;
}

.search-box button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: white;
  background: var(--amber-700);
  font-weight: 800;
}

.feature-strip {
  padding: 36px 0;
  background: linear-gradient(180deg, white, var(--amber-50));
}

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

.feature-box {
  padding: 22px;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.07);
}

.feature-box strong {
  display: block;
  color: var(--gray-900);
  font-size: 18px;
  margin-bottom: 6px;
}

.feature-box span {
  color: var(--gray-600);
  font-size: 14px;
}

.section-block {
  padding: 70px 0;
  background: white;
}

.bg-soft {
  background: linear-gradient(135deg, var(--gray-50), var(--amber-50));
}

.bg-dark {
  color: white;
  background: radial-gradient(circle at top left, rgba(217, 119, 6, 0.2), transparent 26%), linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

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

.section-heading span {
  color: var(--amber-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.section-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--gray-600);
}

.section-heading.light span {
  color: var(--amber-200);
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.74);
}

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.1);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(17, 24, 39, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gray-200);
}

.poster-link img,
.category-card img,
.rank-poster img,
.detail-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-link img,
.category-card img,
.rank-poster img {
  transition: transform 0.5s ease;
}

.movie-card:hover .poster-link img,
.category-card:hover img,
.rank-item:hover .rank-poster img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.play-chip,
.year-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 850;
}

.play-chip {
  left: 12px;
  bottom: 12px;
  padding: 7px 11px;
  background: rgba(217, 119, 6, 0.92);
}

.year-chip {
  right: 12px;
  top: 12px;
  padding: 6px 10px;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
}

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

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.34;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-title:hover,
.rank-title:hover {
  color: var(--amber-700);
}

.movie-desc {
  display: -webkit-box;
  min-height: 44px;
  margin: 8px 0 12px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta span {
  padding: 4px 9px;
  color: var(--gray-700);
  background: var(--gray-100);
}

.tag-row {
  margin-top: 10px;
}

.tag-row span {
  padding: 5px 9px;
  color: var(--amber-800);
  background: var(--amber-50);
}

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

.movie-card.is-compact .movie-title {
  min-height: auto;
  font-size: 15px;
}

.movie-card.is-compact .movie-desc,
.movie-card.is-compact .movie-meta,
.movie-card.is-compact .tag-row {
  display: none;
}

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

.category-grid.overview {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--gray-900);
  box-shadow: var(--shadow-soft);
}

.category-card.large {
  min-height: 280px;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.86));
}

.category-card img {
  position: absolute;
  inset: 0;
}

.category-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.35);
  filter: blur(18px);
  z-index: 1;
}

.category-card strong,
.category-card p {
  position: relative;
  z-index: 2;
}

.category-card strong {
  font-size: 24px;
  margin-bottom: 8px;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 0.24s ease, background 0.24s ease;
}

.rank-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.rank-poster {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  background: var(--gray-800);
}

.rank-content {
  min-width: 0;
}

.rank-number {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--amber-200);
  font-size: 22px;
  font-weight: 950;
}

.rank-title {
  display: block;
  color: white;
  font-size: 19px;
  font-weight: 850;
}

.rank-content p {
  display: -webkit-box;
  margin: 6px 0 12px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-meta span {
  padding: 5px 9px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.page-hero {
  position: relative;
  padding: 82px 0 70px;
  color: white;
  overflow: hidden;
  background: radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.28), transparent 30%), linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.page-hero.slim {
  padding: 76px 0 64px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--amber-200);
}

.detail-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--gray-900);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.68), rgba(17, 24, 39, 0.36));
  backdrop-filter: blur(2px);
}

.detail-head {
  position: relative;
  z-index: 2;
  padding: 80px 0 54px;
}

.detail-title-wrap {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: end;
}

.detail-cover {
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.detail-title-wrap h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
}

.detail-title-wrap p {
  max-width: 820px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: start;
}

.detail-main,
.detail-side {
  min-width: 0;
}

.player-card,
.detail-content-card,
.side-card {
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-soft);
}

.player-card {
  padding: 14px;
  margin-bottom: 24px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #050505;
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.16), rgba(17, 24, 39, 0.78));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 22px 42px rgba(180, 83, 9, 0.34);
  font-size: 30px;
  line-height: 1;
  transform: scale(1);
  transition: transform 0.2s ease;
}

.play-overlay:hover .play-circle {
  transform: scale(1.08);
}

.play-overlay strong {
  max-width: 82%;
  text-align: center;
  font-size: 20px;
}

.detail-content-card,
.side-card {
  padding: 28px;
}

.detail-content-card h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.2;
}

.detail-content-card p {
  margin: 0 0 24px;
  color: var(--gray-700);
  font-size: 17px;
}

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

.info-table div {
  padding: 14px;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.info-table span {
  display: block;
  margin-bottom: 4px;
  color: var(--gray-500);
  font-size: 13px;
}

.info-table strong {
  color: var(--gray-900);
}

.info-table a {
  color: var(--amber-700);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tags span {
  padding: 7px 12px;
  color: var(--amber-800);
  background: var(--amber-50);
}

.side-movie-list {
  display: grid;
  gap: 16px;
}

.side-movie-list .movie-card {
  display: grid;
  grid-template-columns: 92px 1fr;
}

.side-movie-list .poster-link {
  aspect-ratio: 3 / 4;
}

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

.side-movie-list .year-chip,
.side-movie-list .play-chip {
  display: none;
}

.site-footer {
  color: white;
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.footer-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.65);
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-logo strong {
  color: var(--amber-200);
  font-size: 22px;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: var(--amber-200);
}

.footer-column ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-card-panel {
    align-self: auto;
  }

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

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-side {
    order: 2;
  }

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

@media (max-width: 860px) {
  .header-inner {
    height: 68px;
  }

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

  .brand-text small {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero-section {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-slider {
    min-height: 590px;
  }

  .hero-card-grid,
  .feature-grid,
  .movie-grid,
  .category-grid,
  .category-grid.overview,
  .rank-list,
  .rank-list.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-title-wrap {
    grid-template-columns: 140px 1fr;
    align-items: center;
  }

  .detail-title-wrap h1 {
    font-size: 36px;
  }

  .info-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container,
  .header-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, var(--container));
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-slider {
    min-height: 620px;
    border-radius: 22px;
  }

  .hero-slide {
    padding: 26px;
  }

  .hero-actions,
  .center-actions,
  .search-box {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-card-grid,
  .feature-grid,
  .movie-grid,
  .category-grid,
  .category-grid.overview,
  .rank-list,
  .rank-list.wide,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 96px 1fr;
    gap: 14px;
  }

  .detail-hero {
    min-height: auto;
  }

  .detail-title-wrap {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    width: 160px;
  }

  .detail-content-card,
  .side-card {
    padding: 20px;
  }

  .side-movie-list .movie-card {
    grid-template-columns: 84px 1fr;
  }
}
