:root {
  --earth-950: #2b1b14;
  --earth-900: #573729;
  --earth-800: #6a4130;
  --earth-700: #814e34;
  --earth-600: #9b5f3c;
  --bronze-700: #7e5d41;
  --bronze-600: #98724c;
  --bronze-500: #a68558;
  --bronze-400: #b89d75;
  --bronze-300: #d0bd9f;
  --bronze-100: #f1ede3;
  --stone-50: #f8f7f4;
  --stone-100: #efede6;
  --stone-200: #ddd9cc;
  --stone-300: #c7c0ad;
  --ink: #221713;
  --white: #ffffff;
  --shadow-soft: 0 18px 60px rgba(43, 27, 20, 0.16);
  --shadow-card: 0 12px 30px rgba(43, 27, 20, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, var(--stone-50), var(--bronze-100));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
}

body.locked {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: var(--bronze-100);
  background: rgba(87, 55, 41, 0.96);
  border-bottom: 1px solid rgba(241, 237, 227, 0.12);
  box-shadow: 0 10px 30px rgba(43, 27, 20, 0.2);
  backdrop-filter: blur(18px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--earth-950);
  background: linear-gradient(135deg, var(--bronze-300), var(--bronze-500));
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 8px 20px rgba(0, 0, 0, 0.18);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a,
.mobile-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(241, 237, 227, 0.88);
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 12px;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-slider {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: var(--earth-950);
}

.hero-slide {
  display: none;
  min-height: 640px;
  position: relative;
  isolation: isolate;
}

.hero-slide.active {
  display: block;
  animation: heroFade 0.75s ease both;
}

@keyframes heroFade {
  from {
    opacity: 0.35;
    transform: scale(1.01);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) saturate(1.05);
  transform: scale(1.08);
  opacity: 0.44;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 20%, rgba(208, 189, 159, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(43, 27, 20, 0.96) 0%, rgba(87, 55, 41, 0.78) 45%, rgba(0, 0, 0, 0.48) 100%),
    linear-gradient(0deg, rgba(43, 27, 20, 0.9), transparent 55%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 64px;
  min-height: 640px;
  padding-top: 50px;
  padding-bottom: 50px;
}

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

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

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--earth-950);
  background: rgba(241, 237, 227, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.card-tags span {
  color: var(--bronze-700);
  background: var(--bronze-100);
  border-color: var(--stone-200);
}

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

.primary-button,
.ghost-button,
.home-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button,
.home-search button {
  color: var(--earth-950);
  background: linear-gradient(135deg, var(--bronze-300), var(--bronze-500));
  box-shadow: 0 14px 30px rgba(166, 133, 88, 0.35);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.primary-button:hover,
.ghost-button:hover,
.home-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(43, 27, 20, 0.22);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

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

.hero-controls button {
  width: 42px;
  height: 6px;
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 99px;
  cursor: pointer;
}

.hero-controls button.active {
  background: var(--bronze-300);
}

.search-band,
.section-block {
  padding: 52px 0;
}

.search-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: 28px;
  margin-top: -44px;
  margin-bottom: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(221, 217, 204, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 10;
}

.search-band h2,
.section-header h2,
.detail-article h2,
.detail-side-card h2 {
  margin: 0;
  color: var(--earth-900);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.search-band p {
  margin: 8px 0 0;
  color: var(--bronze-700);
}

.home-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: var(--stone-100);
  border: 1px solid var(--stone-200);
  border-radius: 999px;
}

.home-search input,
.filter-panel input,
.filter-panel select,
.search-page-panel input,
.search-page-panel select {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  color: var(--earth-950);
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: 999px;
  outline: none;
}

.home-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus,
.search-page-panel input:focus,
.search-page-panel select:focus {
  border-color: var(--bronze-500);
  box-shadow: 0 0 0 4px rgba(166, 133, 88, 0.16);
}

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

.section-link {
  color: var(--earth-700);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(221, 217, 204, 0.88);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 22px rgba(43, 27, 20, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(166, 133, 88, 0.45);
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: var(--earth-900);
}

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

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

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  color: var(--earth-950);
  background: rgba(241, 237, 227, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

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

.movie-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--bronze-700);
  font-size: 12px;
  font-weight: 800;
}

.movie-meta-line a {
  color: var(--earth-700);
}

.movie-card h3 {
  margin: 10px 0 8px;
  color: var(--earth-950);
  font-size: 18px;
  line-height: 1.28;
}

.movie-card p {
  display: -webkit-box;
  min-height: 66px;
  margin: 0;
  overflow: hidden;
  color: var(--bronze-700);
  font-size: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.category-band {
  padding: 62px 0;
  color: var(--bronze-100);
  background:
    radial-gradient(circle at 20% 20%, rgba(208, 189, 159, 0.16), transparent 30%),
    linear-gradient(135deg, var(--earth-900), var(--earth-700));
}

.category-band .section-header h2,
.category-band .eyebrow {
  color: var(--bronze-100);
}

.category-grid,
.category-overview-grid,
.top-rank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.category-card,
.category-overview-card,
.top-rank-card,
.detail-side-card,
.detail-article {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(221, 217, 204, 0.82);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.category-card {
  display: grid;
  gap: 8px;
  min-height: 172px;
  padding: 22px;
  color: var(--earth-950);
  background: linear-gradient(145deg, var(--bronze-100), var(--white));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.category-overview-card:hover,
.top-rank-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(43, 27, 20, 0.18);
}

.category-card span,
.category-overview-main span {
  color: var(--earth-700);
  font-size: 22px;
  font-weight: 800;
}

.category-card strong,
.category-overview-main strong {
  color: var(--bronze-600);
  font-size: 34px;
  line-height: 1;
}

.category-card em,
.category-overview-main p {
  color: var(--bronze-700);
  font-style: normal;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.full-rank-list {
  margin-top: 28px;
}

.rank-item {
  display: grid;
  grid-template-columns: auto 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--stone-200);
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.rank-number {
  width: 36px;
  color: var(--bronze-600);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  width: 58px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-item strong,
.rank-item em {
  display: block;
}

.rank-item strong {
  overflow: hidden;
  color: var(--earth-950);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-item em {
  color: var(--bronze-700);
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  padding: 76px 0 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(208, 189, 159, 0.26), transparent 30%),
    linear-gradient(135deg, var(--earth-950), var(--earth-700));
}

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

.category-overview-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-main {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.category-samples {
  display: grid;
  gap: 8px;
  padding: 0 24px 24px;
}

.category-samples a {
  overflow: hidden;
  color: var(--bronze-700);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-panel,
.search-page-panel {
  display: grid;
  grid-template-columns: 1fr 190px 170px;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 24px rgba(43, 27, 20, 0.08);
}

.search-page-panel {
  grid-template-columns: 1fr 190px;
}

.search-count {
  margin: -8px 0 22px;
  color: var(--bronze-700);
  font-weight: 700;
}

.no-js-samples.enhanced {
  display: none;
}

.empty-state {
  padding: 40px 20px;
  color: var(--bronze-700);
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
}

.top-rank-card {
  overflow: hidden;
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-rank-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 12px;
  color: var(--earth-950);
  background: var(--bronze-300);
  border-radius: 999px;
  font-weight: 900;
}

.top-rank-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

.top-rank-card h2 {
  margin: 16px 0 8px;
  color: var(--earth-950);
}

.top-rank-card p {
  margin: 0;
  color: var(--bronze-700);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--earth-950);
  isolation: isolate;
}

.detail-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.05);
  transform: scale(1.08);
  opacity: 0.38;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(43, 27, 20, 0.95), rgba(87, 55, 41, 0.76), rgba(0, 0, 0, 0.48));
}

.detail-hero-content {
  padding: 42px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--bronze-300);
}

.detail-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-one-line {
  max-width: 800px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.detail-facts span {
  padding: 14px;
  color: var(--bronze-100);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
}

.detail-facts strong {
  display: block;
  color: var(--bronze-300);
  font-size: 12px;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.player-box video,
.player-cover,
.player-cover img {
  width: 100%;
  height: 100%;
}

.player-box video {
  display: block;
  object-fit: contain;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.52;
}

.player-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72));
}

.player-cover strong,
.play-icon {
  position: relative;
  z-index: 1;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  padding-left: 6px;
  color: var(--earth-950);
  background: linear-gradient(135deg, var(--bronze-300), var(--bronze-500));
  border-radius: 999px;
  font-size: 36px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.player-cover strong {
  margin-top: 120px;
  font-size: 18px;
}

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

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 7px 12px;
  color: var(--bronze-100);
  background: rgba(0, 0, 0, 0.62);
  border-radius: 999px;
  font-size: 13px;
}

.player-status:empty {
  display: none;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  padding: 10px 0 40px;
}

.detail-article,
.detail-side-card {
  padding: 28px;
}

.detail-article h2,
.detail-side-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
}

.detail-article p {
  margin: 0 0 26px;
  color: var(--bronze-700);
  font-size: 17px;
  white-space: pre-line;
}

.detail-side-card dl {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.detail-side-card dt {
  color: var(--bronze-700);
  font-weight: 800;
}

.detail-side-card dd {
  margin: 0;
  color: var(--earth-950);
}

.site-footer {
  margin-top: 36px;
  color: var(--stone-200);
  background: var(--earth-950);
}

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

.site-footer p {
  max-width: 520px;
  color: rgba(221, 217, 204, 0.8);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--bronze-300);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--bronze-300);
}

.footer-bottom {
  padding: 18px 20px;
  color: rgba(221, 217, 204, 0.72);
  text-align: center;
  border-top: 1px solid rgba(221, 217, 204, 0.12);
}

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

  .mobile-menu-button {
    display: block;
  }

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

  .hero-poster {
    width: min(320px, 82vw);
    min-height: auto;
    margin: 0 auto;
    transform: none;
  }

  .hero-poster img {
    min-height: auto;
    aspect-ratio: 2 / 3;
  }

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .hero-slider,
  .hero-slide,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 70px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 40px;
  }

  .search-band {
    margin-top: -28px;
    padding: 22px;
  }

  .home-search {
    display: grid;
    border-radius: 22px;
  }

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

  .section-header {
    display: grid;
    align-items: start;
  }

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

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

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

  .movie-card p {
    min-height: 58px;
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

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

  .rank-list,
  .category-grid,
  .category-overview-grid,
  .top-rank-grid {
    grid-template-columns: 1fr;
  }

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

  .player-box {
    border-radius: 18px;
  }

  .play-icon {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }

  .detail-article,
  .detail-side-card {
    padding: 20px;
  }

  .detail-side-card dl {
    grid-template-columns: 1fr;
  }
}
