:root {
  color-scheme: light;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --orange-500: #f97316;
  --yellow-400: #facc15;
  --white: #ffffff;
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.16);
  --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.12);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--slate-50);
  color: var(--slate-900);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.28);
}

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

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

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
  border-radius: 50%;
  box-shadow: 0 10px 18px rgba(220, 38, 38, 0.35);
}

.logo-text {
  font-size: 22px;
  background: linear-gradient(90deg, #fb7185, var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-link,
.mobile-link {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #fb7185;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
}

.site-search input {
  width: 250px;
  height: 40px;
  padding: 0 44px 0 18px;
  color: var(--white);
  background: rgba(51, 65, 85, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  outline: none;
}

.site-search input:focus {
  border-color: rgba(248, 113, 113, 0.75);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.site-search button {
  position: absolute;
  right: 10px;
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
}

.mobile-nav {
  display: none;
  padding: 14px 20px 20px;
  background: var(--slate-800);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

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

.mobile-search input {
  width: 100%;
}

.mobile-search button {
  position: static;
  width: auto;
  min-width: 72px;
  height: 40px;
  margin-left: 8px;
  padding: 0 14px;
  color: var(--white);
  background: var(--red-600);
  border-radius: 999px;
}

.hero-slider {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

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

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

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

.hero-backdrop {
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.70), rgba(2, 6, 23, 0.25)), var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.28), transparent 28%), linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.88));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: center;
  width: min(1200px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  padding: 72px 0 116px;
}

.hero-copy {
  max-width: 720px;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(220, 38, 38, 0.28);
}

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

.hero-desc {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(241, 245, 249, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.6;
}

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

.hero-meta span,
.detail-meta span {
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 16px 30px rgba(220, 38, 38, 0.32);
}

.button.primary:hover {
  background: var(--red-700);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.button.soft {
  color: #fecaca;
  background: rgba(127, 29, 29, 0.36);
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.5);
  transform: rotate(2deg);
}

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

.hero-control-row {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 28px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 50%;
}

.hero-dot.active {
  width: 36px;
  background: var(--red-500);
  border-radius: 999px;
}

.hero-rail,
.mini-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(130px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.rank-mini-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 170px;
  padding: 8px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(14px);
}

.rank-mini-card img {
  width: 52px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-mini-card span {
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.accent-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1200px) / 2));
  padding-left: max(16px, calc((100% - 1200px) / 2));
  background: linear-gradient(180deg, #fff7ed, var(--slate-50));
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

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

.section-more {
  flex: none;
  color: var(--red-600);
  font-weight: 800;
}

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

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

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

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

.movie-card-link {
  display: block;
  height: 100%;
}

.movie-poster {
  position: relative;
  overflow: hidden;
  background: var(--slate-200);
}

.movie-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

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

.movie-score,
.movie-duration {
  position: absolute;
  z-index: 2;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
}

.movie-score {
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  background: rgba(234, 88, 12, 0.92);
}

.movie-duration {
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  background: rgba(2, 6, 23, 0.78);
}

.movie-info {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-info h3 {
  display: -webkit-box;
  min-height: 46px;
  margin: 0;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.movie-meta {
  color: var(--slate-600);
  font-size: 13px;
}

.movie-meta span:not(:last-child)::after {
  margin-left: 10px;
  color: #cbd5e1;
  content: "·";
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-list span {
  padding: 4px 8px;
  color: var(--red-700);
  background: #fee2e2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

.movie-card.compact .movie-line {
  display: none;
}

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

.category-card,
.category-overview-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.category-card a,
.category-overview-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.category-card h3,
.category-overview-card h2 {
  margin: 0;
  font-size: 24px;
}

.category-card p,
.category-overview-card p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.category-count,
.category-overview-top span {
  width: fit-content;
  padding: 6px 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--red-600));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

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

.category-samples a {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--slate-700);
  background: var(--slate-100);
  border-radius: 999px;
  font-size: 13px;
}

.category-overview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.category-overview-top a {
  color: var(--red-600);
  font-weight: 800;
}

.page-hero {
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.45), transparent 30%), linear-gradient(110deg, var(--slate-950), var(--slate-800));
}

.small-hero {
  padding: 70px max(16px, calc((100% - 1200px) / 2));
}

.small-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.small-hero p {
  max-width: 840px;
  margin: 0;
  color: rgba(241, 245, 249, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

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

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.search-panel {
  grid-template-columns: minmax(260px, 1fr) 170px 170px auto;
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  color: var(--slate-900);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.filter-panel strong {
  color: var(--red-600);
  white-space: nowrap;
}

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

.ranking-row {
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.ranking-row a {
  display: grid;
  grid-template-columns: 58px 78px minmax(0, 1fr) auto 68px;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
}

.rank-number {
  color: var(--red-600);
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.ranking-row img {
  width: 78px;
  height: 104px;
  object-fit: cover;
  border-radius: 12px;
}

.ranking-title {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.ranking-title strong {
  overflow: hidden;
  font-size: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-title em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--slate-600);
  font-style: normal;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ranking-meta {
  color: var(--slate-600);
  font-size: 14px;
  white-space: nowrap;
}

.ranking-score {
  color: var(--orange-500);
  font-size: 22px;
  font-weight: 900;
  text-align: right;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.76), rgba(2, 6, 23, 0.52)), var(--detail-image);
  background-position: center;
  background-size: cover;
  filter: blur(3px);
  transform: scale(1.03);
}

.detail-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 58px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 28px 64px rgba(2, 6, 23, 0.58);
}

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

.detail-copy h1 {
  max-width: 900px;
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 850px;
  margin: 0 0 22px;
  color: rgba(241, 245, 249, 0.86);
  font-size: 20px;
  line-height: 1.7;
}

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

.detail-tags span {
  color: var(--white);
  background: rgba(220, 38, 38, 0.72);
}

.detail-content {
  padding-top: 38px;
}

.player-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
  background: #000000;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--white);
  background: radial-gradient(circle at 50% 45%, rgba(220, 38, 38, 0.28), rgba(2, 6, 23, 0.68));
  border: 0;
}

.player-start span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding-left: 5px;
  font-size: 34px;
  background: var(--red-600);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(220, 38, 38, 0.38);
}

.player-start strong {
  font-size: 20px;
}

.player-box.playing .player-start {
  display: none;
}

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

.detail-article,
.related-panel {
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.detail-article {
  padding: 28px;
}

.detail-article h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-article p {
  margin: 0 0 26px;
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.9;
}

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

.info-list div {
  padding: 12px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
}

.info-list dt {
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 800;
}

.info-list dd {
  margin: 5px 0 0;
  font-weight: 700;
}

.prev-next-links {
  display: grid;
  gap: 10px;
}

.prev-next-links a {
  display: block;
  padding: 12px 14px;
  color: var(--red-600);
  background: #fff1f2;
  border-radius: 12px;
  font-weight: 800;
}

.related-panel {
  position: sticky;
  top: 92px;
  padding: 20px;
}

.related-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.related-heading h2 {
  margin: 0;
  font-size: 22px;
}

.related-heading a {
  color: var(--red-600);
  font-weight: 800;
}

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

.site-footer {
  margin-top: 42px;
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
}

.footer-brand p {
  max-width: 520px;
  color: #94a3b8;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 18px;
}

.footer-links a:hover {
  color: #fb7185;
}

.footer-bottom {
  padding: 18px 16px;
  color: #94a3b8;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.hidden-card {
  display: none !important;
}

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

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

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

  .related-panel {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: 620px;
    padding-top: 56px;
  }

  .hero-poster {
    display: none;
  }

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

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

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

  .detail-layout {
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: center;
  }

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

  .ranking-row a {
    grid-template-columns: 42px 68px minmax(0, 1fr);
  }

  .ranking-meta,
  .ranking-score {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(100% - 24px, 1200px);
  }

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

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

  .hero-copy h1,
  .detail-copy h1 {
    font-size: 38px;
  }

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

  .hero-actions {
    display: grid;
  }

  .movie-grid,
  .slim-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .movie-info {
    padding: 12px;
  }

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

  .movie-line,
  .tag-list {
    display: none;
  }

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

  .detail-poster {
    width: 180px;
  }

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

  .detail-article {
    padding: 20px;
  }
}
