:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --brand-a: #f97316;
  --brand-b: #ec4899;
  --brand-c: #7c3aed;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 28rem), linear-gradient(180deg, #fff7ed 0%, #ffffff 24rem, #f8fafc 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.28);
}

.logo-text {
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--brand-a), var(--brand-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #475569;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  transform: translateY(-1px);
}

.header-search,
.mobile-search,
.hero-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search {
  margin-left: auto;
  width: min(360px, 36vw);
  padding: 6px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.header-search input,
.mobile-search input,
.hero-search input,
.hero-search select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #0f172a;
  background: transparent;
}

.header-search input {
  padding: 9px 10px 9px 14px;
}

.header-search button,
.mobile-search button,
.hero-search button,
.primary-button,
.secondary-button,
.rank-action {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.hero-search button,
.primary-button,
.rank-action {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 10px 26px rgba(236, 72, 153, 0.26);
}

.header-search button {
  padding: 9px 16px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #0f172a;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search {
  padding: 8px;
  border-radius: 16px;
  background: #f8fafc;
}

.mobile-search input {
  padding: 10px;
}

.mobile-search button {
  padding: 10px 16px;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  margin: 26px 0 34px;
  overflow: hidden;
  border-radius: 36px;
  color: #fff;
  background: #020617;
  box-shadow: var(--shadow);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.72s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111827, #fb7185);
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(22px) saturate(1.2);
  transform: scale(1.08);
  opacity: 0.48;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 25%, rgba(249, 115, 22, 0.45), transparent 20rem), linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.70) 45%, rgba(2, 6, 23, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 54px;
  padding: clamp(32px, 7vw, 86px);
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: #fb923c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-text h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.hero-text h1 {
  max-width: 780px;
  font-size: clamp(42px, 8vw, 88px);
}

.hero-summary {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 21px);
}

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

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

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

.hero-tags span {
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
}

.secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.primary-button:hover,
.secondary-button:hover,
.rank-action:hover,
.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(236, 72, 153, 0.32);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  transform: rotate(2deg);
}

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

.hero-poster span,
.detail-cover span,
.poster-title {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
}

.hero-poster::after,
.detail-cover::after,
.poster::after,
.rank-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.76));
}

.hero-bottom-bar {
  position: absolute;
  left: clamp(24px, 7vw, 86px);
  right: clamp(24px, 7vw, 86px);
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.hero-dot {
  width: 28px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.32);
}

.hero-dot.is-active {
  width: 48px;
  background: linear-gradient(90deg, #f97316, #ec4899);
}

.hero-categories {
  display: flex;
  max-width: 62%;
  gap: 8px;
  overflow: auto;
  padding-bottom: 2px;
}

.category-chip {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.content-section {
  margin: 38px 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.05em;
}

.section-heading .eyebrow {
  margin-bottom: 4px;
}

.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #f97316;
  font-weight: 900;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 146, 60, 0.8);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.26), transparent 34%), linear-gradient(135deg, #fb923c, #ec4899 56%, #7c3aed);
}

.poster img {
  transition: transform 0.45s ease;
}

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

.poster-title {
  font-size: 18px;
}

.play-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(10px);
}

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

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.28;
}

.movie-card h3 a:hover,
.rank-info h2 a:hover,
.inline-links a:hover,
.category-preview-links a:hover {
  color: #f97316;
}

.movie-card p,
.rank-info p,
.page-hero p,
.detail-one-line,
.detail-text-section p,
.site-footer p,
.category-overview-card p {
  color: var(--muted);
}

.movie-card p {
  min-height: 44px;
  margin: 0 0 10px;
  font-size: 13px;
}

.meta-row span,
.detail-meta span {
  color: #475569;
  background: #f1f5f9;
  padding: 5px 9px;
}

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

.tag-row span {
  color: #be185d;
  background: #fdf2f8;
  padding: 5px 8px;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #fff7ed);
  border: 1px solid rgba(254, 215, 170, 0.9);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.category-card {
  min-height: 136px;
  padding: 22px;
}

.category-card strong,
.category-overview-card h2 {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.category-card em {
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: #64748b;
  font-size: 13px;
  font-style: normal;
}

.category-glow {
  position: absolute;
  right: -26px;
  top: -26px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  opacity: 0.2;
}

.page-hero,
.detail-hero {
  margin: 26px 0 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow);
}

.page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 58px);
  background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.14), transparent 22rem), #ffffff;
}

.page-hero h1 {
  font-size: clamp(34px, 6vw, 66px);
}

.page-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: 17px;
}

.hero-search {
  min-width: min(560px, 100%);
  padding: 8px;
  border: 1px solid #fed7aa;
  border-radius: 24px;
  background: #fff7ed;
}

.hero-search.wide {
  flex-wrap: wrap;
}

.hero-search input,
.hero-search select {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  background: #fff;
}

.hero-search button {
  min-height: 46px;
  padding: 0 18px;
}

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

.category-overview-card {
  padding: 22px;
}

.category-overview-main {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.category-overview-mark {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
}

.category-overview-card h2,
.category-overview-card p {
  margin: 0;
}

.category-overview-card p {
  margin-top: 8px;
}

.category-preview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-preview-links a,
.inline-links a {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  font-weight: 800;
}

.rank-section {
  display: grid;
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 58px 92px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.rank-number {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
}

.rank-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  background: linear-gradient(135deg, #fb923c, #ec4899);
}

.rank-info h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.rank-info p {
  margin: 0 0 10px;
}

.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 22px 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

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

.breadcrumb em {
  color: #0f172a;
  font-style: normal;
}

.detail-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  padding: clamp(22px, 4vw, 42px);
  background: radial-gradient(circle at top right, rgba(236, 72, 153, 0.13), transparent 22rem), #fff;
}

.detail-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  background: linear-gradient(135deg, #fb923c, #ec4899 56%, #7c3aed);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.2);
}

.detail-info h1 {
  font-size: clamp(34px, 6vw, 64px);
}

.detail-one-line {
  margin: 18px 0;
  font-size: 19px;
}

.detail-meta {
  margin: 20px 0 8px;
}

.detail-tags {
  margin-bottom: 24px;
}

.detail-actions .secondary-button {
  color: #f97316;
  background: #fff7ed;
  border-color: #fed7aa;
}

.player-section {
  margin: 34px 0;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.28), transparent 20rem), #020617;
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
}

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

.play-circle {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  border-radius: 999px;
  color: #fff;
  font-size: 30px;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 18px 48px rgba(236, 72, 153, 0.42);
}

.player-overlay strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}

.detail-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.detail-text-grid article {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.detail-text-grid h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.detail-text-section p {
  margin: 0;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.site-footer {
  margin-top: 56px;
  color: #fff;
  background: linear-gradient(90deg, #1e293b, #020617, #1e293b);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  padding: 46px 0;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  justify-content: end;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.is-filter-hidden {
  display: none !important;
}

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

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-bottom: 112px;
  }

  .hero-poster {
    display: none;
  }

  .hero-categories {
    max-width: 75%;
  }

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

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

  .page-hero {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-hero {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner,
  main,
  .footer-inner,
  .mobile-panel {
    width: min(100% - 24px, 1180px);
  }

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

  .hero-section {
    border-radius: 26px;
  }

  .hero-slider,
  .hero-content {
    min-height: 560px;
  }

  .hero-content {
    padding: 34px 24px 132px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-bottom-bar {
    left: 22px;
    right: 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-categories {
    max-width: 100%;
  }

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

  .movie-grid,
  .hot-grid,
  .category-grid,
  .category-overview-grid,
  .detail-text-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .movie-card {
    display: grid;
    grid-template-columns: 116px 1fr;
  }

  .poster {
    height: 100%;
    min-height: 174px;
  }

  .poster-title {
    font-size: 14px;
  }

  .category-overview-main {
    grid-template-columns: 48px 1fr;
  }

  .rank-row {
    grid-template-columns: 42px 74px 1fr;
  }

  .rank-action {
    grid-column: 2 / 4;
    width: 100%;
  }

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

  .detail-cover {
    max-width: 260px;
  }

  .video-shell {
    border-radius: 22px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .movie-card {
    grid-template-columns: 96px 1fr;
  }

  .poster {
    min-height: 150px;
  }

  .movie-card p,
  .tag-row {
    display: none;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search button {
    width: 100%;
  }
}
