:root {
  --peach-50: #fff5f0;
  --peach-100: #ffe9dd;
  --peach-200: #ffd8c3;
  --peach-300: #ffbd99;
  --peach-400: #ffa777;
  --peach-500: #ff9155;
  --peach-600: #ff7b44;
  --coral-400: #ff7d70;
  --coral-500: #ff6450;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 12px 34px rgba(255, 145, 85, 0.18);
  --shadow-strong: 0 24px 55px rgba(17, 24, 39, 0.18);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, var(--peach-50), #ffffff 45%, #fff0ee);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 216, 195, 0.75);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100% - 32px, var(--container));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--peach-400), var(--coral-500));
  box-shadow: 0 14px 28px rgba(255, 100, 80, 0.28);
}

.brand-text {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--peach-600), var(--coral-500), var(--peach-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-link {
  padding: 9px 14px;
  color: var(--gray-700);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--peach-600);
  background: var(--peach-50);
}

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

.header-search input,
.page-search input,
.filter-panel input,
.filter-panel select {
  min-height: 42px;
  color: var(--gray-900);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--peach-200);
  border-radius: 999px;
  outline: none;
  padding: 0 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 220px;
}

.header-search input:focus,
.page-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--peach-400);
  box-shadow: 0 0 0 4px rgba(255, 167, 119, 0.18);
}

.header-search button,
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--peach-500), var(--coral-500));
  box-shadow: 0 10px 24px rgba(255, 100, 80, 0.25);
}

.header-search button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--peach-50);
  border: 1px solid var(--peach-200);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gray-700);
  border-radius: 999px;
}

.hero {
  background: #111827;
}

.hero-stage {
  position: relative;
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
}

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

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

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

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 145, 85, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - var(--container)) / 2));
  width: min(680px, calc(100% - 48px));
  color: #ffffff;
  transform: translateY(-50%);
  animation: fadeIn 0.55s ease both;
}

.hero-kicker,
.movie-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-kicker span,
.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  background: var(--peach-500);
}

.hero-kicker span + span {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero h1,
.hero h2 {
  margin: 16px 0 14px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.8;
}

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

.hero-score {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.52);
  border: 0;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-thumbs {
  width: min(100% - 32px, var(--container));
  margin: -58px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 26px;
}

.hero-thumb {
  min-height: 94px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  padding: 10px;
  backdrop-filter: blur(16px);
}

.hero-thumb img {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  object-fit: cover;
}

.hero-thumb span {
  display: -webkit-box;
  overflow: hidden;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.section {
  padding: 72px 0;
}

.section-light {
  background: linear-gradient(180deg, #ffffff, var(--peach-50));
}

.section-peach {
  background: linear-gradient(180deg, var(--peach-50), #ffffff);
}

.section-coral {
  background: linear-gradient(180deg, #ffffff, #fff0ee);
}

.section-head,
.section-head-row {
  margin-bottom: 32px;
}

.section-head {
  text-align: center;
}

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

.section-label {
  margin: 0 0 8px;
  color: var(--peach-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2,
.page-hero h1,
.detail-content h1 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-head p,
.section-head-row p,
.page-hero p {
  margin: 8px 0 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.more-link {
  color: var(--peach-600);
  font-weight: 800;
}

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

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

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

.two-cols,
.list-grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-grid {
  display: grid;
  gap: 18px;
}

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 216, 195, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link,
.list-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--gray-100);
}

.poster-link {
  aspect-ratio: 3 / 4;
}

.poster-link img,
.list-cover img,
.category-card img,
.compact-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.movie-card:hover img,
.category-card:hover img,
.compact-card:hover img {
  transform: scale(1.07);
}

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  transition: opacity 0.2s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.play-mark,
.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--peach-600);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: var(--shadow-strong);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.68);
  border-radius: 999px;
}

.rank-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--peach-500), var(--coral-500));
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.card-body,
.list-body {
  padding: 16px;
}

.movie-topline {
  margin-bottom: 10px;
}

.rating {
  color: #eab308;
  font-weight: 800;
}

.movie-card h3,
.list-body .movie-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card h3 a:hover,
.list-body .movie-title:hover {
  color: var(--peach-600);
}

.card-body p,
.list-body p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  margin: 0 0 12px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-card-list {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px;
}

.movie-card-list .list-cover {
  height: 112px;
  border-radius: 14px;
}

.movie-card-list .list-body {
  padding: 0;
}

.movie-card-list .movie-title {
  min-height: auto;
  margin-bottom: 8px;
}

.category-grid,
.category-card-grid {
  display: grid;
  gap: 18px;
}

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

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

.category-tile,
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(135deg, var(--peach-400), var(--coral-500));
}

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

.category-tile span,
.category-card strong {
  font-size: 22px;
  font-weight: 900;
}

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

.category-card {
  height: 248px;
}

.category-card-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.16));
}

.category-card-body {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
}

.page-hero {
  padding: 56px 0 46px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 145, 85, 0.22), transparent 34%),
    linear-gradient(135deg, #ffffff, var(--peach-50));
}

.compact-hero {
  text-align: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gray-500);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--peach-600);
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: end;
  margin-bottom: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--peach-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  min-width: 220px;
  color: var(--gray-600);
  font-weight: 700;
}

.empty-state {
  display: none;
  width: min(100% - 32px, var(--container));
  margin: 24px auto 0;
  padding: 28px;
  color: var(--gray-600);
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--peach-200);
  border-radius: var(--radius-lg);
}

.empty-state.is-visible {
  display: block;
}

.ranking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.ranking-tabs button {
  min-height: 42px;
  padding: 0 22px;
  color: var(--peach-600);
  font-weight: 800;
  background: #ffffff;
  border: 1px solid var(--peach-200);
  border-radius: 999px;
}

.ranking-tabs button.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--peach-500), var(--coral-500));
  border-color: transparent;
}

.ranking-panel {
  display: none;
}

.ranking-panel.is-active {
  display: block;
}

.page-search {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: min(720px, 100%);
  margin: 26px auto 0;
}

.page-search input {
  flex: 1;
}

.detail-section {
  padding: 38px 0 70px;
}

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

.player-card,
.side-box {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 216, 195, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
}

.video-player video,
.player-cover,
.player-cover img,
.player-cover-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-player video {
  object-fit: contain;
}

.player-cover {
  z-index: 2;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000000;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  object-fit: cover;
}

.player-cover-mask {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72));
}

.big-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.player-error {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: none;
  width: min(80%, 420px);
  padding: 18px 20px;
  color: #ffffff;
  text-align: center;
  background: rgba(17, 24, 39, 0.88);
  border-radius: 16px;
  transform: translate(-50%, -50%);
}

.player-error.is-visible {
  display: block;
}

.detail-content {
  padding: 26px;
}

.detail-content h1 {
  margin: 14px 0;
}

.lead-text {
  color: var(--gray-700);
  font-size: 18px;
  line-height: 1.85;
}

.detail-meta {
  gap: 12px 18px;
  margin: 20px 0 8px;
  font-size: 14px;
}

.text-block {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.text-block h2,
.side-box h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.text-block p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.9;
}

.review-block {
  padding: 24px;
  background: linear-gradient(135deg, var(--peach-50), #fff0ee);
  border: 0;
  border-radius: var(--radius-lg);
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  color: var(--gray-700);
  background: #ffffff;
  border: 1px solid var(--peach-200);
  border-radius: 999px;
}

.prev-next {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.prev-next a {
  color: var(--peach-600);
  font-weight: 800;
}

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

.side-box {
  padding: 22px;
}

.compact-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
}

.side-box h2 + .compact-card {
  border-top: 0;
}

.compact-cover {
  position: relative;
  overflow: hidden;
  height: 72px;
  border-radius: 12px;
  background: var(--gray-100);
}

.compact-info {
  display: grid;
  gap: 6px;
}

.compact-info strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--gray-900);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.compact-info small {
  color: var(--gray-500);
}

.site-footer {
  background: linear-gradient(135deg, var(--peach-50), #fff0ee);
  border-top: 1px solid var(--peach-200);
}

.footer-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.footer-brand p,
.footer-links a {
  color: var(--gray-600);
  line-height: 1.8;
}

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

.footer-links h3 {
  margin: 0 0 8px;
}

.footer-links a:hover {
  color: var(--peach-600);
}

.footer-bottom {
  padding: 18px 0;
  color: var(--gray-600);
  text-align: center;
  border-top: 1px solid var(--peach-200);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-45%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-search {
    grid-column: 1 / -1;
    display: none;
  }

  .site-nav.is-open,
  .header-search.is-open {
    display: flex;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 8px;
  }

  .header-search {
    padding-bottom: 16px;
  }

  .header-search input {
    width: min(100%, 360px);
  }

  .three-cols,
  .four-cols,
  .category-grid,
  .category-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }

  .hero-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .container,
  .header-inner,
  .footer-inner,
  .hero-thumbs {
    width: min(100% - 24px, var(--container));
  }

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

  .hero-content {
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero h1,
  .hero h2 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-thumbs,
  .three-cols,
  .four-cols,
  .two-cols,
  .list-grid.two-cols,
  .category-grid,
  .category-card-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

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

  .movie-card-list {
    grid-template-columns: 128px 1fr;
  }

  .movie-card-list .list-cover {
    height: 96px;
  }

  .filter-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .page-search {
    flex-direction: column;
  }

  .detail-content {
    padding: 20px;
  }

  .prev-next {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand-text {
    font-size: 18px;
  }

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

  .movie-card-list .list-cover {
    height: 180px;
  }

  .compact-card {
    grid-template-columns: 96px 1fr;
  }
}
