:root {
  --primary-50: #faf5f0;
  --primary-100: #f4e8d9;
  --primary-400: #cc9660;
  --primary-500: #b8794a;
  --primary-600: #a05f3d;
  --primary-700: #854c34;
  --primary-900: #5a3629;
  --secondary-50: #f0f5f0;
  --secondary-100: #dbe8db;
  --secondary-700: #2f4d35;
  --secondary-900: #223426;
  --accent-50: #fef8ee;
  --accent-100: #fcefd7;
  --accent-500: #ea7e20;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 12px 28px rgba(17, 24, 39, 0.12);
  --shadow-lg: 0 22px 60px rgba(17, 24, 39, 0.18);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

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

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--container), calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-700);
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-700), var(--accent-500));
  box-shadow: 0 10px 24px rgba(160, 95, 61, 0.28);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.logo-text em {
  margin-top: 4px;
  color: var(--gray-500);
  font-style: normal;
  font-size: 12px;
}

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

.nav-link {
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease;
}

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

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

.top-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 300px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search:focus-within {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(184, 121, 74, 0.14);
}

.top-search input,
.mobile-search input,
.filter-bar input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gray-800);
}

.top-search input {
  padding: 11px 14px 11px 18px;
  font-size: 14px;
}

.top-search button,
.mobile-search button {
  border: 0;
  background: var(--primary-600);
  color: var(--white);
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 650;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--primary-50);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary-700);
  border-radius: 999px;
}

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

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

.mobile-link {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 650;
}

.mobile-link.active,
.mobile-link:hover {
  background: var(--primary-50);
  color: var(--primary-700);
}

.mobile-search {
  display: flex;
  margin-top: 10px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.mobile-search input {
  padding: 11px 14px;
}

.hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, var(--primary-900), var(--secondary-900));
  overflow: hidden;
}

.hero-stage,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.16));
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100% - var(--container)) / 2));
  right: max(32px, calc((100% - var(--container)) / 2));
  bottom: 70px;
  max-width: 760px;
  color: var(--white);
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-500);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 12px 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-content p {
  margin: 0 0 22px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span,
.detail-tags span {
  padding: 7px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.section-more,
.filter-link,
.ranking-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  min-height: 46px;
  padding: 0 28px;
  color: var(--white);
  background: var(--primary-600);
  box-shadow: 0 14px 30px rgba(160, 95, 61, 0.32);
}

.primary-button:hover,
.ranking-action:hover {
  transform: translateY(-2px);
  background: var(--primary-700);
}

.ghost-button {
  min-height: 46px;
  padding: 0 26px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.hero-dots {
  position: absolute;
  right: max(32px, calc((100% - var(--container)) / 2));
  bottom: 42px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

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

.hero-dot.active {
  width: 34px;
  background: var(--white);
}

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

.tint-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - var(--container)) / 2));
  padding-right: max(16px, calc((100% - var(--container)) / 2));
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
}

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

.section-heading h2 {
  margin: 8px 0 0;
  color: var(--gray-900);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.section-heading p {
  margin: 10px 0 0;
  max-width: 740px;
  color: var(--gray-600);
}

.section-more,
.filter-link {
  min-height: 40px;
  padding: 0 18px;
  color: var(--primary-700);
  background: var(--white);
  border: 1px solid var(--primary-100);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-100);
  box-shadow: var(--shadow-md);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
}

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

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

.poster-shadow {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent);
}

.play-chip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(160, 95, 61, 0.9);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  min-width: 38px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent-500);
  font-weight: 900;
}

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

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

.movie-meta-line span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: var(--gray-300);
}

.movie-card h3 {
  margin: 8px 0 8px;
  color: var(--gray-900);
  font-size: 19px;
  line-height: 1.32;
}

.movie-card h3 a:hover,
.ranking-info h3 a:hover,
.prev-next a:hover {
  color: var(--primary-700);
}

.movie-card p {
  margin: 0 0 14px;
  color: var(--gray-600);
  font-size: 14px;
}

.tag-row span {
  padding: 5px 9px;
  color: var(--primary-700);
  background: var(--primary-50);
}

.movie-card-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
}

.movie-card-row .poster-link {
  aspect-ratio: auto;
  min-height: 210px;
}

.ranking-compact,
.ranking-list {
  display: grid;
  gap: 14px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 62px 88px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(244, 232, 217, 0.95);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.ranking-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-700), var(--accent-500));
  font-size: 18px;
  font-weight: 900;
}

.ranking-poster {
  display: block;
  width: 88px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 14px;
  background: var(--primary-100);
}

.ranking-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-info h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.ranking-info p {
  margin: 0 0 8px;
  color: var(--gray-600);
}

.ranking-action {
  min-height: 40px;
  padding: 0 18px;
  color: var(--white);
  background: var(--primary-600);
}

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

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

.category-tile {
  display: block;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.category-covers {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 6px;
  height: 154px;
  padding: 8px;
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
}

.category-covers img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.category-covers img:first-child {
  grid-row: span 2;
}

.category-copy {
  padding: 18px;
}

.category-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.category-copy span {
  color: var(--gray-600);
  font-size: 14px;
}

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

.category-list-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--primary-100);
  box-shadow: var(--shadow-sm);
}

.category-list-link span {
  color: var(--primary-700);
  font-weight: 900;
}

.category-list-link em {
  color: var(--gray-600);
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-900), var(--secondary-900));
}

.compact-hero {
  padding: 78px 0;
}

.page-hero-inner,
.detail-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

.filter-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-bar input {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.filter-bar input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(184, 121, 74, 0.14);
}

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

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  filter: blur(12px);
  transform: scale(1.05);
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90, 54, 41, 0.92), rgba(34, 52, 38, 0.88));
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-top: 34px;
}

.detail-cover {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--primary-100);
}

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

.detail-copy h1 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
}

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

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 26px;
}

.detail-meta div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.11);
}

.detail-meta dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.detail-meta dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 750;
}

.player-section {
  padding-top: 54px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow-lg);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.25s ease;
}

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

.player-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.big-play {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(160, 95, 61, 0.92);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  font-size: 34px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.big-play:hover {
  transform: scale(1.07);
  background: var(--accent-500);
}

.detail-text-section {
  padding-top: 0;
}

.detail-text-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.story-panel {
  padding: 30px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.story-panel h2 {
  margin: 8px 0 12px;
  font-size: 26px;
}

.story-panel p {
  margin: 0;
  color: var(--gray-700);
}

.accent-panel {
  background: linear-gradient(135deg, var(--accent-50), var(--primary-50));
  border-color: var(--accent-100);
}

.prev-next {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
}

.prev-next a {
  flex: 1;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--primary-100);
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}

.site-footer {
  background: linear-gradient(to bottom, var(--gray-50), var(--gray-100));
  border-top: 1px solid var(--gray-200);
}

.footer-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

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

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

.footer-links a {
  color: var(--gray-600);
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--primary-700);
}

.copyright {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 30px;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
  text-align: center;
  font-size: 14px;
}

.is-filtered-out {
  display: none !important;
}

@media (max-width: 1120px) {
  .four-cols,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top-search {
    width: 240px;
  }
}

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

  .menu-button {
    display: block;
  }

  .hero {
    height: 520px;
  }

  .hero-content {
    bottom: 62px;
  }

  .hero-dots {
    left: 32px;
    right: auto;
  }

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

  .section-heading,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .detail-cover {
    max-width: 260px;
  }

  .detail-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-row {
    grid-template-columns: 52px 76px minmax(0, 1fr);
  }

  .ranking-action {
    grid-column: 2 / 4;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: 64px;
  }

  .logo-text strong {
    font-size: 18px;
  }

  .hero {
    height: 500px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 76px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-dots {
    left: 20px;
    bottom: 34px;
  }

  .content-section,
  .page-hero-inner,
  .detail-inner,
  .footer-inner,
  .copyright {
    width: min(100% - 24px, var(--container));
  }

  .content-section,
  .tint-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .four-cols,
  .three-cols,
  .two-cols,
  .category-grid,
  .category-grid.large,
  .category-link-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-row {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .movie-card-row .poster-link {
    min-height: 176px;
  }

  .filter-bar,
  .prev-next {
    flex-direction: column;
    align-items: stretch;
  }

  .ranking-row {
    grid-template-columns: 46px 68px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .ranking-info p {
    display: none;
  }

  .ranking-action {
    grid-column: 1 / 4;
  }

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

  .story-panel {
    padding: 22px;
  }

  .big-play {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
