:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --rose-50: #fff1f2;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-md: 0 12px 30px rgba(219, 39, 119, 0.12);
  --shadow-lg: 0 24px 60px rgba(219, 39, 119, 0.18);
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(180deg, #fff7fb 0%, #ffffff 36%, #fff7fb 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--pink-100);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.10);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(3deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 24px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy em {
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link {
  position: relative;
  color: var(--gray-700);
  font-weight: 700;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  border-radius: 99px;
  transition: right 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink-600);
}

.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 260px;
  margin-left: 6px;
}

.header-search input,
.mobile-search input {
  width: 100%;
  border: 2px solid var(--pink-200);
  border-radius: 999px;
  padding: 10px 76px 10px 18px;
  background: var(--white);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.header-search button,
.mobile-search button {
  position: absolute;
  right: 5px;
  border: 0;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--gray-700);
  background: var(--pink-50);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid var(--pink-100);
}

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

.mobile-link {
  padding: 10px 4px;
  color: var(--gray-700);
  font-weight: 700;
}

.mobile-link.active {
  color: var(--pink-600);
}

.mobile-search {
  position: relative;
}

.hero-slider {
  position: relative;
  height: min(620px, calc(100vh - 76px));
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-100), var(--rose-50));
}

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

.hero-slide {
  opacity: 0;
  transition: opacity 0.9s ease;
}

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

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(236, 72, 153, 0.35), transparent 34%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.58), rgba(17, 24, 39, 0.18)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.72), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max-width);
  color: var(--white);
}

.hero-tags,
.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-tags span,
.meta-chips span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 700;
}

.hero-tags span:first-child {
  background: var(--pink-500);
}

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--pink-100);
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-actions.centered {
  justify-content: center;
}

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

.primary-btn {
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  box-shadow: 0 15px 30px rgba(236, 72, 153, 0.28);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.primary-btn.full {
  width: 100%;
}

.primary-btn.light {
  color: var(--pink-600);
  background: var(--white);
}

.ghost-btn {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.ghost-btn.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.76);
}

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

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

.hero-dot.active {
  width: 34px;
  background: var(--white);
}

.page-shell,
.section {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.section.soft-panel {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--max-width)) / 2));
  padding-right: max(16px, calc((100% - var(--max-width)) / 2));
  background: linear-gradient(90deg, var(--pink-50), var(--rose-50));
}

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

.section-head.center {
  justify-content: center;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 6px;
  color: var(--gray-800);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
}

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

.section-more {
  color: var(--pink-600);
  background: var(--white);
  border: 1px solid var(--pink-200);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.12);
  white-space: nowrap;
}

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

.feature-card,
.movie-card,
.overview-card,
.content-card,
.detail-main-card,
.detail-side-card,
.filter-panel,
.ranking-row {
  background: var(--white);
  border: 1px solid var(--pink-100);
  box-shadow: var(--shadow-md);
}

.feature-card {
  padding: 26px;
  border-radius: var(--radius-xl);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.movie-card:hover,
.overview-card:hover,
.category-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
  border-radius: 16px;
  font-weight: 900;
}

.feature-card h2,
.feature-card h3 {
  margin: 0 0 8px;
  color: var(--gray-800);
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--gray-600);
}

.movie-grid {
  display: grid;
  gap: 18px;
}

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.72), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.poster-shade span {
  font-size: 12px;
  font-weight: 700;
}

.hot-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 10px;
  padding: 4px 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
  font-size: 12px;
  font-weight: 900;
}

.movie-info {
  display: grid;
  gap: 7px;
  padding: 14px;
}

.movie-category {
  width: fit-content;
  border-radius: 999px;
  padding: 3px 9px;
  color: var(--pink-600);
  background: var(--pink-50);
  font-size: 12px;
  font-weight: 800;
}

.movie-info strong {
  overflow: hidden;
  color: var(--gray-800);
  font-size: 15px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.movie-card:hover .movie-info strong {
  color: var(--pink-600);
}

.movie-info em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.category-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 72, 153, 0.88), rgba(244, 63, 94, 0.82)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 30%);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.cta-section {
  padding: 74px 16px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
}

.cta-section h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--pink-50);
}

.page-shell {
  padding: 38px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--gray-500);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--pink-600);
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  padding: 56px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(236, 72, 153, 0.95), rgba(244, 63, 94, 0.88)),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.32), transparent 28%);
  box-shadow: var(--shadow-lg);
}

.page-hero.small-hero {
  margin-bottom: 34px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
}

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

.eyebrow {
  margin: 0 0 10px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.overview-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.overview-card a {
  display: block;
}

.overview-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 150px;
  background: var(--pink-50);
}

.overview-thumbs img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.overview-copy {
  padding: 22px;
}

.overview-copy h2 {
  margin: 0 0 8px;
  color: var(--gray-800);
}

.overview-copy p {
  margin: 0 0 14px;
  color: var(--gray-600);
}

.overview-copy span {
  color: var(--pink-600);
  font-weight: 900;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  border: 1px solid var(--pink-200);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--gray-700);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.09);
  font-weight: 800;
}

.pill:hover,
.pill.active {
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
}

.filter-panel {
  padding: 22px;
  border-radius: var(--radius-xl);
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  color: var(--gray-700);
  font-weight: 900;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  border: 2px solid var(--pink-100);
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--white);
  outline: none;
}

.empty-result {
  padding: 46px;
  border-radius: var(--radius-xl);
  color: var(--gray-500);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}

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

.ranking-row {
  border-radius: 18px;
  overflow: hidden;
}

.ranking-row a,
.rank-card-link {
  display: grid;
  grid-template-columns: 54px 76px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
}

.rank-number {
  color: var(--pink-600);
  font-size: 24px;
  font-weight: 950;
  text-align: center;
}

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

.ranking-copy {
  display: grid;
  gap: 5px;
}

.ranking-copy strong {
  color: var(--gray-800);
  font-size: 18px;
}

.ranking-copy em,
.ranking-copy small {
  color: var(--gray-500);
  font-style: normal;
}

.ranking-copy small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-score {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-500), var(--rose-500));
  font-weight: 950;
}

.rank-score.large {
  min-width: 58px;
  height: 42px;
  font-size: 18px;
}

.player-section {
  margin-bottom: 34px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: #000000;
  box-shadow: var(--shadow-lg);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.12));
  cursor: pointer;
}

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

.play-round {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
  border-radius: 999px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.32);
  font-size: 34px;
}

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

.detail-main-card,
.detail-side-card,
.content-card {
  border-radius: var(--radius-xl);
}

.detail-main-card {
  display: grid;
  gap: 20px;
  padding: 28px;
}

.detail-main-card .meta-chips span {
  color: var(--pink-600);
  background: var(--pink-50);
  backdrop-filter: none;
}

.detail-main-card h1 {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

.lead-text {
  margin: 0;
  color: var(--gray-600);
  font-size: 19px;
}

.content-card {
  padding: 22px;
}

.content-card h2 {
  margin: 0 0 14px;
  color: var(--gray-800);
}

.content-card p {
  margin: 0;
  color: var(--gray-600);
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

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

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

.info-list a {
  color: var(--pink-600);
  font-weight: 800;
}

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

.tag-list span {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--pink-600);
  background: var(--pink-50);
  font-weight: 800;
  font-size: 13px;
}

.detail-side-card {
  position: sticky;
  top: 104px;
  padding: 18px;
}

.detail-side-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  margin-bottom: 16px;
  border-radius: 16px;
  object-fit: cover;
}

.side-meta {
  display: grid;
  place-items: center;
  gap: 2px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
  background: var(--pink-50);
}

.side-meta strong {
  color: var(--pink-600);
  font-size: 34px;
  line-height: 1;
}

.side-meta span {
  color: var(--gray-500);
  font-weight: 800;
}

.site-footer {
  background: linear-gradient(135deg, var(--pink-50), var(--rose-50));
  border-top: 1px solid var(--pink-100);
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-block h2 {
  margin: 0 0 14px;
  color: var(--gray-800);
  font-size: 18px;
}

.footer-block p,
.footer-block li {
  color: var(--gray-600);
  font-size: 14px;
}

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

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

.footer-block a:hover {
  color: var(--pink-600);
}

.footer-brand p {
  max-width: 360px;
}

.footer-bottom {
  padding: 18px;
  border-top: 1px solid var(--pink-100);
  color: var(--gray-500);
  text-align: center;
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

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

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

  .header-search {
    margin-left: auto;
  }

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

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

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

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

@media (max-width: 820px) {
  .header-inner {
    height: 66px;
  }

  .header-search {
    display: none;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy em {
    display: none;
  }

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

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 92px;
  }

  .section {
    padding: 46px 0;
  }

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

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

  .feature-grid,
  .category-grid,
  .overview-grid,
  .filter-grid,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-side-card {
    position: static;
  }

  .page-hero {
    padding: 34px 24px;
  }

  .ranking-row a {
    grid-template-columns: 42px 64px 1fr;
  }

  .ranking-row img {
    width: 64px;
    height: 88px;
  }

  .rank-score.large {
    grid-column: 2 / 4;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .page-shell,
  .section,
  .footer-inner {
    width: min(100% - 22px, var(--max-width));
  }

  .section.soft-panel {
    padding-left: 11px;
    padding-right: 11px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .movie-info {
    padding: 11px;
  }

  .detail-main-card {
    padding: 20px;
  }
}
