* {
  box-sizing: border-box;
}

:root {
  --color-red: #dc2626;
  --color-orange: #f97316;
  --color-orange-light: #fed7aa;
  --color-bg: #f9fafb;
  --color-card: #ffffff;
  --color-text: #1f2937;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-dark: #111827;
  --shadow-card: 0 18px 45px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 12px 28px rgba(17, 24, 39, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.24);
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-orange);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

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

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

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff7ed;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
}

.nav-link--sub {
  opacity: 0.88;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-search input,
.mobile-panel input,
.big-search input,
.filter-bar input,
.search-panel input,
.search-panel select {
  border: 0;
  outline: none;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-text);
}

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

.header-search button,
.mobile-panel button,
.big-search button,
.search-panel button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search button:hover,
.mobile-panel button:hover,
.big-search button:hover,
.search-panel button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

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

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

.mobile-panel a,
.mobile-panel input,
.mobile-panel button {
  padding: 12px 14px;
}

.mobile-panel a {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
}

.mobile-panel form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #000000;
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.hero-slide img.hero-image-missing {
  opacity: 0;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.45), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(220, 38, 38, 0.3), transparent 32%),
    #111827;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(249, 115, 22, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
  margin: 18px 0 14px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 76px);
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.hero-tags span,
.tag-row span,
.detail-tags a {
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span,
.detail-tags a {
  padding: 7px 12px;
}

.tag-row span {
  padding: 4px 9px;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.page-hero .btn-ghost,
.detail-info .btn-ghost {
  color: var(--color-text);
  background: #ffffff;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

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

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

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.search-band {
  margin-top: -36px;
  position: relative;
  z-index: 5;
}

.search-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.search-band h2,
.section-heading h2,
.detail-article h2,
.detail-side h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.2;
}

.search-band p,
.section-heading p {
  margin: 0;
  color: var(--color-muted);
}

.big-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.big-search input {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.big-search button {
  min-height: 52px;
  padding: 0 24px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
}

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

.content-section--warm {
  margin-top: 64px;
  padding: 64px 0;
  background: linear-gradient(135deg, #fff7ed, #fef2f2);
}

.content-section--article {
  padding-top: 42px;
}

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

.section-more {
  color: var(--color-orange);
  font-weight: 800;
}

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card-link {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: var(--radius-md);
  background: var(--color-card);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background:
    linear-gradient(135deg, rgba(220, 38, 38, 0.86), rgba(249, 115, 22, 0.86)),
    #111827;
}

.poster-frame::after {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.poster-frame--missing::after {
  display: flex;
}

.poster-img,
.detail-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

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

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

.movie-card h3 {
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 13px;
}

.movie-one-line {
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #4b5563;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-red), var(--color-orange));
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.28);
}

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

.category-feature,
.category-tile,
.detail-article,
.detail-side,
.player-panel,
.search-panel,
.filter-bar {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
}

.category-feature {
  padding: 22px;
}

.category-feature-head h3,
.category-tile h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-feature-head p,
.category-tile p {
  margin: 0 0 16px;
  color: var(--color-muted);
}

.category-mini-grid,
.category-preview-row {
  display: grid;
  gap: 12px;
}

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

.compact-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border-radius: 16px;
  background: #f9fafb;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  background: #fff7ed;
  transform: translateY(-2px);
}

.compact-card .poster-frame {
  width: 54px;
  aspect-ratio: 2 / 3;
  border-radius: 10px;
}

.compact-card .poster-frame::after {
  font-size: 11px;
  padding: 4px;
}

.compact-poster,
.latest-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compact-info {
  min-width: 0;
}

.compact-info strong,
.compact-info em,
.latest-row strong,
.latest-row em,
.latest-row small {
  display: block;
}

.compact-info strong,
.latest-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
}

.compact-info em,
.latest-row em,
.latest-row small {
  color: var(--color-muted);
  font-size: 13px;
  font-style: normal;
}

.compact-rank {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--color-orange);
  font-weight: 800;
}

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

.latest-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.latest-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.latest-row .poster-frame {
  width: 150px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

.latest-row .poster-frame::after {
  font-size: 14px;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 20%, rgba(249, 115, 22, 0.45), transparent 30%),
    linear-gradient(135deg, #991b1b, #f97316);
}

.page-hero--compact,
.page-hero--category {
  padding: 72px 0;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 62px);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.category-tile-link {
  display: block;
  height: 100%;
  padding: 24px;
}

.category-count {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-weight: 800;
}

.category-enter {
  display: inline-flex;
  margin-top: 16px;
  color: var(--color-orange);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 16px;
}

.filter-bar input {
  flex: 1;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.filter-bar span,
.search-summary {
  color: var(--color-muted);
  font-weight: 700;
}

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

.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(2px);
  transform: scale(1.02);
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.6));
}

.detail-hero-inner {
  position: relative;
  padding: 38px 0 56px;
}

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

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

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

.detail-poster {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.detail-poster .poster-frame {
  aspect-ratio: 2 / 3;
}

.detail-poster .poster-frame::after {
  font-size: 24px;
}

.detail-info h1 {
  max-width: 840px;
  font-size: clamp(34px, 5vw, 64px);
}

.detail-meta {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.76);
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.player-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #000000;
}

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

.player-start {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.35));
  cursor: pointer;
}

.player-start.is-hidden {
  display: none;
}

.play-circle {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-red), var(--color-orange));
  font-size: 32px;
  box-shadow: 0 16px 32px rgba(220, 38, 38, 0.32);
}

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

.player-start em {
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.player-status {
  margin: 0;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.74);
  background: #111827;
  font-size: 14px;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.detail-article,
.detail-side {
  padding: 26px;
}

.detail-article p {
  margin: 0 0 22px;
  color: #374151;
  font-size: 17px;
}

.detail-side dl {
  margin: 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px 14px;
}

.detail-side dt {
  color: var(--color-muted);
  font-weight: 800;
}

.detail-side dd {
  margin: 0;
}

.detail-side a {
  color: var(--color-orange);
  font-weight: 800;
}

.search-panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
  padding: 18px;
}

.search-panel label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.search-panel label:first-child {
  grid-column: span 2;
}

.search-panel span {
  color: var(--color-muted);
  font-weight: 800;
  font-size: 13px;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg);
}

.search-panel button {
  align-self: end;
  min-height: 44px;
  padding: 0 18px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
}

.search-summary {
  margin: 0 0 20px;
}

.site-footer {
  margin-top: 72px;
  color: #d1d5db;
  background: #111827;
}

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

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer p,
.site-footer ul {
  margin: 0;
}

.site-footer ul {
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: #fed7aa;
}

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

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

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

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

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

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

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

  .search-panel label:first-child {
    grid-column: span 2;
  }

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

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

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

  .hero {
    height: 540px;
  }

  .hero-content {
    bottom: 64px;
  }

  .hero-control {
    display: none;
  }

  .search-band {
    margin-top: 0;
    padding-top: 18px;
  }

  .search-band-inner,
  .big-search,
  .detail-layout,
  .article-grid,
  .footer-grid,
  .latest-row,
  .filter-bar {
    grid-template-columns: 1fr;
  }

  .search-band-inner {
    padding: 22px;
  }

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

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

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

  .movie-card h3 {
    font-size: 16px;
  }

  .movie-one-line {
    display: none;
  }

  .category-feature-grid,
  .category-tile-grid,
  .category-mini-grid,
  .search-panel {
    grid-template-columns: 1fr;
  }

  .search-panel label:first-child {
    grid-column: span 1;
  }

  .latest-row .poster-frame {
    width: 100%;
  }

  .detail-layout {
    align-items: start;
  }

  .detail-poster {
    width: min(240px, 80vw);
  }

  .detail-side dl {
    grid-template-columns: 70px minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 34px;
  }

  .movie-grid,
  .movie-grid--six,
  .movie-grid--rank {
    grid-template-columns: 1fr;
  }
}
