:root {
  --color-rose: #e11d48;
  --color-pink: #ec4899;
  --color-orange: #f97316;
  --color-amber: #f59e0b;
  --color-blue: #2563eb;
  --color-cyan: #06b6d4;
  --color-bg: #fff7f9;
  --color-surface: #ffffff;
  --color-text: #1f2937;
  --color-muted: #6b7280;
  --color-line: #f3d4dc;
  --shadow-soft: 0 18px 45px rgba(225, 29, 72, 0.12);
  --shadow-card: 0 14px 34px rgba(31, 41, 55, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #fff7f9 0%, #fff 40%, #fff7f9 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(100% - 32px, var(--max-width));
  margin: 0 auto;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-rose), var(--color-orange));
  box-shadow: 0 12px 26px rgba(225, 29, 72, 0.28);
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4b5563;
  font-weight: 700;
}

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

.main-nav a:hover {
  color: var(--color-rose);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-rose), var(--color-orange));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: #fff1f4;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-rose);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--color-rose), var(--color-pink), var(--color-orange));
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(0deg, #fff7f9, rgba(255, 247, 249, 0));
  pointer-events: none;
}

.hero-slider {
  position: relative;
  min-height: 600px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 430px);
  align-items: center;
  gap: 42px;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 2;
}

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

.hero-backdrop {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(22px);
  opacity: 0.42;
  transform: scale(1.06);
  z-index: -1;
}

.hero-content {
  color: #fff;
  max-width: 720px;
  padding: 90px 0 130px;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-rose);
  background: #fff1f4;
  border: 1px solid rgba(225, 29, 72, 0.14);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-content .eyebrow,
.page-hero .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 680px;
  margin: 0 0 24px;
  font-size: clamp(18px, 2.1vw, 26px);
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-tags span,
.detail-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-light {
  color: var(--color-rose);
  background: #fff;
  box-shadow: 0 18px 35px rgba(255, 255, 255, 0.24);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.hero-cover {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(88, 28, 135, 0.42);
  transform: rotate(2deg);
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.28));
}

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

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: #fff;
}

.featured-strip {
  position: relative;
  z-index: 8;
  margin-top: -82px;
  margin-bottom: 40px;
}

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

.section-white {
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.section-icon {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-rose), var(--color-orange));
  box-shadow: var(--shadow-soft);
}

.section-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--color-rose);
  font-weight: 800;
}

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

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

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

.featured-grid .movie-card {
  box-shadow: 0 25px 60px rgba(88, 28, 135, 0.22);
}

.movie-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(244, 63, 94, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(225, 29, 72, 0.20);
}

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

.movie-card:not(.movie-card-compact) .movie-poster {
  aspect-ratio: 3 / 4;
}

.poster-img,
.rank-img,
.top-img,
.category-thumb,
.side-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-img {
  transition: transform 0.45s ease;
}

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

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.58));
  opacity: 0.86;
}

.poster-badge,
.poster-duration {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.poster-badge {
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--color-rose), var(--color-orange));
}

.poster-duration {
  right: 12px;
  bottom: 12px;
}

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

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

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

.movie-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 45px;
  margin: 0 0 14px;
  color: var(--color-muted);
  overflow: hidden;
  line-height: 1.6;
}

.movie-meta span {
  color: var(--color-muted);
  background: #fff1f4;
  font-size: 12px;
  padding: 4px 8px;
}

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

.category-card {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-xl);
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-rose), var(--color-orange));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:nth-child(2n) {
  background: linear-gradient(135deg, var(--color-blue), var(--color-cyan));
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, #7c3aed, var(--color-pink));
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 58px rgba(225, 29, 72, 0.24);
}

.category-card-icon {
  display: inline-flex;
  width: max-content;
  min-width: 52px;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 12px;
  font-weight: 900;
}

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

.category-card small {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.ranking-section {
  background: linear-gradient(135deg, #fff1f4, #fffbeb);
}

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

.rank-item,
.top-row {
  display: grid;
  grid-template-columns: 56px 106px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 14px;
  border: 1px solid rgba(244, 63, 94, 0.10);
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.08);
  transition: transform 0.2s ease, border 0.2s ease;
}

.top-row {
  grid-template-columns: 58px 92px minmax(0, 1fr) auto auto;
}

.rank-item:hover,
.top-row:hover {
  transform: translateX(5px);
  border-color: rgba(225, 29, 72, 0.32);
}

.rank-number,
.top-rank {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
}

.rank-thumb,
.top-thumb {
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffe4e6;
}

.top-thumb {
  height: 60px;
}

.rank-main,
.top-info {
  display: grid;
  min-width: 0;
}

.rank-main strong,
.top-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-main em,
.top-info em {
  overflow: hidden;
  color: var(--color-muted);
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-views,
.top-heat {
  color: var(--color-rose);
  font-weight: 900;
}

.top-meta {
  color: var(--color-muted);
  white-space: nowrap;
}

.page-hero {
  color: #fff;
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(135deg, var(--color-rose), var(--color-orange));
}

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

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(244, 63, 94, 0.10);
  box-shadow: var(--shadow-card);
}

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

.category-preview img {
  aspect-ratio: 1;
  border-radius: 12px;
  background: #ffe4e6;
}

.category-overview-card h2 {
  margin: 0 0 8px;
}

.category-overview-card p {
  color: var(--color-muted);
  line-height: 1.6;
}

.category-overview-card span {
  color: var(--color-rose);
  font-weight: 900;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(244, 63, 94, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-weight: 800;
}

.filter-search {
  margin-bottom: 16px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #f6c8d2;
  border-radius: 14px;
  min-height: 46px;
  padding: 0 14px;
  color: var(--color-text);
  background: #fffafb;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--color-rose);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.10);
}

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

.filter-count {
  margin: 16px 0 0;
  color: var(--color-muted);
}

.filter-count strong {
  color: var(--color-rose);
}

.empty-state {
  margin-top: 28px;
  padding: 42px;
  text-align: center;
  color: var(--color-muted);
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px dashed #f6c8d2;
}

.detail-breadcrumb {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, #111827, #374151);
}

.detail-breadcrumb .container {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.detail-breadcrumb a:hover {
  color: #fff;
}

.detail-breadcrumb strong {
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
  gap: 28px;
  padding: 34px 0 24px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: 0 25px 72px rgba(17, 24, 39, 0.26);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 8px;
  color: #fff;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
  font-weight: 900;
  font-size: 18px;
}

.player-card.is-ready .play-overlay,
.player-card.is-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding-left: 5px;
  border-radius: 999px;
  color: var(--color-rose);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 14px;
  margin: 0;
  padding: 6px 12px;
  color: #fff;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(8px);
  font-size: 13px;
}

.detail-panel,
.side-panel {
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(244, 63, 94, 0.10);
  box-shadow: var(--shadow-card);
}

.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.detail-title-row h1 {
  margin: 14px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.rating {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-amber), var(--color-orange));
}

.detail-meta {
  margin: 18px 0;
}

.detail-meta span {
  color: var(--color-muted);
  background: #fff1f4;
}

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

.tag-list span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  color: #4b5563;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  font-weight: 700;
  font-size: 13px;
}

.detail-panel h2,
.side-panel h2 {
  margin: 24px 0 10px;
  font-size: 22px;
}

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

.detail-side {
  min-width: 0;
}

.detail-side .side-panel:first-child {
  margin-top: 0;
}

.side-poster {
  padding: 0;
  overflow: hidden;
}

.side-poster-img {
  aspect-ratio: 3 / 4;
  background: #ffe4e6;
}

.related-links {
  display: grid;
  gap: 10px;
}

.related-links a {
  display: block;
  border-radius: 14px;
  padding: 12px 14px;
  color: #4b5563;
  background: #fff7f9;
  transition: color 0.2s ease, background 0.2s ease;
}

.related-links a:hover {
  color: var(--color-rose);
  background: #fff1f4;
}

.sitemap-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 58px 0;
}

.sitemap-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.sitemap-full {
  grid-column: 1 / -1;
}

.sitemap-panel h2 {
  margin: 0 0 18px;
}

.sitemap-panel ul {
  margin: 0;
  padding-left: 18px;
  line-height: 2;
}

.sitemap-panel a:hover {
  color: var(--color-rose);
}

.sitemap-movie-list {
  columns: 3;
}

.site-footer {
  margin-top: 40px;
  color: #d1d5db;
  background: #111827;
}

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

.footer-logo {
  color: #fff;
}

.footer-brand p {
  max-width: 460px;
  color: #9ca3af;
  line-height: 1.8;
}

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

.footer-links h3 {
  color: #fff;
  margin: 0 0 14px;
}

.footer-links a {
  display: inline-flex;
  margin: 0 12px 10px 0;
  color: #9ca3af;
}

.footer-links a:hover {
  color: #fff;
}

[hidden] {
  display: none !important;
}

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

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

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

  .hero-cover {
    display: none;
  }

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

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

  .sitemap-movie-list {
    columns: 2;
  }
}

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

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

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

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(244, 63, 94, 0.16);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
  }

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

  .main-nav a {
    padding: 12px;
  }

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

  .hero-content {
    padding: 70px 0 120px;
  }

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

  .hero-dots {
    bottom: 58px;
  }

  .featured-strip {
    margin-top: -56px;
  }

  .movie-grid,
  .movie-grid-three,
  .movie-grid-four,
  .category-grid,
  .category-overview-grid,
  .footer-inner,
  .footer-links,
  .sitemap-layout {
    grid-template-columns: 1fr;
  }

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

  .filter-row {
    grid-template-columns: 1fr;
  }

  .rank-item,
  .top-row {
    grid-template-columns: 42px 72px minmax(0, 1fr);
  }

  .rank-views,
  .top-meta,
  .top-heat {
    display: none;
  }

  .sitemap-movie-list {
    columns: 1;
  }
}
