:root {
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --emerald-100: #d1fae5;
  --yellow-400: #facc15;
  --amber-500: #f59e0b;
  --rose-600: #e11d48;
  --blue-600: #2563eb;
  --cyan-600: #0891b2;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

* {
  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(--gray-900);
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 42%, #fffbeb 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-700), #059669, #0f766e);
  box-shadow: 0 12px 30px rgba(6, 95, 70, 0.28);
}

.nav-inner {
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-icon {
  font-size: 30px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.95;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--yellow-400);
  transform: translateY(-1px);
}

.nav-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.nav-pill:hover {
  background: rgba(255, 255, 255, 0.28);
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 8px 12px;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, #047857, #10b981, #0f766e);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 42px;
  padding: 84px max(32px, calc((100vw - 1180px) / 2)) 90px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.05);
  transform: scale(1.08);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(250, 204, 21, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(3, 7, 18, 0.82), rgba(6, 78, 59, 0.72), rgba(3, 7, 18, 0.38));
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
}

.hero-kicker,
.section-label,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: #064e3b;
  background: rgba(250, 204, 21, 0.95);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.22);
}

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

.hero p {
  max-width: 700px;
  margin: 0 0 24px;
  color: #d1fae5;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.65;
}

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

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  color: #065f46;
  background: #d1fae5;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

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

.primary-btn,
.ghost-btn,
.section-link,
.rank-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  padding: 14px 28px;
  color: #111827;
  background: var(--yellow-400);
  box-shadow: 0 15px 30px rgba(250, 204, 21, 0.25);
}

.primary-btn:hover,
.rank-play:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 35px rgba(250, 204, 21, 0.32);
}

.ghost-btn {
  padding: 14px 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.hero-poster {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dot.is-active {
  background: var(--yellow-400);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 44px 0 10px;
}

.feature-card {
  min-height: 148px;
  padding: 24px;
  color: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.feature-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 36px;
}

.feature-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
}

.feature-card em {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.feature-card.pink {
  background: linear-gradient(135deg, #ec4899, #e11d48);
}

.feature-card.blue {
  background: linear-gradient(135deg, #3b82f6, #0891b2);
}

.feature-card.amber {
  background: linear-gradient(135deg, #f97316, #d97706);
}

.feature-card.green {
  background: linear-gradient(135deg, #10b981, #047857);
}

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

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

.section-label {
  margin-bottom: 14px;
  font-size: 13px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.section-head p {
  margin: 0;
  max-width: 680px;
  color: var(--gray-600);
  font-size: 17px;
}

.section-link {
  flex: 0 0 auto;
  padding: 11px 18px;
  color: var(--green-700);
  background: #d1fae5;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(5, 150, 105, 0.08);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
}

.movie-card.is-hidden,
.rank-item.is-hidden,
.compact-card.is-hidden {
  display: none;
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #065f46, #111827);
}

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

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.card-badge,
.poster-views {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.card-badge {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: var(--rose-600);
}

.poster-views {
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
}

.movie-info {
  padding: 18px;
}

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 800;
}

.movie-info h3 {
  margin: 0 0 8px;
  min-height: 52px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.4;
}

.movie-info h3 a:hover {
  color: var(--green-700);
}

.movie-info p {
  display: -webkit-box;
  min-height: 66px;
  margin: 0 0 14px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.55;
}

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

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

.category-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), #0f766e);
  box-shadow: 0 18px 40px rgba(6, 95, 70, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.25);
}

.category-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 28px 58px rgba(6, 95, 70, 0.28);
}

.category-icon {
  display: block;
  margin-bottom: 12px;
  font-size: 38px;
}

.category-card strong {
  display: block;
  font-size: 22px;
}

.category-card em {
  display: block;
  margin-top: 8px;
  color: #d1fae5;
  font-style: normal;
  font-weight: 700;
}

.category-samples {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.category-samples a {
  max-width: 100%;
  overflow: hidden;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(5, 150, 105, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 13px 16px;
  outline: none;
  background: var(--white);
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.search-wide {
  grid-template-columns: minmax(0, 1fr) 260px;
}

.page-hero {
  padding: 88px 0 74px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 24%, rgba(250, 204, 21, 0.24), transparent 28%),
    linear-gradient(135deg, #064e3b, #059669, #0f766e);
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #064e3b;
  background: var(--yellow-400);
  font-weight: 900;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #d1fae5;
  font-size: 20px;
  line-height: 1.7;
}

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

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--detail-image);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.08);
  transform: scale(1.08);
}

.detail-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(250, 204, 21, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(3, 7, 18, 0.86), rgba(6, 78, 59, 0.7), rgba(3, 7, 18, 0.45));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 34px 0 68px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: #d1fae5;
  font-size: 14px;
}

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

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

.detail-poster {
  width: 310px;
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.42);
}

.detail-copy h1 {
  margin: 20px 0 14px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.04;
}

.detail-one-line {
  max-width: 800px;
  margin: 0 0 20px;
  color: #d1fae5;
  font-size: 21px;
  line-height: 1.7;
}

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

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

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

.player-section {
  margin-top: 52px;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.26);
  aspect-ratio: 16 / 9;
}

.player-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.18), rgba(3, 7, 18, 0.7));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.big-play {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  color: #111827;
  background: var(--yellow-400);
  box-shadow: 0 18px 36px rgba(250, 204, 21, 0.32);
  font-size: 34px;
}

.player-cover strong {
  font-size: 22px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  padding: 48px 0 10px;
}

.detail-article,
.side-panel {
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.detail-article {
  padding: 34px;
}

.detail-article h2 {
  margin: 0 0 14px;
  color: var(--green-800);
  font-size: 28px;
}

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

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

.info-list div {
  padding: 14px;
  border-radius: 16px;
  background: #ecfdf5;
}

.info-list dt {
  color: var(--green-700);
  font-weight: 900;
}

.info-list dd {
  margin: 4px 0 0;
  color: var(--gray-700);
}

.side-panel {
  align-self: start;
  padding: 22px;
  position: sticky;
  top: 86px;
}

.side-panel h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

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

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

.compact-card:hover {
  background: #ecfdf5;
  transform: translateX(3px);
}

.compact-card img {
  width: 62px;
  height: 82px;
  border-radius: 12px;
  object-fit: cover;
}

.compact-card strong,
.compact-card small {
  display: block;
}

.compact-card strong {
  overflow: hidden;
  color: var(--gray-900);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-card small {
  margin-top: 4px;
  color: var(--gray-500);
}

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

.rank-item {
  display: grid;
  grid-template-columns: 92px 70px minmax(0, 1fr) 96px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(5, 150, 105, 0.1);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.rank-cover img {
  width: 92px;
  height: 122px;
  border-radius: 18px;
  object-fit: cover;
}

.rank-number {
  font-size: 34px;
  font-weight: 950;
  color: var(--green-700);
  text-align: center;
}

.rank-main h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.rank-main h3 a:hover {
  color: var(--green-700);
}

.rank-main p {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--gray-600);
  line-height: 1.6;
}

.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rank-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--green-800);
  background: #d1fae5;
  font-size: 12px;
  font-weight: 800;
}

.rank-play {
  padding: 11px 16px;
  color: #111827;
  background: var(--yellow-400);
}

.site-footer {
  margin-top: 46px;
  color: var(--white);
  background: linear-gradient(135deg, #030712, #1f2937, #111827);
}

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

.footer-inner h3,
.footer-inner h4 {
  margin: 0 0 16px;
}

.footer-inner h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
}

.footer-inner p,
.footer-inner a {
  color: #d1d5db;
  line-height: 1.8;
}

.footer-inner a:hover {
  color: var(--yellow-400);
}

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

.footer-inner li {
  margin-bottom: 8px;
}

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

.back-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 40;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #111827;
  background: var(--yellow-400);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.24);
  font-size: 24px;
  font-weight: 900;
}

.back-top.is-visible {
  display: block;
}

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

  .latest-grid,
  .category-grid-large,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-slide {
    grid-template-columns: 1fr 280px;
  }

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

  .detail-poster {
    width: 240px;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 0 4px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
  }

  .hero {
    height: 720px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 42px 22px 82px;
  }

  .hero-poster {
    max-width: 250px;
    margin: 0 auto;
    order: -1;
  }

  .hero-poster img {
    height: 320px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-tags,
  .hero-actions {
    justify-content: center;
  }

  .hero-arrow {
    display: none;
  }

  .feature-strip,
  .movie-grid,
  .home-grid,
  .latest-grid,
  .category-grid,
  .category-grid-large,
  .footer-inner,
  .detail-grid,
  .info-list,
  .rank-item,
  .filter-bar,
  .search-wide {
    grid-template-columns: 1fr;
  }

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

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

  .detail-poster {
    width: min(270px, 100%);
  }

  .detail-article {
    padding: 24px;
  }

  .rank-number {
    text-align: left;
  }
}
