:root {
  --bg: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --indigo: #4338ca;
  --red: #ef4444;
  --orange: #f97316;
  --green: #10b981;
  --purple: #7c3aed;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 44%, #f8fafc 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

.brand-mark,
.footer-logo span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.26);
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #475569;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: #eff6ff;
}

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

.header-search input,
.filter-panel input {
  appearance: none;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  color: #0f172a;
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search input:focus,
.filter-panel input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.header-search button,
.filter-panel button {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.filter-panel button:hover,
.primary-button:hover,
.cta-box a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(37, 99, 235, 0.26);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 20px;
  cursor: pointer;
}

.hero-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(120deg, #2563eb, #1d4ed8 46%, #3730a3);
}

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

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

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.1) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.5), transparent 32%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(30, 64, 175, 0.7) 48%, rgba(67, 56, 202, 0.38));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 120px;
  color: #ffffff;
}

.hero-kicker,
.page-hero span,
.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fde68a;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-content h1 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero-content h2 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}

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

.hero-tags,
.tag-list,
.detail-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-tags span {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

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

.primary-button,
.ghost-button,
.cta-box a,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
  color: var(--blue);
  background: #ffffff;
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

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

.quick-categories {
  margin-top: -48px;
  position: relative;
  z-index: 4;
}

.quick-category-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-category-inner a {
  min-height: 116px;
  padding: 22px;
  color: #ffffff;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.quick-category-inner a:hover {
  transform: translateY(-6px);
  background: rgba(37, 99, 235, 0.92);
}

.quick-category-inner span {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.quick-category-inner strong {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.content-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.soft-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--container)) / 2));
  padding-right: max(16px, calc((100% - var(--container)) / 2));
  background: linear-gradient(90deg, #fff7ed, #fff1f2);
}

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

.section-heading span {
  margin-bottom: 8px;
  color: var(--blue);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
}

.section-heading p {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-more {
  color: var(--blue);
  background: #eff6ff;
  white-space: nowrap;
}

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

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

.movie-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: #bfdbfe;
  box-shadow: var(--shadow);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(96, 165, 250, 0.45), transparent 36%),
    linear-gradient(135deg, #0f172a, #1d4ed8 58%, #4338ca);
}

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

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

.img-soft-hide {
  opacity: 0;
}

.poster-type,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.poster-type {
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
}

.rank-badge {
  top: 12px;
  left: 12px;
  min-width: 36px;
  padding: 8px 10px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

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

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

.movie-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: #cbd5e1;
}

.movie-card h3 {
  min-height: 58px;
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.42;
}

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

.movie-card p {
  margin: 0 0 14px;
  min-height: 50px;
  color: #64748b;
  line-height: 1.7;
}

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

.movie-card.compact p {
  min-height: 46px;
  font-size: 14px;
}

.tag-list span {
  color: #2563eb;
  background: #eff6ff;
}

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

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

.category-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 28px;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card::after,
.page-hero::after,
.cta-box::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -72px;
  top: -64px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.18);
}

.category-card span,
.category-card strong {
  position: relative;
  z-index: 2;
  display: inline-flex;
  font-weight: 900;
}

.category-card h2,
.category-card h3,
.category-card p {
  position: relative;
  z-index: 2;
}

.category-card h2,
.category-card h3 {
  margin: 14px 0 12px;
  font-size: 28px;
}

.category-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.tone-blue { background: linear-gradient(135deg, #2563eb, #0ea5e9); }
.tone-red { background: linear-gradient(135deg, #ef4444, #ec4899); }
.tone-cyan { background: linear-gradient(135deg, #0891b2, #2563eb); }
.tone-green { background: linear-gradient(135deg, #059669, #10b981); }
.tone-purple { background: linear-gradient(135deg, #7c3aed, #4f46e5); }
.tone-pink { background: linear-gradient(135deg, #db2777, #f43f5e); }
.tone-orange { background: linear-gradient(135deg, #ea580c, #f59e0b); }
.tone-indigo { background: linear-gradient(135deg, #4338ca, #2563eb); }

.ranking-strip {
  padding-top: 78px;
}

.ranking-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-item:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
}

.ranking-item span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.ranking-item strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-item em {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.cta-section {
  padding-top: 40px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 64px 42px;
  color: #ffffff;
  text-align: center;
  border-radius: 34px;
  background: linear-gradient(120deg, #2563eb, #1d4ed8 50%, #4338ca);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 44px);
}

.cta-box p {
  position: relative;
  z-index: 2;
  margin: 0 auto 26px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.cta-box a {
  position: relative;
  z-index: 2;
  color: var(--blue);
  background: #ffffff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px max(16px, calc((100% - var(--container)) / 2));
  color: #ffffff;
  background: linear-gradient(120deg, #2563eb, #1d4ed8 48%, #4338ca);
}

.page-hero.slim-hero {
  padding-top: 96px;
  padding-bottom: 96px;
}

.page-hero.ranking-hero {
  background: linear-gradient(120deg, #ef4444, #f97316 45%, #7c2d12);
}

.page-hero div {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: -0.05em;
}

.page-hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.9;
}

.compact-actions {
  margin-top: 26px;
}

.filter-panel {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.filter-panel input {
  flex: 1;
  min-width: 0;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: 42px;
  align-items: center;
  width: min(var(--container), calc(100% - 32px));
  margin: 42px auto 0;
  padding: 36px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(96, 165, 250, 0.44), transparent 32%),
    linear-gradient(120deg, #0f172a, #1e3a8a 52%, #312e81);
  box-shadow: var(--shadow);
}

.detail-cover {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  background: linear-gradient(135deg, #1e293b, #2563eb);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.34);
}

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

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

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.detail-lead {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.9;
}

.detail-meta-grid span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-tags {
  margin-top: 18px;
}

.detail-tags span {
  color: #bfdbfe;
  background: rgba(255, 255, 255, 0.1);
}

.player-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 20px;
}

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

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

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #020617;
  cursor: pointer;
}

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.3), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-mark {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--blue);
  background: #ffffff;
  font-size: 34px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

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

.detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 34px;
}

.story-card {
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.story-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.story-card p {
  margin: 0;
  color: #475569;
  line-height: 1.95;
}

.info-card {
  grid-column: 1 / -1;
}

.info-card dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
}

.info-card div {
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
}

.info-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.info-card dd {
  margin: 8px 0 0;
  font-weight: 900;
}

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

.site-footer {
  margin-top: 44px;
  color: #94a3b8;
  background: #0f172a;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.footer-brand p {
  max-width: 340px;
  margin: 0;
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 16px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 18px 16px;
  text-align: center;
  font-size: 14px;
}

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

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

  .category-grid.large,
  .related-grid,
  .ranking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

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

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }

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

  .nav-link {
    display: block;
  }

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

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

  .hero-content p {
    font-size: 17px;
  }

  .movie-grid,
  .featured-grid,
  .category-grid,
  .category-grid.large,
  .related-grid,
  .ranking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .detail-cover {
    max-width: 360px;
  }

  .detail-body,
  .info-card dl,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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

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

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content h2 {
    font-size: 28px;
  }

  .quick-category-inner,
  .movie-grid,
  .featured-grid,
  .category-grid,
  .category-grid.large,
  .related-grid,
  .ranking-list {
    grid-template-columns: 1fr;
  }

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

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

  .filter-panel {
    flex-direction: column;
  }

  .ranking-item {
    grid-template-columns: 42px 1fr;
  }

  .ranking-item em {
    grid-column: 2;
  }

  .player-shell {
    border-radius: 18px;
  }

  .play-mark {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }
}
