:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --blue: #1e3a8a;
  --blue-soft: #dbeafe;
  --cyan: #0891b2;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --rose: #e11d48;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 26px 70px rgba(15, 23, 42, 0.22);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: var(--slate-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.over-hero {
  color: var(--white);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0));
}

.site-header.solid,
.site-header.is-scrolled {
  color: var(--slate-800);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-header.solid .brand-mark,
.site-header.is-scrolled .brand-mark {
  background: var(--blue);
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
  background: var(--amber);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.brand-copy small {
  font-size: 12px;
  opacity: 0.74;
}

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

.desktop-nav a {
  padding: 9px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--white);
  background: var(--amber);
}

.site-header.over-hero:not(.is-scrolled) .desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--slate-700);
  font-weight: 700;
}

.mobile-nav a:hover {
  color: var(--white);
  background: var(--blue);
}

.mobile-nav.is-open {
  display: block;
}

.hero-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--slate-950), var(--slate-800));
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.85s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 158, 11, 0.35), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.70) 45%, rgba(15, 23, 42, 0.18)),
    linear-gradient(0deg, rgba(15, 23, 42, 0.96), transparent 58%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - var(--container)) / 2));
  right: 24px;
  bottom: 72px;
  max-width: 760px;
  color: var(--white);
}

.eyebrow,
.section-title span,
.page-hero span,
.ranking-hero-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--slate-200);
  font-size: 18px;
}

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

.hero-tags {
  margin-bottom: 28px;
}

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

.hero-tags span {
  padding: 8px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.ghost-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
  color: var(--white);
  background: var(--amber);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.28);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.primary-btn:hover {
  background: var(--amber-dark);
}

.ghost-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.text-link {
  min-height: 38px;
  padding: 0;
  color: var(--blue);
}

.hero-control {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-control.prev {
  left: 24px;
}

.hero-control.next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 30px;
  background: var(--amber);
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0 72px;
}

.top-search {
  position: relative;
  margin-top: -44px;
  z-index: 2;
}

.muted-section {
  background: linear-gradient(180deg, var(--slate-100), var(--white));
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-title a {
  color: var(--blue);
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(260px, 1.5fr) minmax(120px, 0.55fr) minmax(120px, 0.55fr);
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.filter-panel h2 {
  margin: 2px 0 0;
  color: var(--slate-900);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.filter-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  color: var(--slate-800);
  background: var(--slate-50);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.quick-links a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 800;
}

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

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--slate-900);
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.70), transparent 60%);
  transition: opacity 0.2s ease;
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.36s ease;
}

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

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

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  opacity: 0;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--slate-900);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  transform: translate(-50%, -40%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber), var(--rose));
  font-size: 12px;
}

.movie-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.movie-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 800;
}

.movie-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: var(--slate-300);
}

.movie-card h3 {
  margin: 8px 0 8px;
  color: var(--slate-900);
  font-size: 19px;
  line-height: 1.24;
  letter-spacing: -0.03em;
}

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

.movie-card p {
  flex: 1;
  margin: 0 0 14px;
  color: var(--slate-600);
  font-size: 14px;
}

.tag-row span {
  padding: 6px 10px;
  color: var(--slate-700);
  background: var(--slate-100);
}

.large-tags span,
.genre-tags span {
  padding: 8px 13px;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--slate-900);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.category-card:hover img {
  opacity: 0.55;
  transform: scale(1.06);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.22));
}

.category-card span,
.category-card p {
  position: relative;
  z-index: 1;
}

.category-card span {
  display: block;
  margin-top: 92px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.category-card p {
  margin: 8px 0 0;
  color: var(--slate-200);
}

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

.rank-item {
  display: grid;
  grid-template-columns: 44px 86px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 10px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rank-item span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: var(--white);
  background: var(--slate-900);
  font-weight: 900;
}

.rank-item img {
  width: 86px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-item strong,
.rank-item small {
  grid-column: 3;
}

.rank-item strong {
  color: var(--slate-900);
  line-height: 1.2;
}

.rank-item small {
  color: var(--slate-500);
  font-weight: 700;
}

.inner-main {
  padding-top: 76px;
}

.page-hero,
.ranking-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-950), var(--blue) 62%, var(--cyan));
}

.page-hero {
  padding: 78px 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -55%;
  width: 620px;
  height: 620px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.22);
  filter: blur(10px);
}

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

.page-hero h1,
.ranking-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-hero p,
.ranking-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--slate-200);
  font-size: 18px;
}

.small-actions {
  margin-top: 24px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  overflow: hidden;
  border-radius: 18px;
}

.category-mosaic img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}

.category-overview-card h2 {
  margin: 0 0 8px;
  color: var(--slate-900);
  font-size: 24px;
}

.category-overview-card p {
  margin: 0 0 12px;
  color: var(--slate-600);
}

.ranking-hero {
  min-height: 420px;
}

.ranking-hero img,
.ranking-hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ranking-hero img {
  object-fit: cover;
}

.ranking-hero-layer {
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 158, 11, 0.30), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.18));
}

.ranking-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 86px;
}

.ranking-hero-content .primary-btn {
  margin-top: 26px;
}

.detail-section {
  padding-top: 34px;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.video-card,
.content-card {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.video-card {
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--slate-950);
  box-shadow: var(--shadow-lg);
}

.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--slate-950);
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 14px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 44%, rgba(245, 158, 11, 0.22), transparent 34%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0.30));
  text-align: center;
}

.video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.play-orb {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  color: var(--slate-950);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  font-size: 30px;
  text-indent: 4px;
}

.video-overlay strong {
  padding: 0 24px;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.15;
}

.content-card {
  padding: 28px;
}

.detail-copy h1 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-copy blockquote {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  color: var(--slate-700);
  background: var(--slate-100);
  font-size: 18px;
  font-weight: 800;
}

.detail-copy h2 {
  margin: 28px 0 10px;
  color: var(--slate-900);
  font-size: 24px;
  letter-spacing: -0.03em;
}

.detail-copy p {
  margin: 0;
  color: var(--slate-700);
  white-space: pre-line;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 16px;
}

.poster-card h2 {
  margin: 0 0 16px;
  color: var(--slate-900);
  font-size: 24px;
  line-height: 1.15;
}

.poster-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.poster-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--slate-100);
}

.poster-card dt {
  color: var(--slate-500);
  font-weight: 800;
}

.poster-card dd {
  margin: 0;
  color: var(--slate-900);
  font-weight: 900;
  text-align: right;
}

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

.empty-state {
  display: none;
  margin: 22px 0 0;
  padding: 18px;
  border-radius: 18px;
  color: var(--slate-600);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
}

.empty-state.is-visible {
  display: block;
}

.site-footer {
  color: var(--slate-300);
  background: radial-gradient(circle at 12% 12%, rgba(8, 145, 178, 0.25), transparent 28%), linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

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

.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.footer-inner p {
  max-width: 720px;
  margin: 0;
  color: var(--slate-300);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--slate-200);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

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

  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .detail-sidebar {
    position: static;
  }
}

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

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

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

  .hero-content {
    left: 18px;
    bottom: 58px;
  }

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

  .hero-control {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .top-search {
    margin-top: -26px;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .featured-grid,
  .category-grid,
  .rank-list,
  .related-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 38px 76px 1fr;
  }

  .rank-item img {
    width: 76px;
    height: 52px;
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .ranking-hero-content {
    padding-top: 58px;
  }

  .content-card {
    padding: 20px;
  }
}
