:root {
  --page-bg: #fff7ed;
  --page-bg-soft: #fffaf5;
  --text-main: #111827;
  --text-soft: #6b7280;
  --line: rgba(148, 163, 184, 0.25);
  --card: rgba(255, 255, 255, 0.92);
  --card-strong: #ffffff;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --amber: #f59e0b;
  --blue: #2563eb;
  --green: #16a34a;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.13);
  --shadow-soft: 0 14px 36px rgba(15, 23, 42, 0.09);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(251, 146, 60, 0.23), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff7ed 0%, #f8fafc 42%, #fff7ed 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(251, 146, 60, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: 20px;
  background: rgba(249, 115, 22, 0.18);
  filter: blur(8px);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 20px;
  font-weight: 850;
  line-height: 1.15;
  color: #111827;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--text-soft);
  font-size: 12px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #374151;
  font-size: 15px;
  font-weight: 650;
}

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

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: #111827;
  color: white;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
}

.menu-button {
  display: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-deep);
  font-size: 22px;
}

.mobile-nav {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 16px;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #374151;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange-deep);
}

.page-main {
  min-height: 70vh;
}

.hero-slider {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.9s ease;
  pointer-events: none;
}

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

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: 48px;
  align-items: center;
  padding: 82px 0 76px;
}

.hero-copy {
  color: white;
  max-width: 760px;
}

.hero-eyebrow,
.section-eyebrow,
.detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #fed7aa;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  text-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #78350f;
  background: rgba(255, 237, 213, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.pill.dark {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

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

.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 999px;
  font-weight: 850;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.3);
}

.button-secondary {
  color: #111827;
  background: white;
  box-shadow: var(--shadow-soft);
}

.button-ghost {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

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

.hero-poster {
  display: block;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, #fb923c, #0f172a);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.82));
}

.hero-poster-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: white;
}

.hero-poster-caption strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
}

.hero-poster-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-arrows {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 20px;
}

.hero-dots {
  display: flex;
  gap: 9px;
  pointer-events: auto;
}

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

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

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 20px 0;
}

.section.compact {
  padding-top: 42px;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-deep);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-title {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.section-desc {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--text-soft);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  min-height: 170px;
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(251, 146, 60, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
}

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

.category-card strong {
  display: block;
  font-size: 21px;
  line-height: 1.25;
}

.category-card span {
  display: block;
  margin-top: 9px;
  color: var(--text-soft);
  font-size: 14px;
}

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card-strong);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(249, 115, 22, 0.28);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #fdba74, #1f2937);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img,
.featured-card:hover img {
  transform: scale(1.05);
}

.poster-badge,
.poster-play {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.poster-badge {
  left: 12px;
  top: 12px;
  min-width: 56px;
  padding: 5px 9px;
  border-radius: 999px;
  color: white;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  font-size: 12px;
}

.poster-play {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.35);
}

.movie-card-body {
  padding: 15px 15px 17px;
}

.movie-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.34;
  letter-spacing: -0.015em;
}

.movie-title a:hover {
  color: var(--orange-deep);
}

.movie-meta {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 13px;
}

.movie-line {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 750;
}

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

.featured-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius-xl);
  background: #111827;
  box-shadow: var(--shadow);
}

.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.35s ease;
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.88));
}

.featured-content {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: white;
}

.featured-content h3 {
  margin: 10px 0 8px;
  font-size: 25px;
  line-height: 1.25;
}

.featured-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-panel {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #111827, #1f2937 55%, #431407);
  padding: 28px;
  box-shadow: var(--shadow);
  color: white;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rank-item {
  display: grid;
  grid-template-columns: 54px 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #7c2d12;
  background: #fed7aa;
  font-weight: 950;
}

.rank-cover {
  width: 72px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, #fb923c, #111827);
}

.rank-title {
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
}

.rank-meta {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.rank-score {
  color: #fed7aa;
  font-weight: 900;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 20px 58px;
  color: white;
  background:
    radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.72), transparent 28rem),
    linear-gradient(135deg, #111827, #1f2937 52%, #7c2d12);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: white;
}

.page-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-desc {
  max-width: 820px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.filter-panel {
  border-radius: var(--radius-xl);
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(16px);
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 14px;
  margin-bottom: 16px;
}

.search-input,
.sort-select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 16px;
  background: white;
  color: #111827;
  padding: 0 16px;
  outline: none;
}

.search-input:focus,
.sort-select:focus {
  border-color: rgba(249, 115, 22, 0.72);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  color: #7c2d12;
  background: #ffedd5;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.is-active {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--amber));
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  transform: scale(1.08);
  opacity: 0.34;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 22%, rgba(249, 115, 22, 0.36), transparent 24rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.96));
}

.detail-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 20px 72px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.player-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.04), rgba(2, 6, 23, 0.42));
  cursor: pointer;
  transition: opacity 0.2s ease;
}

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

.player-button {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 16px 23px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 22px 50px rgba(249, 115, 22, 0.42);
  cursor: pointer;
  font-weight: 900;
  font-size: 17px;
}

.player-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--orange-deep);
  background: white;
}

.detail-info-card {
  border-radius: 30px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.detail-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-line {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.content-card {
  border-radius: var(--radius-xl);
  padding: 30px;
  background: var(--card-strong);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.content-card h2 {
  margin: 0 0 12px;
  font-size: 27px;
  line-height: 1.2;
}

.content-card p {
  margin: 0 0 20px;
  color: #374151;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.detail-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
}

.side-card {
  border-radius: var(--radius-lg);
  padding: 22px;
  background: #fff7ed;
  border: 1px solid rgba(251, 146, 60, 0.22);
}

.side-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

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

.side-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(251, 146, 60, 0.18);
  color: #374151;
  font-weight: 750;
}

.side-links a:last-child {
  border-bottom: 0;
}

.side-links a:hover {
  color: var(--orange-deep);
}

.footer {
  margin-top: 82px;
  padding: 38px 20px;
  color: rgba(255, 255, 255, 0.78);
  background: #111827;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a:hover {
  color: white;
}

.empty-state {
  display: none;
  padding: 30px;
  text-align: center;
  color: var(--text-soft);
}

@media (max-width: 1180px) {
  .movie-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .main-nav,
  .header-button {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .hero-inner,
  .detail-grid,
  .detail-body-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-poster {
    max-width: 310px;
    margin: 0 auto;
  }

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

  .featured-grid,
  .rank-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .brand-subtitle {
    display: none;
  }

  .hero-inner {
    padding-top: 58px;
    gap: 28px;
  }

  .hero-copy p,
  .page-desc {
    font-size: 16px;
  }

  .hero-controls {
    bottom: 18px;
  }

  .section {
    padding-top: 48px;
  }

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

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

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

  .rank-item {
    grid-template-columns: 42px 58px 1fr;
  }

  .rank-score {
    display: none;
  }

  .content-card,
  .rank-panel,
  .filter-panel,
  .detail-info-card {
    padding: 20px;
  }

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

@media (max-width: 420px) {
  .header-inner {
    padding-inline: 14px;
  }

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

  .hero-copy h1 {
    font-size: 36px;
  }

  .movie-grid {
    gap: 12px;
  }

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