:root {
  color-scheme: light;
  --primary-50: #fff7ed;
  --primary-100: #ffedd5;
  --primary-500: #f97316;
  --primary-600: #ea580c;
  --primary-700: #c2410c;
  --warm-50: #fefce8;
  --warm-100: #fef9c3;
  --dark-50: #f8f9fa;
  --dark-100: #e9ecef;
  --dark-200: #dee2e6;
  --dark-300: #ced4da;
  --dark-400: #adb5bd;
  --dark-500: #6c757d;
  --dark-600: #495057;
  --dark-700: #343a40;
  --dark-800: #212529;
  --dark-900: #1a1d20;
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 18px 36px -18px rgba(15, 23, 42, 0.35);
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--dark-800);
  background: var(--warm-50);
  -webkit-font-smoothing: antialiased;
}

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-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-600), #facc15);
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.28);
}

.logo-text {
  font-size: 20px;
  color: var(--dark-800);
}

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

.nav-link,
.mobile-link {
  color: var(--dark-600);
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: var(--primary-50);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--primary-700);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--dark-200);
  padding: 12px 16px 16px;
  background: #ffffff;
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
  animation: slideDown 0.25s ease both;
}

.mobile-link {
  display: block;
  padding: 10px 4px;
}

.hero-carousel {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--dark-900);
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

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

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
  color: #ffffff;
  animation: slideUp 0.55s ease both;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-meta span,
.detail-meta span {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

.hero-meta span:first-child,
.detail-meta span:first-child {
  color: #ffffff;
  background: var(--primary-600);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

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

.hero-actions,
.search-band-inner,
.footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-button,
.ghost-button,
.home-search-form button,
.ranking-action,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button,
.home-search-form button {
  min-height: 46px;
  padding: 0 24px;
  color: #ffffff;
  background: var(--primary-600);
  box-shadow: 0 16px 32px -16px rgba(234, 88, 12, 0.7);
}

.primary-button:hover,
.home-search-form button:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
}

.ghost-button {
  min-height: 46px;
  padding: 0 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow-left {
  left: 24px;
}

.hero-arrow-right {
  right: 24px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.25s ease, background 0.25s ease;
}

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

.home-search-band {
  margin-top: -34px;
  position: relative;
  z-index: 8;
}

.search-band-inner {
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.search-band-inner h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.search-band-inner p {
  margin: 0;
  color: var(--dark-500);
}

.home-search-form,
.inline-filter {
  display: flex;
  gap: 10px;
  width: min(100%, 520px);
}

.home-search-form input,
.inline-filter input {
  min-height: 46px;
  flex: 1;
  border: 1px solid var(--dark-200);
  border-radius: 12px;
  padding: 0 16px;
  color: var(--dark-800);
  background: var(--dark-50);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-search-form input:focus,
.inline-filter input:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}

.content-section {
  padding: 58px 0;
}

.warm-block {
  background: linear-gradient(180deg, transparent, rgba(255, 237, 213, 0.45), transparent);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.section-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--primary-700);
  background: var(--primary-100);
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.section-heading p {
  margin: 4px 0 0;
  color: var(--dark-500);
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

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

.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 42px;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
  transition: opacity 0.25s ease;
}

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

.poster-year,
.poster-type {
  position: absolute;
  z-index: 3;
  padding: 4px 8px;
  border-radius: 7px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.poster-year {
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.62);
}

.poster-type {
  left: 10px;
  bottom: 10px;
  background: rgba(234, 88, 12, 0.92);
}

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

.movie-card-body h3 {
  min-height: 48px;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
}

.movie-card-body h3 a {
  transition: color 0.2s ease;
}

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

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

.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.card-tags span,
.detail-tags span {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--primary-700);
  background: var(--primary-50);
  font-size: 12px;
  font-weight: 650;
}

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

.movie-card-compact .movie-card-body h3 {
  font-size: 14px;
}

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

.category-panel {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.category-panel img,
.category-panel-shade {
  position: absolute;
  inset: 0;
}

.category-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-panel:hover img {
  transform: scale(1.07);
}

.category-panel-shade {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.08));
}

.category-panel strong,
.category-panel small,
.category-mini-list {
  position: relative;
  z-index: 2;
}

.category-panel strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.category-panel small {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.category-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.category-mini-list span {
  max-width: 100%;
  overflow: hidden;
  border-radius: 999px;
  padding: 4px 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.two-column-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.4fr);
  gap: 34px;
  align-items: start;
}

.ranking-list {
  display: grid;
  gap: 10px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 46px 58px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-hover);
}

.rank-number {
  color: var(--primary-600);
  font-size: 20px;
  font-weight: 850;
  text-align: center;
}

.ranking-row img {
  width: 58px;
  height: 76px;
  border-radius: 9px;
  object-fit: cover;
}

.ranking-info {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.ranking-info strong {
  overflow: hidden;
  color: var(--dark-800);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-info em {
  color: var(--dark-500);
  font-size: 12px;
  font-style: normal;
}

.ranking-action {
  padding: 7px 10px;
  color: var(--primary-700);
  background: var(--primary-50);
  font-size: 12px;
}

.text-link {
  margin-top: 16px;
  color: var(--primary-700);
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark-900);
}

.compact-page-hero {
  padding: 76px 0;
  background: linear-gradient(135deg, var(--dark-900), #3b2416 62%, var(--primary-700));
}

.page-hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.eyebrow {
  color: var(--primary-100) !important;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.category-page-hero {
  min-height: 360px;
}

.page-hero-bg,
.page-hero-shade {
  position: absolute;
  inset: 0;
}

.page-hero-bg {
  background-position: center;
  background-size: cover;
  filter: blur(1px) saturate(1.1);
  transform: scale(1.04);
}

.page-hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.inline-filter {
  margin-top: 24px;
}

.search-page-filter {
  width: min(100%, 720px);
}

.empty-state {
  display: none;
  margin: 30px auto 0;
  border-radius: 16px;
  padding: 28px;
  color: var(--dark-500);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.empty-state.show {
  display: block;
}

.rankings-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.ranking-list-wide {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding-right: 6px;
}

.ranking-side {
  display: grid;
  gap: 24px;
}

.ranking-year-block {
  border-radius: var(--radius-lg);
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.ranking-year-block h2 {
  margin: 0 0 18px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark-900);
}

.detail-hero-bg,
.detail-hero-shade {
  position: absolute;
  inset: 0;
}

.detail-hero-bg {
  background-position: center;
  background-size: cover;
  filter: blur(4px) saturate(1.08);
  transform: scale(1.08);
  opacity: 0.7;
}

.detail-hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.18));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  min-height: 520px;
  padding: 70px 0;
}

.detail-poster {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.breadcrumb a:hover {
  color: #ffffff;
}

.detail-copy h1 {
  margin: 16px 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 780px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.detail-tags {
  margin: 18px 0 28px;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

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

.detail-primary {
  display: grid;
  gap: 22px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.28);
}

.player-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.66));
  transition: opacity 0.2s ease;
}

.player-play span {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary-600);
  font-size: 30px;
  box-shadow: 0 20px 45px rgba(234, 88, 12, 0.42);
}

.player-play strong {
  font-size: 18px;
}

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

.detail-text-card,
.side-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-text-card h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.detail-text-card p {
  margin: 0 0 14px;
  color: var(--dark-600);
  line-height: 1.9;
}

.detail-text-card p:last-child {
  margin-bottom: 0;
}

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

.side-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--dark-500);
}

.side-card dd {
  margin: 0;
  color: var(--dark-800);
  font-weight: 700;
}

.related-section {
  padding-top: 0;
}

.site-footer {
  color: var(--dark-200);
  background: var(--dark-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 46px 0;
}

.footer-logo {
  color: #ffffff;
  font-size: 20px;
}

.site-footer p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--dark-300);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 17px;
}

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

.site-footer a {
  color: var(--dark-300);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--primary-500);
}

.footer-bottom {
  border-top: 1px solid var(--dark-700);
}

.footer-bottom-inner {
  justify-content: space-between;
  padding: 20px 0;
  color: var(--dark-400);
  font-size: 14px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

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

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

  .two-column-grid,
  .rankings-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .ranking-list-wide,
  .detail-sidebar {
    position: static;
    max-height: none;
  }
}

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

  .menu-button {
    display: inline-flex;
  }

  .hero-carousel {
    height: 520px;
  }

  .hero-content {
    align-items: end;
    padding-bottom: 74px;
  }

  .hero-arrow {
    display: none;
  }

  .search-band-inner,
  .home-search-form,
  .inline-filter {
    display: grid;
    width: 100%;
  }

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

  .detail-hero-inner {
    grid-template-columns: 150px 1fr;
    min-height: 440px;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .logo-text {
    font-size: 18px;
  }

  .hero-copy p,
  .detail-one-line {
    font-size: 16px;
  }

  .hero-meta span,
  .detail-meta span {
    font-size: 12px;
  }

  .content-section {
    padding: 42px 0;
  }

  .movie-grid,
  .featured-grid,
  .small-grid,
  .listing-grid,
  .category-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .category-panel {
    min-height: 220px;
    grid-column: span 2;
  }

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

  .movie-card-body h3 {
    min-height: 42px;
    font-size: 14px;
  }

  .movie-card-body p,
  .card-tags {
    display: none;
  }

  .detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 44px 0;
  }

  .detail-poster {
    width: 180px;
  }

  .detail-text-card,
  .side-card {
    padding: 22px;
  }

  .ranking-row {
    grid-template-columns: 38px 52px 1fr;
  }

  .ranking-action {
    display: none;
  }

  .footer-bottom-inner {
    align-items: flex-start;
  }
}
