:root {
  color-scheme: light;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --rose-600: #e11d48;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-md: 0 8px 22px rgba(17, 24, 39, 0.10);
  --shadow-xl: 0 22px 48px rgba(17, 24, 39, 0.18);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #fff 0%, var(--gray-50) 52%, #fff 100%);
  color: var(--gray-900);
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--red-600), var(--red-700), var(--rose-600));
  box-shadow: 0 12px 32px rgba(185, 28, 28, 0.28);
}

.site-nav {
  max-width: 1280px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  color: var(--red-600);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.22);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  color: #fff;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover, .nav-link.is-active {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.header-search, .mobile-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.header-search input, .mobile-search input {
  width: 180px;
  border: 0;
  outline: 0;
  padding: 10px 4px 10px 16px;
  color: #fff;
  background: transparent;
}

.header-search input::placeholder, .mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.header-search button, .mobile-search button {
  padding: 10px 15px;
  color: var(--red-600);
  background: #fff;
  font-weight: 750;
}

.mobile-toggle {
  display: none;
  color: #fff;
  background: transparent;
  font-size: 26px;
  padding: 6px;
}

.mobile-panel {
  display: none;
  padding: 12px 24px 18px;
  background: rgba(127, 29, 29, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.mobile-link {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
}

.mobile-link:hover, .mobile-link.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-search {
  margin-top: 12px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #991b1b, var(--red-600), var(--rose-600));
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 48px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  padding: 86px max(24px, calc((100vw - 1280px) / 2 + 24px)) 72px;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(185, 28, 28, 0.72), rgba(225, 29, 72, 0.54)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
  transform: scale(1.03);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.18;
}

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

.hero-content, .hero-visual {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  font-weight: 760;
}

.hero h1 {
  margin: 24px 0 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--red-100);
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

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

.primary-btn, .ghost-btn, .solid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.primary-btn {
  color: var(--red-600);
  background: #fff;
  box-shadow: 0 18px 36px rgba(255, 255, 255, 0.22);
}

.primary-btn:hover, .ghost-btn:hover, .solid-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.ghost-btn {
  color: #fff;
  background: rgba(127, 29, 29, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.solid-btn {
  color: #fff;
  background: var(--red-600);
  box-shadow: 0 16px 32px rgba(220, 38, 38, 0.28);
}

.hero-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-poster-card {
  position: relative;
  width: min(420px, 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
}

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

.hero-poster-card div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 84px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.82));
}

.hero-poster-card strong {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

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

.hero-dot {
  width: 36px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

main {
  min-height: 70vh;
}

.page-hero {
  background: linear-gradient(120deg, var(--red-600), var(--rose-600));
  color: #fff;
  padding: 72px 24px;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.8;
}

.section {
  padding: 64px 24px;
}

.section.tinted {
  background: linear-gradient(135deg, var(--gray-50), var(--red-50));
}

.section.dark-cta {
  background: linear-gradient(120deg, var(--gray-900), var(--gray-800));
  color: #fff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-500);
  max-width: 720px;
  line-height: 1.7;
}

.section-link {
  color: var(--red-600);
  font-weight: 800;
  white-space: nowrap;
}

.section-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.section-link:hover span {
  transform: translateX(3px);
}

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

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

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

.movie-card, .featured-card, .rank-card, .category-card, .info-panel {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.movie-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-100), #fff);
}

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

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

.type-badge, .year-badge, .featured-badge, .rank-number {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.type-badge {
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  background: var(--red-600);
}

.year-badge {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  background: rgba(0, 0, 0, 0.66);
}

.movie-info {
  padding: 18px;
}

.movie-kicker {
  color: var(--red-600);
  font-size: 13px;
  font-weight: 800;
}

.movie-info h3 {
  margin: 6px 0 8px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--red-600);
}

.movie-info p {
  margin: 0;
  color: var(--gray-500);
  line-height: 1.65;
  font-size: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta span {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--gray-100);
}

.tag-row {
  min-height: 22px;
  margin-top: 12px;
  color: var(--gray-500);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-card {
  position: relative;
  min-height: 420px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.featured-card a {
  display: block;
  height: 100%;
}

.featured-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(0,0,0,0.86));
  pointer-events: none;
}

.featured-badge {
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  background: var(--red-600);
}

.featured-content {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: #fff;
}

.featured-content h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
}

.featured-content p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

.featured-meta {
  display: flex;
  gap: 14px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.play-chip {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red-600);
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 34px rgba(220, 38, 38, 0.34);
}

.movie-card-list a {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 150px;
}

.movie-card-list .movie-poster img {
  height: 100%;
  min-height: 150px;
}

.stats-strip {
  background: linear-gradient(90deg, var(--red-600), var(--rose-600));
  color: #fff;
  padding: 48px 24px;
}

.stats-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 38px;
  margin-bottom: 6px;
}

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

.category-card {
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--gray-100);
}

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

.category-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-600), var(--rose-600));
  font-size: 22px;
  margin-bottom: 16px;
}

.category-card h2, .category-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.category-card p {
  margin: 0 0 16px;
  color: var(--gray-500);
  line-height: 1.7;
}

.category-card small {
  color: var(--red-600);
  font-weight: 800;
}

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

.rank-card a {
  position: relative;
  display: grid;
  grid-template-columns: 72px 148px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
}

.rank-number {
  position: static;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red-600), var(--rose-600));
  font-size: 17px;
}

.rank-card img {
  width: 148px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
}

.rank-content h2, .rank-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.rank-content p {
  margin: 0;
  color: var(--gray-500);
  line-height: 1.55;
}

.rank-score {
  color: var(--red-600);
  font-weight: 900;
  white-space: nowrap;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px 180px;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.filter-panel input, .filter-panel select, .search-box input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 0 15px;
  outline: 0;
  color: var(--gray-900);
  background: #fff;
}

.filter-panel input:focus, .filter-panel select:focus, .search-box input:focus {
  border-color: var(--red-500);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.empty-state {
  display: none;
  text-align: center;
  padding: 56px 20px;
  color: var(--gray-500);
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.search-box {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  margin-bottom: 28px;
}

.search-box button {
  border-radius: 14px;
  padding: 0 24px;
  color: #fff;
  background: var(--red-600);
  font-weight: 850;
}

.detail-hero {
  padding: 54px 24px 64px;
  color: #fff;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,0.16), transparent 32%), linear-gradient(120deg, #111827, #7f1d1d 55%, #be123c);
}

.detail-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.detail-cover {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

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

.breadcrumbs a:hover {
  color: #fff;
}

.detail-title h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-title p {
  margin: 0 0 22px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.detail-meta span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.player-section {
  padding-top: 36px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
}

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

.play-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.68));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-cover span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red-600);
  font-size: 34px;
  box-shadow: 0 20px 46px rgba(220, 38, 38, 0.42);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 360px;
  gap: 32px;
}

.article-panel {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.article-panel h2 {
  margin: 0 0 16px;
  font-size: 27px;
  font-weight: 900;
}

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

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span, .tag-cloud a {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--red-50);
  color: var(--red-600);
  font-weight: 750;
  font-size: 13px;
}

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

.side-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: var(--gray-50);
  transition: background-color 0.2s ease;
}

.side-item:hover {
  background: var(--red-50);
}

.side-item img {
  width: 96px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
}

.side-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.side-item small {
  color: var(--gray-500);
}

.site-footer {
  margin-top: 0;
  color: #d1d5db;
  background: linear-gradient(180deg, var(--gray-900), #030712);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(220px, 1fr);
  gap: 32px;
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-inner p {
  max-width: 520px;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-inner h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  text-align: center;
  color: #9ca3af;
}

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

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

  .hero-slide {
    grid-template-columns: 1fr;
    padding-top: 76px;
    min-height: 720px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-poster-card {
    width: min(320px, 78vw);
  }

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

  .featured-grid, .movie-list, .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-hero-inner {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .site-nav {
    height: 60px;
    padding: 0 16px;
  }

  .brand-text {
    font-size: 17px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-slide {
    gap: 24px;
    padding: 52px 18px 72px;
  }

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

  .section, .page-hero, .detail-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

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

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

  .rank-card a {
    grid-template-columns: 52px 104px minmax(0, 1fr);
  }

  .rank-score {
    grid-column: 3;
  }

  .rank-card img {
    width: 104px;
    height: 72px;
  }

  .filter-panel, .search-box, .detail-hero-inner, .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .movie-card-list a {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .movie-card-list .movie-poster img {
    min-height: 154px;
  }

  .featured-card, .featured-card img {
    min-height: 360px;
    height: 360px;
  }
}
