:root {
  --pink: #ec4899;
  --pink-dark: #db2777;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --yellow: #f59e0b;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fff7ed;
  --line: #f3f4f6;
  --shadow: 0 18px 45px rgba(31, 41, 55, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow-container {
  width: min(920px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
}

.top-strip {
  padding: 8px 16px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--orange), var(--pink), #ef4444);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.mobile-nav-link {
  padding: 10px 14px;
  color: #4b5563;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--pink-dark);
  background: #fdf2f8;
}

.global-search {
  position: relative;
  margin-left: auto;
  width: min(280px, 26vw);
}

.global-search input,
.mobile-search input,
.filter-bar input {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  outline: none;
  background: #ffffff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(420px, 92vw);
  max-height: 430px;
  overflow: auto;
  display: none;
  padding: 10px;
  border: 1px solid #f3f4f6;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.search-panel.is-open {
  display: grid;
  gap: 8px;
}

.search-result {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.search-result:hover {
  background: #fff7ed;
}

.search-result img {
  width: 48px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  background: #f3f4f6;
}

.search-result strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.search-result small,
.empty-result {
  color: var(--muted);
  font-size: 12px;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  color: var(--pink-dark);
  background: #fdf2f8;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid #f3f4f6;
  background: #ffffff;
}

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

.mobile-search {
  position: relative;
  margin-top: 8px;
}

.hero-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce7f3 0%, #fff7ed 50%, #fef3c7 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #7c2d12;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.16);
  font-size: 14px;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  background: linear-gradient(90deg, var(--pink-dark), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 20px;
}

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

.center-actions {
  justify-content: center;
  margin-top: 34px;
}

.left-align {
  justify-content: flex-start;
}

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  box-shadow: 0 18px 35px rgba(236, 72, 153, 0.25);
}

.secondary-button {
  color: var(--ink);
  border: 2px solid #e5e7eb;
  background: #ffffff;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats span {
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 14px;
}

.hero-stats strong {
  margin-right: 4px;
  color: var(--pink-dark);
  font-size: 20px;
}

.hero-showcase {
  position: relative;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  padding: 16px;
}

.hero-slides {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 24px;
  background: #f3f4f6;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

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

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

.hero-slide-info {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 18px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.82));
  backdrop-filter: blur(8px);
}

.hero-slide-info span,
.hero-slide-info p {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.hero-slide-info strong {
  display: block;
  margin: 5px 0;
  font-size: 22px;
  line-height: 1.2;
}

.hero-slide-info a {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  font-size: 13px;
  font-weight: 800;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #fbcfe8;
}

.hero-dot.is-active {
  width: 26px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(52px);
  opacity: 0.25;
  animation: pulse-glow 5s ease-in-out infinite;
}

.hero-glow-one {
  top: 60px;
  left: 8%;
  width: 150px;
  height: 150px;
  background: var(--pink);
}

.hero-glow-two {
  right: 10%;
  bottom: 90px;
  width: 190px;
  height: 190px;
  background: var(--orange);
  animation-delay: 1s;
}

.hero-glow-three {
  top: 46%;
  left: 42%;
  width: 170px;
  height: 170px;
  background: var(--yellow);
  animation-delay: 2s;
}

.hero-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0));
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.20;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.34;
  }
}

.stats-band {
  width: min(1180px, calc(100% - 32px));
  margin: -36px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stats-band div {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.stats-band strong {
  display: block;
  color: var(--pink-dark);
  font-size: 28px;
  line-height: 1.2;
}

.stats-band span {
  color: var(--muted);
  font-size: 14px;
}

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

.warm-section,
.split-section {
  background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

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

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

.movie-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6, #ffffff);
}

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

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

.poster-region,
.poster-year {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.poster-region {
  left: 12px;
  background: var(--pink);
}

.poster-year {
  right: 12px;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(6px);
}

.poster-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(17, 24, 39, 0);
  opacity: 0;
  font-size: 42px;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  background: rgba(17, 24, 39, 0.22);
}

.movie-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.movie-body strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.movie-line {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  color: #9ca3af;
  font-size: 13px;
}

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

.category-card {
  position: relative;
  min-height: 180px;
  padding: 24px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-count {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--pink-dark);
  background: #fdf2f8;
  font-size: 12px;
  font-weight: 800;
}

.category-card strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 24px;
}

.category-card small {
  display: block;
  color: var(--muted);
}

.category-samples {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  color: var(--orange-dark);
  font-size: 13px;
}

.category-samples a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-overview-card img {
  width: 84px;
  height: 112px;
  object-fit: cover;
  border-radius: 16px;
}

.category-overview-card strong {
  display: block;
  font-size: 20px;
}

.category-overview-card small {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 34px;
}

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

.compact-card,
.rank-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-card:hover,
.rank-row:hover,
.rank-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.compact-card img,
.rank-row img {
  width: 64px;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
}

.compact-card strong,
.rank-row strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-card small,
.rank-row small {
  color: var(--muted);
}

.rank-row {
  grid-template-columns: 44px 64px 1fr;
}

.rank-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 900;
}

.page-hero {
  padding: 74px 0;
  background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.gradient-hero {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.gradient-hero .section-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: inherit;
  opacity: 0.86;
  font-size: 18px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.catalog-sidebar,
.detail-aside {
  position: sticky;
  top: 112px;
}

.sidebar-card {
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.sidebar-card h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.side-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #4b5563;
  font-weight: 700;
}

.side-category:hover,
.side-category.is-current {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.filter-bar input {
  flex: 1;
  border-radius: 16px;
}

.filter-bar span {
  color: var(--muted);
  white-space: nowrap;
}

.filter-bar strong {
  color: var(--pink-dark);
}

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

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

.rank-card {
  display: grid;
  grid-template-columns: 70px 108px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-card-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  font-weight: 900;
}

.rank-card img {
  width: 108px;
  height: 144px;
  object-fit: cover;
  border-radius: 18px;
}

.rank-card-body strong,
.rank-card-body small,
.rank-card-body em {
  display: block;
}

.rank-card-body strong {
  margin-bottom: 4px;
  font-size: 20px;
}

.rank-card-body small {
  color: var(--muted);
}

.rank-card-body em {
  margin-top: 10px;
  color: #4b5563;
  font-style: normal;
}

.detail-top {
  padding: 24px 0 0;
  background: #f9fafb;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-section {
  padding-top: 28px;
  background: #f9fafb;
}

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-card video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.64));
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.big-play {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 20px 50px rgba(236, 72, 153, 0.36);
  font-size: 34px;
}

.detail-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

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

.detail-meta span,
.tag-list span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #7c2d12;
  background: #ffedd5;
  font-size: 14px;
  font-weight: 800;
}

.detail-card section {
  margin-top: 26px;
}

.detail-card h2 {
  margin: 0 0 10px;
  padding-left: 12px;
  border-left: 4px solid var(--pink);
  font-size: 22px;
}

.detail-card p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.9;
  white-space: pre-wrap;
}

.lead-text {
  color: #111827 !important;
  font-size: 18px !important;
  font-weight: 700;
}

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

.poster-info-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.poster-info-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.poster-info-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.poster-info-card dt {
  color: var(--muted);
}

.poster-info-card dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.related-section {
  background: #f9fafb;
}

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

.site-footer {
  padding: 44px 0;
  color: #d1d5db;
  background: #111827;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  color: #ffffff;
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

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

.is-filtered-out {
  display: none !important;
}

@media (max-width: 1100px) {
  .movie-grid,
  .all-grid,
  .category-grid,
  .category-overview-grid,
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-showcase {
    max-width: 460px;
  }

  .catalog-sidebar,
  .detail-aside {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-nav,
  .global-search {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .hero-inner {
    padding: 48px 0 72px;
  }

  .stats-band,
  .movie-grid,
  .all-grid,
  .category-grid,
  .category-overview-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-bar,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .rank-card {
    grid-template-columns: 52px 76px 1fr;
    gap: 12px;
  }

  .rank-card img {
    width: 76px;
    height: 102px;
  }
}

@media (max-width: 560px) {
  .top-strip {
    font-size: 12px;
  }

  .nav-shell {
    height: 64px;
  }

  .site-logo {
    font-size: 18px;
  }

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

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

  .hero-showcase {
    width: 100%;
  }

  .stats-band,
  .movie-grid,
  .all-grid,
  .category-grid,
  .category-overview-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

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

  .category-overview-card img {
    width: 72px;
    height: 96px;
  }

  .detail-card,
  .sidebar-card {
    padding: 20px;
  }

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

  .rank-card-number {
    width: 46px;
    height: 46px;
  }

  .rank-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }
}
