:root {
  --color-dawn-50: #fff7ed;
  --color-dawn-100: #ffedd5;
  --color-dawn-300: #ffd699;
  --color-dawn-400: #ffc56b;
  --color-dawn-500: #ffb347;
  --color-dawn-600: #ff9f24;
  --color-dawn-700: #f58700;
  --color-morning-500: #0ea5e9;
  --color-morning-600: #0276d4;
  --color-ink: #111827;
  --color-muted: #6b7280;
  --color-soft: #f9fafb;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius-xl: 18px;
  --radius-lg: 14px;
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 45%);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
}

.brand__mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-dawn-500), var(--color-morning-500));
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(255, 159, 36, 0.35);
}

.brand__text {
  font-size: 20px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1;
}

.nav-link {
  color: #374151;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-dawn-700);
}

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

.header-search input,
.mobile-search input,
.search-band__form input,
.search-page-form input,
.filter-toolbar input,
.filter-toolbar select {
  width: 100%;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: var(--color-ink);
  border-radius: 999px;
  padding: 11px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.search-band__form input:focus,
.search-page-form input:focus,
.filter-toolbar input:focus,
.filter-toolbar select:focus {
  border-color: var(--color-dawn-500);
  box-shadow: 0 0 0 4px rgba(255, 179, 71, 0.22);
}

.header-search button,
.mobile-search button {
  border: none;
  color: #ffffff;
  background: var(--color-dawn-600);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
}

.mobile-panel {
  display: none;
  padding: 16px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
}

.mobile-panel a {
  padding: 10px 2px;
  color: #374151;
  font-weight: 700;
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

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

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

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

.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.42) 50%, rgba(0, 0, 0, 0.16) 100%);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 76px;
}

.hero-copy {
  max-width: 780px;
  color: #ffffff;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--color-dawn-500);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-desc {
  margin: 0 0 22px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-tags span,
.detail-tags a {
  display: inline-flex;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.hero-actions,
.detail-copy .btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-dawn-600), var(--color-dawn-700));
  box-shadow: 0 14px 28px rgba(255, 159, 36, 0.32);
}

.btn--secondary {
  color: var(--color-dawn-700);
  background: var(--color-dawn-50);
  border-color: var(--color-dawn-100);
}

.btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: var(--color-dawn-500);
}

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

.content-section--soft {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 32px;
  padding: 44px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-dawn-50), #eff6ff);
}

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

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

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

.section-link {
  color: var(--color-dawn-700);
  font-weight: 800;
  white-space: nowrap;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

.movie-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #111827;
  box-shadow: var(--shadow-card);
}

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

.movie-card:hover .movie-card__poster img {
  transform: scale(1.08);
  opacity: 0.88;
}

.movie-card__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .movie-card__poster::after {
  opacity: 1;
}

.movie-card__year,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  color: #ffffff;
  background: var(--color-dawn-600);
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  left: 12px;
  right: auto;
  background: rgba(17, 24, 39, 0.82);
}

.movie-card__play {
  position: absolute;
  z-index: 3;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #ffffff;
  font-weight: 800;
  transform: translateY(52px);
  transition: transform 0.3s ease;
}

.movie-card:hover .movie-card__play {
  transform: translateY(0);
}

.movie-card__body {
  padding: 12px 2px 0;
}

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

.movie-card__title a:hover {
  color: var(--color-dawn-700);
}

.movie-card__desc {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 10px;
  overflow: hidden;
  color: #4b5563;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.movie-card__meta a,
.movie-card__meta span {
  color: var(--color-dawn-700);
  background: var(--color-dawn-50);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 700;
}

.movie-card__meta span {
  color: #6b7280;
  background: #f3f4f6;
}

.movie-card__tags {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.4;
}

.movie-card--compact .movie-card__title {
  font-size: 16px;
}

.movie-card--compact .movie-card__desc {
  display: none;
}

.search-band {
  margin-top: -42px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 24px;
  box-shadow: var(--shadow-card-hover);
  backdrop-filter: blur(14px);
}

.search-band h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.search-band p {
  margin: 0;
  color: var(--color-muted);
}

.search-band__form,
.search-page-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 30px;
}

.info-panel {
  align-self: stretch;
  padding: 34px;
  color: #ffffff;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-dawn-600), var(--color-morning-600));
  box-shadow: var(--shadow-card-hover);
}

.info-panel .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.info-panel h2 {
  margin: 0 0 12px;
  font-size: 64px;
  line-height: 1;
}

.info-panel p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

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

.category-tile {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #ffffff;
  border-radius: 22px;
  padding: 22px;
  background: #111827;
  box-shadow: var(--shadow-card);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.15));
}

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

.category-tile strong {
  font-size: 24px;
  line-height: 1.2;
}

.category-tile em {
  margin: 8px 0;
  font-style: normal;
  color: var(--color-dawn-300);
  font-weight: 800;
}

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

.horizontal-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.horizontal-scroller::-webkit-scrollbar {
  display: none;
}

.page-hero {
  padding: 78px 0;
  color: #ffffff;
  background: #111827;
}

.page-hero--gradient,
.page-hero--category {
  background: linear-gradient(135deg, var(--color-dawn-600), var(--color-morning-600));
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

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

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

.category-overview-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

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

.category-overview-card__covers img {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: #111827;
}

.category-overview-card__body h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

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

.filter-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px auto;
  gap: 12px;
  align-items: center;
  padding: 22px 0 0;
}

.filter-toolbar span {
  color: var(--color-muted);
  font-weight: 800;
  white-space: nowrap;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.mini-card__poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background: #111827;
}

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

.mini-rank {
  position: absolute;
  left: 6px;
  top: 6px;
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--color-dawn-600);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.mini-card__content {
  min-width: 0;
}

.mini-card__content strong,
.mini-card__content em,
.mini-card__content small {
  display: block;
}

.mini-card__content strong {
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-card__content em {
  margin-bottom: 5px;
  color: var(--color-muted);
  font-style: normal;
  font-size: 13px;
}

.mini-card__content small {
  display: -webkit-box;
  overflow: hidden;
  color: #6b7280;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ranking-row {
  display: grid;
  grid-template-columns: 60px 96px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px;
  border: 1px solid #f3f4f6;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.ranking-row__rank {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-dawn-600), var(--color-morning-500));
  font-weight: 900;
}

.ranking-row__poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background: #111827;
}

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

.ranking-row__content h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.ranking-row__content p {
  margin: 0 0 10px;
  color: #4b5563;
  line-height: 1.6;
}

.ranking-row__content small {
  color: #9ca3af;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.04);
  opacity: 0.42;
}

.detail-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.45));
}

.detail-hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.36);
}

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

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.06;
}

.detail-one-line {
  max-width: 800px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.65;
}

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

.detail-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #020617;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.22);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.45);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-start__icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-dawn-600), var(--color-dawn-700));
  box-shadow: 0 18px 40px rgba(255, 159, 36, 0.38);
}

.player-note {
  position: absolute;
  left: 18px;
  bottom: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
}

.detail-article,
.detail-side {
  padding: 30px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.detail-article h2:not(:first-child) {
  margin-top: 30px;
}

.detail-article p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.95;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 14px;
  margin: 0;
}

.detail-side dt {
  color: #9ca3af;
  font-weight: 800;
}

.detail-side dd {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

.detail-side a {
  color: var(--color-dawn-700);
  font-weight: 800;
}

.search-page-form {
  max-width: 720px;
  margin-top: 28px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 52px 0;
}

.brand--footer {
  color: #ffffff;
  margin-bottom: 16px;
}

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

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

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

.site-footer a:hover {
  color: var(--color-dawn-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 16px;
  text-align: center;
  color: #9ca3af;
}

.is-hidden-by-filter {
  display: none !important;
}

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

  .header-search {
    margin-left: auto;
  }

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

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

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

@media (max-width: 820px) {
  .site-header__inner {
    height: 66px;
  }

  .brand__text {
    font-size: 18px;
  }

  .header-search {
    display: none;
  }

  .hero-carousel {
    height: 68vh;
    min-height: 560px;
  }

  .hero-slide__content {
    padding-bottom: 88px;
  }

  .search-band,
  .search-band__form,
  .search-page-form,
  .filter-toolbar,
  .detail-layout,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .search-band {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .section-heading {
    display: block;
  }

  .section-link {
    display: inline-flex;
    margin-top: 14px;
  }

  .movie-grid--four,
  .movie-grid--five,
  .movie-grid--six,
  .category-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ranking-row {
    grid-template-columns: 44px 78px 1fr;
  }

  .ranking-row .btn {
    grid-column: 2 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .movie-grid--four,
  .movie-grid--five,
  .movie-grid--six,
  .category-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .movie-card__title {
    font-size: 16px;
  }

  .movie-card__desc,
  .movie-card__tags {
    display: none;
  }

  .category-tile {
    min-height: 210px;
  }

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

  .detail-article,
  .detail-side {
    padding: 22px;
  }

  .ranking-row {
    grid-template-columns: 42px 72px 1fr;
    gap: 12px;
  }
}
