:root {
  --teal: #0d9488;
  --cyan: #0891b2;
  --blue: #2563eb;
  --orange: #f97316;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  border-radius: 11px;
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.28);
}

.brand-text {
  font-size: 1.25rem;
  background: linear-gradient(90deg, var(--teal), var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  color: var(--slate-700);
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--teal);
}

.header-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.header-search input,
.mobile-search input {
  width: 260px;
  border: 0;
  outline: 0;
  padding: 10px 14px;
  color: var(--slate-800);
  background: transparent;
}

.header-search button,
.mobile-search button {
  border: 0;
  padding: 10px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: #ffffff;
  padding: 9px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--slate-800);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: var(--soft-shadow);
}

.mobile-panel.open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  overflow: hidden;
}

.mobile-search input {
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(120deg, #0f766e 0%, #0891b2 45%, #2563eb 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(2, 6, 23, 0.2), transparent 45%);
  background-size: 58px 58px, 76px 76px, 100% 100%;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.35));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  align-items: center;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 48px;
  padding: 72px 0 92px;
}

.hero-slide.active {
  display: grid;
  animation: fadeUp 0.55s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: #ccfbf1;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 6px 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.hero-copy h1 {
  max-width: 860px;
  margin: 22px 0 12px;
  font-size: clamp(2.5rem, 5.8vw, 4.85rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.16;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 24px;
  color: #e0f2fe;
  font-size: 1.12rem;
}

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

.hero-tags span,
.tag-row span,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.82rem;
  color: #0f766e;
  background: #ccfbf1;
}

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

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

.primary-button {
  color: var(--teal);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.16);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 26px 80px rgba(2, 6, 23, 0.36);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.poster-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.45), transparent 55%);
}

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.36);
}

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

.section-wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.section-wrap.no-pad {
  padding: 0;
}

.section-band {
  padding: 70px 0;
  background: linear-gradient(135deg, #f1f5f9, #f8fafc);
}

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

.section-heading.compact {
  align-items: center;
}

.section-heading span {
  display: block;
  color: var(--teal);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  margin: 5px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.section-heading a,
.text-button {
  color: var(--teal);
}

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

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card.large .card-cover {
  aspect-ratio: 16 / 9;
  border-radius: 26px;
}

.movie-card.minimal .card-body p,
.movie-card.minimal .tag-row {
  display: none;
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 20px;
  background: #e2e8f0;
  box-shadow: var(--soft-shadow);
}

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

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

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.62) 100%);
}

.cover-label,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.78rem;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
}

.cover-label {
  right: 12px;
  bottom: 12px;
}

.rank-badge {
  left: 12px;
  top: 12px;
  background: linear-gradient(135deg, var(--orange), #ef4444);
}

.card-body {
  padding: 14px 2px 0;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--slate-500);
  font-size: 0.82rem;
}

.card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--slate-300, #cbd5e1);
}

.movie-card h3 {
  margin: 7px 0 6px;
  color: var(--slate-900);
  font-size: 1.03rem;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.ranking-info h3 a:hover,
.category-card h2 a:hover {
  color: var(--teal);
}

.movie-card p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 10px;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row span {
  color: #0f766e;
  background: #ecfeff;
  border: 1px solid #cffafe;
}

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

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

.category-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.category-visual {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #e2e8f0;
}

.category-visual img {
  width: 100%;
  height: 100%;
  min-height: 156px;
  object-fit: cover;
}

.category-visual span {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(37, 99, 235, 0.35));
}

.category-card h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.category-card p {
  margin: 0 0 14px;
  color: var(--slate-600);
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.category-samples a {
  max-width: 132px;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 0.85rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.ranking-panel,
.side-card {
  position: sticky;
  top: 92px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.panel-title span {
  font-weight: 850;
  font-size: 1.2rem;
}

.panel-title a {
  color: var(--teal);
  font-weight: 750;
}

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

.ranking-list.small .ranking-row {
  grid-template-columns: 34px 76px 1fr;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.ranking-row {
  display: grid;
  grid-template-columns: 52px 140px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.ranking-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), #ef4444);
  border-radius: 12px;
  font-weight: 850;
}

.ranking-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: #e2e8f0;
}

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

.ranking-info h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.ranking-info p {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--slate-600);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-section {
  padding: 70px 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.section-heading.light span,
.section-heading.light h2 {
  color: #ffffff;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud a {
  padding: 10px 16px;
  color: #ccfbf1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.tag-cloud a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: #ffffff;
  background: linear-gradient(120deg, var(--teal), var(--cyan), var(--blue));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.24), transparent 28%),
    radial-gradient(circle at 84% 15%, rgba(255, 255, 255, 0.16), transparent 24%);
}

.page-hero > div {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 900px;
  margin: 18px 0 12px;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #e0f2fe;
  font-size: 1.1rem;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(140px, 0.6fr));
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--slate-600);
  font-weight: 700;
  font-size: 0.86rem;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  outline: 0;
  padding: 0 12px;
  color: var(--slate-800);
  background: #ffffff;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.empty-state {
  display: none;
  margin-top: 26px;
  padding: 30px;
  text-align: center;
  color: var(--slate-500);
  background: #ffffff;
  border: 1px dashed var(--slate-200);
  border-radius: 22px;
}

.empty-state.show {
  display: block;
}

.detail-top {
  background: linear-gradient(180deg, #f1f5f9, #ffffff);
}

.detail-wrap {
  padding-top: 30px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--slate-600);
  font-size: 0.95rem;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.24);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  gap: 12px;
  place-content: center;
  color: #ffffff;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.32), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease;
}

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

.play-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: 0 auto;
  padding-left: 5px;
  color: var(--teal);
  background: #ffffff;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.play-text {
  font-size: 1.05rem;
  font-weight: 850;
}

.detail-content {
  margin-top: 28px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
}

.detail-content h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.detail-content .lead {
  margin: 0 0 18px;
  color: var(--slate-600);
  font-size: 1.08rem;
}

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

.detail-meta span {
  padding: 7px 12px;
  color: var(--slate-700);
  background: var(--slate-100);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

.detail-content h2 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.detail-content p {
  color: var(--slate-700);
}

.detail-side {
  display: grid;
  gap: 18px;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.side-card {
  position: static;
}

.side-card h2 {
  margin: 0 0 16px;
}

.side-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.side-card div {
  display: grid;
}

.side-card dt {
  color: var(--slate-500);
  font-size: 0.86rem;
}

.side-card dd {
  margin: 0;
  color: var(--slate-900);
  font-weight: 750;
}

.site-footer {
  color: #cbd5e1;
  background: var(--slate-950);
}

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

.footer-logo .brand-text {
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #94a3b8;
}

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

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

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

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

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

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

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

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

  .ranking-panel {
    position: static;
  }
}

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

  .brand-text {
    font-size: 1.05rem;
  }

  .hero-section,
  .hero-inner {
    min-height: auto;
  }

  .hero-slide {
    gap: 26px;
    padding: 48px 0 88px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-controls {
    bottom: 22px;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-flex;
    margin-top: 10px;
  }

  .movie-grid,
  .catalogue-grid,
  .featured-grid,
  .related-grid,
  .category-grid,
  .all-categories,
  .footer-inner,
  .filter-panel {
    grid-template-columns: 1fr;
  }

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

  .ranking-row,
  .ranking-list.small .ranking-row {
    grid-template-columns: 42px 96px 1fr;
    gap: 10px;
  }

  .ranking-info p {
    display: none;
  }

  .detail-content {
    padding: 22px;
  }
}
