:root {
  --rose: #f43f5e;
  --rose-dark: #be123c;
  --orange: #f97316;
  --amber: #f59e0b;
  --emerald: #10b981;
  --dark: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #fff7ed;
  --bg: #fffaf7;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 34%, #fff7ed 100%);
  color: var(--dark);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-icon,
.footer-brand span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 10px 25px rgba(244, 63, 94, 0.32);
}

.brand-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  font-weight: 700;
  color: #4b5563;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rose);
  transform: translateY(-1px);
}

.nav-link.sub {
  font-size: 14px;
  color: #6b7280;
}

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

.header-search input {
  width: 220px;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  padding: 10px 14px;
  outline: none;
  background: #ffffff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.header-search button,
.primary-button,
.secondary-button,
.panel-link,
.search-panel button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.primary-button,
.search-panel button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  box-shadow: 0 12px 26px rgba(244, 63, 94, 0.26);
}

.secondary-button,
.panel-link {
  color: var(--rose);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.primary-button:hover,
.secondary-button:hover,
.header-search button:hover,
.panel-link:hover,
.search-panel button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(244, 63, 94, 0.32);
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: #fff1f2;
  color: var(--rose);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 20px;
}

.mobile-nav {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 16px;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

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

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff1f2;
  color: #4b5563;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: #111827;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.45), rgba(249, 115, 22, 0.22)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 18%, rgba(244, 63, 94, 0.45), transparent 28%), linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.48));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 130px;
  margin-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  color: #ffffff;
}

.hero-label,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff7ed;
  background: linear-gradient(90deg, rgba(244, 63, 94, 0.86), rgba(249, 115, 22, 0.86));
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-content h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p,
.detail-one-line {
  margin: 22px 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
}

.hero-meta,
.detail-meta,
.movie-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-meta span,
.detail-meta span,
.movie-meta-row span {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 800;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.hero-thumbs {
  position: absolute;
  right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 44px;
  z-index: 5;
  display: grid;
  gap: 12px;
  width: min(420px, calc(100% - 48px));
}

.hero-dot {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 8px;
  color: #ffffff;
  text-align: left;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-dot img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 14px;
}

.hero-dot span {
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-dot.active {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(244, 63, 94, 0.44);
}

.intro-strip {
  width: min(1180px, calc(100% - 48px));
  margin: -46px auto 70px;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.intro-card {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border: 1px solid rgba(244, 63, 94, 0.12);
}

.intro-card span {
  display: block;
  color: var(--rose);
  font-size: 28px;
  font-weight: 950;
}

.intro-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.content-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto 78px;
}

.soft-section {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 241, 242, 0.94), rgba(255, 247, 237, 0.94));
}

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

.section-head h2 {
  margin: 0;
  color: #1f2937;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 28px;
  padding: 22px;
  color: #ffffff;
  background-image: linear-gradient(135deg, rgba(244, 63, 94, 0.88), rgba(249, 115, 22, 0.82)), var(--tile-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.movie-card:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

.category-tile span,
.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
  display: block;
}

.category-tile span {
  font-size: 22px;
  font-weight: 950;
}

.category-tile strong {
  margin: 10px 0;
  font-size: 15px;
}

.category-tile em {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.1);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe4e6, #fed7aa);
}

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

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

.movie-score,
.movie-play {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  font-weight: 900;
}

.movie-score {
  top: 10px;
  right: 10px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.movie-play {
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .movie-play {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

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

.movie-meta-row {
  gap: 6px;
  margin-bottom: 10px;
}

.movie-meta-row span {
  color: var(--rose-dark);
  background: #fff1f2;
  border: 0;
  padding: 4px 8px;
  font-size: 12px;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--rose);
}

.movie-card p {
  min-height: 64px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--rose-dark);
  background: #fff1f2;
  font-size: 12px;
  font-weight: 800;
}

.large-tag {
  padding: 8px 12px;
  font-size: 14px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 28px;
  align-items: start;
}

.ranking-panel {
  position: sticky;
  top: 98px;
  border-radius: 30px;
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(249, 115, 22, 0.12);
}

.ranking-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.ranking-title > span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff7ed;
  font-size: 24px;
}

.ranking-title h2,
.ranking-title p {
  margin: 0;
}

.ranking-title p {
  color: var(--muted);
  font-size: 14px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 36px 78px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #fff7ed;
}

.rank-row:hover {
  background: #ffe4e6;
}

.rank-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 950;
}

.rank-row img {
  width: 78px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-title {
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-views {
  color: var(--muted);
  font-size: 12px;
}

.panel-link {
  display: block;
  margin-top: 18px;
  text-align: center;
}

.page-hero {
  width: min(1280px, calc(100% - 48px));
  margin: 34px auto 60px;
  border-radius: 38px;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 24%), linear-gradient(135deg, #9f1239, #f97316);
  box-shadow: var(--shadow);
}

.small-hero > div {
  padding: 70px 56px;
}

.small-hero h1 {
  max-width: 820px;
}

.small-hero p {
  max-width: 840px;
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 260px;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.1);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-cover-link {
  display: flex;
  align-items: end;
  padding: 22px;
  color: #ffffff;
  background-image: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.78)), var(--tile-image);
  background-position: center;
  background-size: cover;
}

.category-cover-link span {
  font-size: 26px;
  font-weight: 950;
}

.category-overview-body {
  padding: 24px;
}

.category-overview-body h2 {
  margin: 0 0 10px;
}

.category-overview-body p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.category-overview-body strong {
  color: var(--rose);
}

.category-overview-body ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.category-overview-body li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #374151;
}

.category-overview-body li span {
  color: var(--muted);
}

.filter-bar,
.search-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.1);
}

.page-filter,
.search-panel input,
.search-panel select {
  min-width: 220px;
  flex: 1;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  padding: 12px 16px;
  outline: none;
}

.year-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.year-filters button {
  border: 1px solid #fecdd3;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--rose-dark);
  background: #fff1f2;
  font-weight: 800;
}

.year-filters button.active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--rose), var(--orange));
}

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

.ranking-full-row {
  display: grid;
  grid-template-columns: 58px 120px 1fr 110px;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.1);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.ranking-full-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.rank-medal {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  font-size: 18px;
  font-weight: 950;
}

.ranking-full-row img {
  width: 120px;
  height: 78px;
  object-fit: cover;
  border-radius: 16px;
}

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

.ranking-info strong {
  font-size: 20px;
}

.ranking-info em,
.ranking-info small,
.ranking-score {
  color: var(--muted);
  font-style: normal;
}

.ranking-score {
  text-align: right;
  line-height: 1.6;
}

.ranking-score b {
  color: var(--rose);
}

.search-count {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-image: linear-gradient(110deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.72), rgba(249, 115, 22, 0.3)), var(--detail-image);
  background-size: cover;
  background-position: center;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(244, 63, 94, 0.42), transparent 28%);
}

.detail-wrap {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 74px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.detail-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 36px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

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

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

.detail-content {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
  margin-top: 60px;
}

.player-card,
.article-panel {
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(244, 63, 94, 0.1);
  overflow: hidden;
}

.player-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111827;
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.68));
  cursor: pointer;
}

.player-start span {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 18px 38px rgba(244, 63, 94, 0.38);
  font-size: 32px;
}

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

.player-note {
  margin: 0;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 14px;
}

.article-panel {
  padding: 28px;
}

.article-panel h2 {
  margin: 0 0 12px;
  color: #1f2937;
}

.article-panel p {
  margin: 0 0 22px;
  color: #4b5563;
  line-height: 1.9;
}

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

.info-list div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: #111827;
}

.info-list a {
  color: var(--rose);
  font-weight: 900;
}

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

.footer-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.8;
}

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

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #9ca3af;
}

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

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

  .mobile-menu-button {
    display: block;
  }

  .header-search input {
    width: 170px;
  }

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

  .ranking-panel {
    position: static;
  }

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

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

@media (max-width: 820px) {
  .header-inner {
    padding: 14px 16px;
  }

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

  .header-search {
    display: none;
  }

  .hero-carousel {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 92px;
    margin-left: 24px;
  }

  .hero-thumbs {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
  }

  .intro-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .category-cover-link {
    min-height: 220px;
  }

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

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

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

  .ranking-full-row {
    grid-template-columns: 42px 84px 1fr;
  }

  .ranking-full-row img {
    width: 84px;
    height: 60px;
  }

  .ranking-score {
    grid-column: 3;
    text-align: left;
  }

  .small-hero > div {
    padding: 52px 24px;
  }
}

@media (max-width: 520px) {
  .content-section,
  .page-hero,
  .detail-wrap,
  .footer-grid,
  .intro-strip {
    width: calc(100% - 28px);
  }

  .intro-strip,
  .movie-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 34px;
  }

  .hero-meta span,
  .detail-meta span {
    font-size: 12px;
  }

  .soft-section {
    padding: 20px;
  }
}
