:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --amber: #f59e0b;
  --yellow: #facc15;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-hover: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius-xl: 24px;
  --radius-lg: 18px;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #fffbeb 0%, #fff7ed 100%);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 68px;
  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(--gray-800);
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.26);
  transform: translateZ(0);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(4deg);
}

.brand-name {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 9px 13px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: var(--orange);
  transform: translateY(-1px);
}

.nav-link-soft {
  font-weight: 600;
  color: var(--gray-600);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.10);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--gray-800);
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(249, 115, 22, 0.18);
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.is-active {
  background: var(--orange);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffedd5 0%, #fffbeb 46%, #fef3c7 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  opacity: 0.18;
  filter: blur(16px);
  pointer-events: none;
}

.hero-glow-one {
  width: 260px;
  height: 260px;
  left: 4%;
  top: 12%;
  background: var(--orange);
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  right: 7%;
  bottom: 6%;
  background: var(--amber);
}

.hero-layout {
  min-height: 560px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-title-block h1 {
  margin: 0;
  color: var(--gray-800);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  font-size: clamp(40px, 6vw, 68px);
}

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

.hero-copy p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--gray-600);
  font-size: 20px;
}

.hero-search,
.side-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 8px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero-search input,
.side-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  padding: 12px 16px;
  color: var(--gray-800);
}

.hero-search button,
.side-search button {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--amber));
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--amber));
}

.btn-secondary {
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.btn-small {
  padding: 10px 16px;
  font-size: 14px;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.hero-slider {
  position: relative;
  min-height: 380px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.22);
  background: var(--gray-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-image-wrap,
.hero-image-wrap img {
  width: 100%;
  height: 100%;
}

.hero-image-wrap img {
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.48) 52%, rgba(17, 24, 39, 0.10) 100%);
}

.hero-slide-copy {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 34px;
  max-width: 520px;
  color: var(--white);
}

.hero-slide-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
}

.hero-slide-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.hero-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.hero-link {
  display: inline-flex;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange), var(--amber));
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

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

.hero-dot.is-active {
  width: 28px;
  background: var(--white);
}

.hero-mini-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-mini-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease;
}

.hero-mini-card:hover {
  transform: translateY(-2px);
}

.hero-mini-card img {
  width: 58px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.hero-mini-card span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 800;
  font-size: 13px;
}

.section {
  padding: 70px 0;
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--gray-50);
}

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

.section-head-tight {
  margin-bottom: 20px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.section h2,
.section-head h2,
.article-card h2,
.spotlight-panel h2,
.poster-side-card h2 {
  margin: 0;
  color: var(--gray-800);
  line-height: 1.2;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.text-link {
  color: var(--orange-dark);
  font-weight: 900;
}

.text-link:hover {
  text-decoration: underline;
}

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

.movie-grid-featured {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.movie-grid-compact {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

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

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

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

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
}

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(249, 115, 22, 0.90);
  transform: translate(-50%, -50%) scale(0.76);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.movie-card:hover .play-float {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.poster-label {
  position: absolute;
  z-index: 3;
  right: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(249, 115, 22, 0.94);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  position: absolute;
  z-index: 4;
  left: 12px;
  top: 12px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  font-weight: 900;
}

.movie-info {
  padding: 18px;
}

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

.movie-info h3 a:hover {
  color: var(--orange-dark);
}

.movie-info p {
  margin: 0 0 14px;
  min-height: 46px;
  color: var(--gray-600);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.movie-tags,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.rank-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  background: #fff7ed;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta span:last-child {
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.category-tile,
.category-preview-card,
.spotlight-panel,
.filter-panel,
.article-card,
.poster-side-card {
  border: 1px solid rgba(229, 231, 235, 0.90);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.category-tile {
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.category-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffedd5, #fef3c7);
  font-size: 26px;
}

.category-tile h3,
.category-preview-head h2 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.category-tile p,
.category-preview-head p,
.spotlight-panel p {
  margin: 0;
  color: var(--gray-600);
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

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

.rank-list-full {
  gap: 12px;
}

.rank-row {
  display: grid;
  grid-template-columns: 58px 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 12px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.rank-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  font-weight: 900;
}

.rank-thumb img {
  width: 92px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.rank-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-content p {
  margin: 0 0 10px;
  color: var(--gray-600);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.spotlight-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.side-search {
  margin-top: 20px;
  border-radius: 18px;
  flex-direction: column;
  align-items: stretch;
}

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

.side-search button {
  width: 100%;
}

.side-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.side-links a {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--gray-50);
  color: var(--gray-700);
  font-weight: 800;
}

.side-links a:hover {
  background: #fff7ed;
  color: var(--orange-dark);
}

.page-hero,
.detail-top {
  position: relative;
  padding: 74px 0;
  background: linear-gradient(135deg, #ffedd5 0%, #fffbeb 55%, #fef3c7 100%);
  overflow: hidden;
}

.page-hero::before,
.detail-top::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: 9%;
  top: -70px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.13);
  filter: blur(10px);
}

.page-hero .container,
.detail-top .container {
  position: relative;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(38px, 6vw, 62px);
}

.page-hero p,
.detail-title-block p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--gray-600);
  font-size: 19px;
}

.category-preview-stack {
  display: grid;
  gap: 26px;
}

.category-preview-card {
  padding: 24px;
}

.category-preview-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 22px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 180px 180px;
  gap: 16px;
  align-items: end;
  padding: 20px;
  margin-bottom: 28px;
}

.filter-field {
  display: grid;
  gap: 8px;
}

.filter-field label {
  color: var(--gray-700);
  font-weight: 900;
  font-size: 14px;
}

.filter-field input,
.filter-field select {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
}

.filter-field input:focus,
.filter-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-status {
  min-height: 22px;
  margin: 0;
  color: var(--gray-500);
  font-weight: 700;
}

.detail-top {
  padding-bottom: 48px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--gray-600);
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--orange-dark);
}

.detail-title-block h1 {
  max-width: 960px;
  font-size: clamp(34px, 5vw, 58px);
}

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

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

.player-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--gray-900);
  box-shadow: var(--shadow-hover);
}

.player-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--gray-900);
}

.player-box video {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--gray-900);
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-900);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(1.04);
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.22), rgba(17, 24, 39, 0.64));
}

.play-button {
  position: relative;
  z-index: 3;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.38);
  cursor: pointer;
  transition: transform 0.22s ease;
}

.play-button:hover {
  transform: scale(1.08);
}

.play-button span {
  margin-left: 5px;
  font-size: 34px;
}

.article-card {
  padding: 26px;
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

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

.article-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
}

.detail-side {
  position: sticky;
  top: 92px;
}

.poster-side-card {
  overflow: hidden;
}

.poster-side-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.poster-side-card h2,
.poster-side-card dl,
.detail-tags {
  margin-left: 22px;
  margin-right: 22px;
}

.poster-side-card h2 {
  margin-top: 20px;
  font-size: 24px;
}

.poster-side-card dl {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.poster-side-card dl div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.poster-side-card dt {
  color: var(--gray-500);
  font-weight: 800;
}

.poster-side-card dd {
  margin: 0;
  color: var(--gray-800);
  font-weight: 800;
}

.poster-side-card dd a {
  color: var(--orange-dark);
}

.detail-tags {
  margin-bottom: 22px;
}

.site-footer {
  color: var(--gray-300);
  background: linear-gradient(180deg, var(--gray-800), var(--gray-900));
}

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

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 20px;
}

.site-footer p {
  margin: 0;
  color: var(--gray-300);
}

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

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

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--gray-400);
  text-align: center;
}

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

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

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

  .hero-layout,
  .two-column-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-top: 44px;
  }

  .hero-visual {
    min-width: 0;
  }

  .detail-side,
  .spotlight-panel {
    position: static;
  }
}

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

  .brand-name {
    font-size: 18px;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-copy p,
  .page-hero p,
  .detail-title-block p {
    font-size: 16px;
  }

  .hero-search {
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search button {
    width: 100%;
  }

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

  .hero-slide-copy {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

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

  .section {
    padding: 48px 0;
  }

  .section-head,
  .category-preview-head {
    align-items: start;
    flex-direction: column;
  }

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

  .movie-grid,
  .movie-grid-featured,
  .movie-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    gap: 16px;
  }

  .movie-info {
    padding: 14px;
  }

  .movie-info h3 {
    font-size: 16px;
  }

  .movie-info p {
    font-size: 13px;
    min-height: 40px;
  }

  .rank-row {
    grid-template-columns: 42px 74px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 14px;
  }

  .rank-thumb img {
    width: 74px;
  }

  .rank-content p {
    display: none;
  }

  .rank-meta span:nth-child(n + 3) {
    display: none;
  }

  .page-hero,
  .detail-top {
    padding: 52px 0;
  }

  .article-card {
    padding: 20px;
  }

  .play-button {
    width: 76px;
    height: 76px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }
}

@media (max-width: 460px) {
  .hero-mini-list {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .movie-grid-featured,
  .movie-grid-compact {
    grid-template-columns: 1fr;
  }
}
