:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #f59e0b;
  --amber-500: #d97706;
  --amber-600: #b45309;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --white: #ffffff;
  --shadow-soft: 0 20px 50px rgba(41, 37, 36, 0.14);
  --shadow-card: 0 12px 34px rgba(41, 37, 36, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--stone-800);
  background: linear-gradient(135deg, #fff7ed 0%, #fafaf9 45%, #f5f5f4 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(250, 250, 249, 0.96), rgba(255, 251, 235, 0.96));
  box-shadow: 0 10px 30px rgba(41, 37, 36, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell,
.section-shell,
.footer-shell,
.detail-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-600), var(--stone-800));
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 20px;
  color: var(--stone-800);
}

.brand-text small {
  margin-top: 4px;
  font-size: 12px;
  color: var(--stone-600);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--stone-700);
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--amber-600);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--stone-700);
  background: var(--amber-100);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  background: var(--white);
  border-top: 1px solid var(--stone-200);
  box-shadow: 0 16px 28px rgba(41, 37, 36, 0.1);
}

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--stone-700);
  font-weight: 700;
}

.mobile-nav a:hover {
  color: var(--amber-600);
  background: var(--amber-50);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--stone-900);
}

.hero-track {
  position: relative;
  min-height: 640px;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(28, 25, 23, 0.92) 0%, rgba(41, 37, 36, 0.78) 48%, rgba(28, 25, 23, 0.26) 100%),
    linear-gradient(0deg, rgba(28, 25, 23, 0.74), transparent 46%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1180px;
  color: var(--white);
  padding: 84px 0 96px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #92400e;
  background: rgba(254, 243, 199, 0.86);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  margin: 18px 0 0;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  max-width: 880px;
}

.hero-content h2 {
  margin: 18px 0 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  color: var(--amber-100);
}

.hero-content p {
  margin: 22px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.8;
}

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

.hero-tags {
  margin-top: 24px;
}

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

.hero-tags span {
  padding: 8px 12px;
  color: var(--amber-50);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

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

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

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--stone-700));
  box-shadow: 0 16px 28px rgba(180, 83, 9, 0.28);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 34px;
  background: var(--amber-400);
}

.search-band {
  margin-top: -58px;
  position: relative;
  z-index: 4;
}

.search-panel,
.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(214, 211, 209, 0.72);
  border-radius: var(--radius-xl);
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.search-panel h2,
.section-heading h2,
.page-hero h1,
.detail-copy h1,
.detail-section h2,
.side-card h2 {
  margin: 12px 0 0;
  color: var(--stone-800);
  letter-spacing: -0.03em;
}

.search-panel h2,
.section-heading h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.search-panel p,
.page-hero p,
.category-tile p,
.movie-line,
.detail-section p,
.footer-brand p {
  color: var(--stone-600);
  line-height: 1.75;
}

.search-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-form input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--stone-200);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--stone-800);
  background: var(--white);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.section-block {
  padding: 72px 0 0;
}

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

.section-more {
  color: var(--amber-600);
  font-weight: 900;
}

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

.category-tile {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(214, 211, 209, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(41, 37, 36, 0.18);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber-500), var(--stone-700));
}

.category-tile h3 {
  margin: 18px 0 10px;
  font-size: 21px;
  color: var(--stone-800);
}

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

.category-samples a {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--amber-600);
  background: var(--amber-50);
  font-size: 12px;
  font-weight: 800;
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(214, 211, 209, 0.68);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--stone-200), var(--amber-100));
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 25, 23, 0.62), transparent 45%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(217, 119, 6, 0.92);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-500);
  font-size: 12px;
  font-weight: 900;
}

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

.movie-badges span {
  padding: 5px 9px;
  color: var(--amber-600);
  background: var(--amber-50);
}

.movie-card h3 {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.35;
  color: var(--stone-800);
}

.movie-card h3 a:hover,
.rank-copy h3 a:hover {
  color: var(--amber-600);
}

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

.movie-line {
  margin: 10px 0 0;
  display: -webkit-box;
  min-height: 50px;
  overflow: hidden;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-list {
  margin-top: 14px;
}

.tag-list span {
  padding: 5px 8px;
  color: var(--stone-600);
  background: var(--stone-100);
}

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

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

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

.movie-card.compact .movie-line {
  font-size: 13px;
}

.rank-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: start;
}

.rank-panel,
.latest-panel,
.side-card,
.detail-article {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 211, 209, 0.72);
  box-shadow: var(--shadow-soft);
}

.rank-panel,
.latest-panel {
  padding: 26px;
}

.compact-heading {
  margin-bottom: 20px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: auto 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  transition: transform 0.2s ease, border 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  border-color: var(--amber-400);
}

.rank-number {
  color: var(--amber-600);
  font-size: 20px;
  font-weight: 900;
}

.rank-cover {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: var(--stone-200);
}

.rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-copy h3 {
  margin: 0;
  color: var(--stone-800);
  font-size: 16px;
}

.rank-copy p,
.rank-copy span {
  display: block;
  margin: 6px 0 0;
  color: var(--stone-500);
  font-size: 13px;
  line-height: 1.55;
}

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

.page-hero {
  padding: 84px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 158, 11, 0.36), transparent 28%),
    linear-gradient(135deg, var(--stone-900), var(--stone-800) 46%, #78350f 100%);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
}

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

.slim-hero {
  padding: 72px 0;
}

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

.category-hero .breadcrumb,
.detail-hero .breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

.hero-search {
  margin-top: 28px;
  max-width: 620px;
}

.filter-panel {
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-top: 32px;
}

.no-results {
  margin: 34px 0;
  padding: 22px;
  border-radius: 16px;
  color: var(--stone-600);
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.featured-rank-grid {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.big-rank-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-main {
  background: linear-gradient(180deg, var(--stone-900) 0, #fff7ed 520px, #fafaf9 100%);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 46px 0 64px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  filter: blur(22px);
  transform: scale(1.08);
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 25, 23, 0.94), rgba(28, 25, 23, 0.68));
}

.detail-shell {
  position: relative;
  z-index: 2;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
  aspect-ratio: 2 / 3;
  background: var(--stone-800);
}

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

.detail-copy h1 {
  color: var(--white);
  font-size: clamp(36px, 6vw, 68px);
}

.detail-one-line {
  max-width: 800px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.8;
}

.detail-meta {
  margin-top: 22px;
}

.detail-meta span {
  padding: 8px 12px;
  color: var(--amber-50);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.large-tags span {
  padding: 8px 11px;
}

.detail-copy .btn {
  margin-top: 28px;
}

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

.player-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  aspect-ratio: 16 / 9;
}

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

.player-start {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background:
    radial-gradient(circle, rgba(217, 119, 6, 0.28), transparent 36%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.2));
  cursor: pointer;
}

.play-circle {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  background: linear-gradient(135deg, var(--amber-500), var(--stone-700));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  font-size: 30px;
}

.player-start span:last-child {
  font-size: 18px;
  font-weight: 900;
}

.player-panel.is-playing .player-start {
  display: none;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  padding-top: 36px;
}

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

.detail-section + .detail-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--stone-200);
}

.detail-section h2,
.side-card h2 {
  font-size: 24px;
}

.detail-section p {
  margin: 18px 0 0;
  font-size: 17px;
}

.detail-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

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

.side-card dt {
  color: var(--stone-500);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  color: var(--stone-800);
}

.side-link {
  display: block;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--amber-600);
  background: var(--amber-50);
  font-weight: 900;
}

.site-footer {
  margin-top: 88px;
  color: var(--stone-200);
  background: linear-gradient(135deg, var(--stone-900), var(--stone-800) 58%, #78350f);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
  padding: 48px 0 34px;
}

.brand-in-footer .brand-text strong {
  color: var(--white);
}

.brand-in-footer .brand-text small {
  color: var(--stone-300);
}

.footer-brand p {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--stone-300);
}

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

.footer-links strong {
  margin-bottom: 6px;
  color: var(--white);
}

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

.footer-links a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(214, 211, 209, 0.18);
  color: var(--stone-300);
  font-size: 14px;
}

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

  .rank-split,
  .detail-content-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav.open {
    display: block;
  }

  .hero,
  .hero-track,
  .hero-content {
    min-height: 600px;
  }

  .hero-content p,
  .detail-one-line {
    font-size: 17px;
  }

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

  .search-form {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .detail-poster {
    width: min(260px, 72vw);
  }
}

@media (max-width: 560px) {
  .brand-text strong {
    font-size: 17px;
  }

  .brand-text small {
    display: none;
  }

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

  .hero-content {
    padding-top: 62px;
  }

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

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

  .rank-item {
    grid-template-columns: auto 62px minmax(0, 1fr);
  }

  .page-hero {
    padding: 58px 0;
  }

  .detail-hero {
    padding-top: 32px;
  }

  .detail-poster {
    display: none;
  }

  .player-panel {
    border-radius: 16px;
  }
}
