:root {
  --dawn-50: #fff7ed;
  --dawn-100: #ffedd5;
  --dawn-200: #ffe4b8;
  --dawn-300: #ffd699;
  --dawn-400: #ffc56b;
  --dawn-500: #ffb347;
  --dawn-600: #ff9f24;
  --dawn-700: #f58700;
  --morning-500: #0d96f8;
  --ink-900: #111827;
  --ink-700: #374151;
  --ink-600: #4b5563;
  --ink-500: #6b7280;
  --line: #e5e7eb;
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --radius-lg: 16px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink-900);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 45%, #fff7ed 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dawn-600);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand {
  flex: 0 0 auto;
  font-size: 20px;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--dawn-600), var(--morning-500));
  box-shadow: 0 10px 20px rgba(255, 159, 36, 0.25);
  font-size: 14px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 10px;
}

.nav-link {
  color: var(--ink-700);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

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

.header-search input,
.mobile-search input,
.filter-input,
.filter-select {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-900);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 230px;
  padding: 10px 16px;
}

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

.header-search button,
.mobile-search button,
.primary-btn,
.secondary-btn {
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.header-search button,
.mobile-search button,
.primary-btn {
  color: #ffffff;
  background: var(--dawn-600);
  box-shadow: 0 12px 24px rgba(255, 159, 36, 0.22);
}

.header-search button {
  padding: 10px 18px;
}

.header-search button:hover,
.mobile-search button:hover,
.primary-btn:hover {
  background: var(--dawn-700);
  transform: translateY(-1px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--ink-700);
  background: transparent;
  font-size: 26px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 16px 18px;
  background: #ffffff;
}

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

.mobile-link {
  display: block;
  padding: 10px 0;
  color: var(--ink-700);
  font-weight: 700;
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.mobile-search input {
  min-width: 0;
  flex: 1;
  padding: 10px 14px;
}

.mobile-search button {
  padding: 10px 16px;
}

.mobile-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.mobile-category-links a {
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--dawn-700);
  background: var(--dawn-50);
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-slide.is-active .hero-bg {
  animation: heroZoom 6s ease both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 64px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(255, 179, 71, 0.92);
  font-size: 14px;
  font-weight: 800;
}

.hero h1,
.hero h2 {
  max-width: 820px;
  margin: 16px 0 0;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
}

.hero h2 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900;
}

.hero-title-link:hover {
  color: var(--dawn-400);
}

.hero-desc {
  max-width: 760px;
  margin: 18px 0 0;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.hero-meta span,
.detail-meta span,
.badge,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 700;
}

.hero-meta span:first-child,
.badge,
.tag {
  color: var(--dawn-700);
  background: var(--dawn-50);
}

.hero-meta span:not(:first-child) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

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

.hero-actions a {
  padding: 13px 24px;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 20px;
  background: rgba(17, 24, 39, 0.58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-panel h2 {
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.4;
}

.hero-panel a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: 14px;
  padding: 12px 14px;
  color: #f9fafb;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-panel a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(2px);
}

.hero-panel small {
  color: var(--dawn-300);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

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

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

.section {
  padding: 54px 0;
}

.section.compact-section {
  padding: 34px 0;
}

.section-band {
  border-radius: 24px;
  padding: 42px 28px;
  background: linear-gradient(90deg, var(--dawn-50), #fff7ed);
}

.section-soft {
  background: linear-gradient(90deg, #f9fafb, #eff6ff);
}

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

.section-head h2,
.page-hero h1,
.detail-title,
.player-info h1 {
  margin: 0;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
}

.section-head p,
.page-hero p,
.category-intro,
.empty-state {
  max-width: 760px;
  color: var(--ink-600);
  line-height: 1.8;
}

.more-link {
  flex: 0 0 auto;
  color: var(--dawn-700);
  font-weight: 800;
}

.more-link:hover {
  color: var(--dawn-600);
}

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

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

.movie-card {
  display: block;
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #111827, #374151);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.25s ease;
}

.movie-card:hover .movie-cover {
  box-shadow: var(--card-shadow-hover);
}

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

.cover-img.is-empty {
  opacity: 0;
}

.movie-card:hover .cover-img {
  transform: scale(1.06);
}

.cover-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 60%);
  transition: opacity 0.25s ease;
}

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

.movie-year {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 8px;
  padding: 5px 8px;
  color: #ffffff;
  background: var(--dawn-600);
  font-size: 13px;
  font-weight: 800;
}

.movie-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .movie-play {
  opacity: 1;
  transform: translateY(0);
}

.movie-body {
  display: block;
  padding-top: 12px;
}

.movie-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-900);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-body strong {
  color: var(--dawn-700);
}

.movie-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin-top: 6px;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.movie-meta em {
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--dawn-700);
  background: var(--dawn-50);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.movie-card.is-compact .movie-cover {
  border-radius: 12px;
}

.movie-card.is-compact .movie-desc {
  display: none;
}

.movie-card.is-compact .movie-body strong {
  font-size: 15px;
  -webkit-line-clamp: 1;
}

.horizontal-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scrollbar-width: none;
}

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

.horizontal-scroll .movie-item {
  flex: 0 0 260px;
}

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

.category-card {
  display: grid;
  min-height: 170px;
  border: 1px solid rgba(255, 179, 71, 0.18);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card strong {
  color: var(--ink-900);
  font-size: 20px;
  font-weight: 900;
}

.category-card span {
  display: block;
  margin-top: 10px;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.65;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.rank-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--dawn-600), var(--morning-500));
  font-weight: 900;
}

.rank-info strong {
  display: block;
  color: var(--ink-900);
  font-size: 17px;
  font-weight: 900;
}

.rank-info span {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: var(--ink-600);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-meta {
  color: var(--ink-500);
  font-weight: 700;
}

.page-hero {
  padding: 64px 0 38px;
  background: linear-gradient(120deg, var(--dawn-50), #f0f9ff);
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
}

.page-hero p {
  margin-top: 14px;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-500);
  font-size: 14px;
  font-weight: 700;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
}

.filter-input {
  width: 100%;
  padding: 12px 16px;
}

.filter-select {
  min-width: 150px;
  padding: 12px 16px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink-700);
  background: #ffffff;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-tabs button:hover,
.filter-tabs button.is-active {
  border-color: var(--dawn-500);
  color: #ffffff;
  background: var(--dawn-600);
}

.empty-state {
  display: none;
  border-radius: 18px;
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--card-shadow);
}

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

.detail-player {
  background: #000000;
}

.player-wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
}

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

.player-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-poster::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28));
}

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

.big-play {
  position: relative;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 159, 36, 0.92);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  font-size: 28px;
}

.player-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
}

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.progress-value {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--dawn-500);
}

.control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.control-left,
.control-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.control-btn {
  border: 0;
  color: #ffffff;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  transition: color 0.2s ease;
}

.control-btn:hover {
  color: var(--dawn-400);
}

.time-text {
  color: #f3f4f6;
  font-size: 14px;
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 360px;
  gap: 32px;
  padding: 42px 0 64px;
}

.detail-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
}

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

.detail-card + .detail-card {
  margin-top: 20px;
}

.detail-card h2,
.related-card h2 {
  margin: 0 0 14px;
  color: var(--ink-900);
  font-size: 22px;
  font-weight: 900;
}

.detail-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.9;
}

.detail-card p + p {
  margin-top: 14px;
  color: var(--ink-600);
}

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

.related-card {
  position: sticky;
  top: 86px;
}

.related-list {
  display: grid;
  gap: 16px;
}

.mini-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.mini-cover {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #111827, #374151);
}

.mini-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink-900);
  font-weight: 900;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mini-card:hover strong {
  color: var(--dawn-700);
}

.mini-card small,
.mini-card em {
  display: block;
  margin-top: 5px;
  color: var(--ink-500);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.mini-card em {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 42px;
  padding: 48px 0;
}

.footer-brand {
  color: var(--dawn-400);
  font-size: 20px;
}

.site-footer p {
  max-width: 420px;
  margin: 14px 0 0;
  color: #9ca3af;
  line-height: 1.8;
}

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

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

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

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

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.07);
  }
}

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

  .nav-toggle {
    display: block;
  }

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

  .hero-panel {
    display: none;
  }

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

  .related-card {
    position: static;
  }
}

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

  .brand {
    font-size: 18px;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 84px 0 64px;
  }

  .hero-control {
    display: none;
  }

  .hero-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .section {
    padding: 38px 0;
  }

  .section-band {
    margin-right: -12px;
    margin-left: -12px;
    border-radius: 0;
    padding: 34px 12px;
  }

  .section-head {
    display: block;
  }

  .section-head .more-link {
    display: inline-block;
    margin-top: 12px;
  }

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

  .horizontal-scroll .movie-item {
    flex-basis: 210px;
  }

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

  .rank-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .rank-meta {
    grid-column: 2;
  }

  .detail-layout {
    padding-top: 28px;
  }

  .detail-card,
  .related-card {
    padding: 18px;
  }

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

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .movie-grid.six,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .movie-body strong {
    font-size: 15px;
  }

  .movie-desc {
    display: none;
  }

  .mini-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }
}
