* {
  box-sizing: border-box;
}

:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --rose-50: #fff1f2;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 6px 18px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 12px 32px rgba(17, 24, 39, 0.10);
  --shadow-lg: 0 24px 56px rgba(17, 24, 39, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.96));
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1280px;
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.logo-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  font-size: 20px;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-800));
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--amber-800), var(--amber-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  color: var(--gray-600);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  color: var(--gray-700);
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--amber-600);
  transition: width 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 280px;
}

.search-input {
  width: 100%;
  border: 1px solid var(--amber-200);
  background: var(--white);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--gray-800);
  outline: none;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.08);
}

.search-input:focus {
  border-color: var(--amber-500);
}

.search-button {
  border: none;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-600);
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
}

.search-panel {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(520px, calc(100vw - 32px));
  max-height: 430px;
  overflow: auto;
  display: none;
  background: var(--white);
  border: 1px solid var(--amber-100);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
}

.search-panel.open {
  display: block;
}

.search-result {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
}

.search-result:hover {
  background: var(--amber-50);
}

.search-result img {
  width: 58px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
}

.search-result strong {
  display: block;
  color: var(--gray-900);
}

.search-result span {
  color: var(--gray-500);
  font-size: 13px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--amber-100);
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--amber-800);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  padding: 12px 24px 20px;
}

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

.home-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--rose-50), var(--amber-50));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.18), transparent 24%), radial-gradient(circle at 80% 28%, rgba(225, 29, 72, 0.14), transparent 26%), linear-gradient(135deg, rgba(255, 255, 255, 0.38) 25%, transparent 25%);
  background-size: 100% 100%, 100% 100%, 46px 46px;
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  min-height: 600px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  align-items: center;
}

.hero-slider {
  width: 100%;
  position: relative;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 56px;
}

.hero-slide.active {
  display: grid;
  animation: fadeUp 0.45s ease both;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  color: var(--amber-800);
  background: rgba(253, 230, 138, 0.72);
  padding: 7px 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  margin: 24px 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.07em;
}

.hero-copy p {
  margin: 0 0 26px;
  color: var(--gray-700);
  font-size: 20px;
}

.hero-tags,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-tags span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--white);
  color: var(--amber-700);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--amber-100);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn.primary {
  background: linear-gradient(90deg, var(--amber-600), var(--amber-700));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(180, 83, 9, 0.28);
}

.btn.secondary {
  background: var(--white);
  color: var(--amber-700);
  border: 2px solid var(--amber-200);
  box-shadow: var(--shadow-sm);
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--rose-50));
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.image-frame img.image-off {
  opacity: 0;
}

.hero-poster {
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 32px;
  background: rgba(180, 83, 9, 0.18);
  z-index: -1;
}

.hero-poster:hover img,
.movie-card:hover img,
.category-card:hover img,
.compact-card:hover img,
.related-card:hover img {
  transform: scale(1.08);
}

.hero-play,
.play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.46);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-poster:hover .hero-play,
.movie-card:hover .play-badge,
.related-card:hover .play-badge {
  opacity: 1;
  transform: scale(1);
}

.hero-controls {
  position: absolute;
  left: 24px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-controls button {
  border: none;
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--amber-800);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  font-size: 28px;
  line-height: 1;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(146, 64, 14, 0.22);
}

.hero-dot.active {
  width: 26px;
  background: var(--amber-700);
}

.feature-strip {
  max-width: 1280px;
  margin: -44px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.feature-item {
  background: var(--white);
  border: 1px solid var(--amber-100);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.feature-item strong {
  display: block;
  font-size: 18px;
  color: var(--gray-900);
}

.feature-item span {
  display: block;
  margin-top: 6px;
  color: var(--gray-500);
  font-size: 14px;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 82px 24px;
}

.warm-section {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  background: linear-gradient(135deg, var(--gray-50), var(--amber-50));
}

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

.section-head h2 {
  margin: 12px 0 6px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--gray-600);
  max-width: 720px;
}

.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--amber-600);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 800;
}

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

.movie-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.card-media {
  display: block;
  aspect-ratio: 2 / 3;
}

.year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-600);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 18px;
}

.card-body h2,
.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h2 a:hover,
.card-body h3 a:hover {
  color: var(--amber-700);
}

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

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gray-500);
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.ranking-panel,
.category-panel {
  background: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.ranking-panel .section-head,
.category-panel .section-head {
  display: block;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--gray-50), var(--amber-50));
}

.rank-row:hover {
  background: var(--amber-100);
}

.rank-num {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rose-600);
  color: var(--white);
  font-weight: 900;
}

.rank-title {
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-meta {
  color: var(--gray-500);
  font-size: 13px;
  white-space: nowrap;
}

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

.category-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  padding: 20px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.category-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.18));
}

.category-card span,
.category-card small {
  position: relative;
  z-index: 2;
}

.category-card span {
  font-size: 24px;
  font-weight: 900;
}

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

.cta-section {
  max-width: none;
  text-align: center;
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  color: var(--white);
}

.cta-section h2 {
  margin: 0 0 10px;
  font-size: 42px;
}

.cta-section p {
  margin: 0 0 28px;
  color: var(--gray-200);
}

.page-hero {
  background: linear-gradient(135deg, var(--amber-600), var(--rose-600));
  color: var(--white);
  padding: 78px 24px;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
  font-weight: 700;
}

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

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.88);
}

.filter-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-link {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--amber-200);
  padding: 10px 16px;
  background: var(--white);
  color: var(--gray-700);
  font-weight: 800;
}

.filter-link.active,
.filter-link:hover {
  color: var(--white);
  background: var(--amber-600);
  border-color: var(--amber-600);
}

.library-count {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px 0;
  color: var(--gray-600);
  font-weight: 700;
}

.detail-hero {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  color: var(--white);
  padding: 58px 24px;
}

.detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.detail-info h1 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
}

.detail-lead {
  margin: 0 0 24px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.84);
}

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

.detail-meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: var(--amber-100);
  border-color: rgba(255, 255, 255, 0.12);
}

.detail-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 68px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.article-panel,
.side-panel,
.player-panel {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  padding: 30px;
}

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

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

.player-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 68px;
}

.player-panel {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  color: var(--white);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow-lg);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--white);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.54));
  cursor: pointer;
}

.player-start span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  font-size: 32px;
  box-shadow: var(--shadow-lg);
}

.video-shell.playing .player-start {
  display: none;
}

.player-status {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.compact-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: var(--gray-50);
}

.compact-card:hover {
  background: var(--amber-50);
}

.compact-cover {
  aspect-ratio: 2 / 3;
  border-radius: 14px;
}

.compact-info strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

.related-card {
  display: block;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.related-card .card-media {
  aspect-ratio: 2 / 3;
}

.related-card h3 {
  margin: 0;
  padding: 14px;
  font-size: 16px;
  line-height: 1.35;
}

.site-footer {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  color: var(--white);
  padding: 54px 24px 28px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--amber-100);
  font-size: 22px;
  font-weight: 900;
}

.footer-brand p {
  color: var(--gray-200);
  max-width: 470px;
}

.footer-links h2 {
  margin: 0 0 14px;
  color: var(--amber-100);
  font-size: 18px;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.footer-link-grid a {
  color: var(--gray-200);
}

.footer-link-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1280px;
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gray-200);
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .site-search {
    min-width: 240px;
  }

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

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

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

  .feature-strip,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: auto;
    min-height: 76px;
    padding: 12px 16px;
    flex-wrap: wrap;
  }

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

  .site-search {
    order: 3;
    width: 100%;
  }

  .home-hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 46px 18px 86px;
  }

  .hero-slide {
    gap: 28px;
  }

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

  .hero-copy p {
    font-size: 17px;
  }

  .hero-controls {
    bottom: 22px;
  }

  .feature-strip,
  .movie-grid,
  .category-grid,
  .related-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: 0;
    padding-top: 24px;
  }

  .section-head {
    display: block;
  }

  .section-more {
    margin-top: 18px;
  }

  .content-section,
  .warm-section {
    padding: 52px 18px;
  }

  .detail-inner {
    gap: 26px;
  }

  .detail-poster {
    max-width: 300px;
    margin: 0 auto;
  }

  .detail-content,
  .player-section {
    padding-left: 18px;
    padding-right: 18px;
  }

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

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