:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --white: #ffffff;
  --black: #000000;
  --shadow-soft: 0 18px 45px rgba(41, 37, 36, 0.12);
  --shadow-card: 0 12px 28px rgba(41, 37, 36, 0.10);
  --radius-lg: 18px;
  --radius-xl: 24px;
}

* {
  box-sizing: border-box;
}

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(--stone-800);
  background: linear-gradient(180deg, var(--amber-50), var(--stone-50) 36%, var(--white));
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(250, 250, 249, 0.96), rgba(255, 251, 235, 0.96));
  border-bottom: 1px solid rgba(231, 229, 228, 0.7);
  box-shadow: 0 8px 28px rgba(41, 37, 36, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-600), var(--stone-700));
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.28);
  font-size: 17px;
  padding-left: 2px;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: var(--stone-600);
  font-size: 12px;
  margin-top: 3px;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--stone-700);
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-700);
  background: var(--amber-100);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.22);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--stone-200);
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--stone-700);
  font-weight: 600;
}

.mobile-link:hover {
  background: var(--amber-100);
  color: var(--amber-700);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--stone-900);
}

.hero-track,
.hero-slide,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.16)), linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto;
  padding: 80px 0 74px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-tags,
.detail-tags,
.tag-cloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-tags span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(68, 64, 60, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span:first-child,
.detail-tags span:first-child {
  background: var(--amber-500);
}

.hero h1 {
  width: min(720px, 100%);
  margin: 20px 0 12px;
  color: var(--white);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero p {
  width: min(690px, 100%);
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.75;
}

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

.primary-button,
.outline-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: var(--amber-500);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.3);
}

.primary-button:hover {
  background: var(--amber-600);
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(245, 158, 11, 0.36);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

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

.outline-button {
  color: var(--amber-700);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.4), var(--shadow-card);
}

.outline-button:hover {
  color: var(--white);
  background: var(--amber-500);
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  pointer-events: none;
}

.hero-controls button {
  pointer-events: auto;
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
}

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

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

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

.warm-section {
  width: 100%;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.7), rgba(255, 255, 255, 0.88));
}

.slim-section {
  padding-top: 20px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section-heading span,
.page-hero span {
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  color: var(--stone-800);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--stone-600);
  font-size: 16px;
  line-height: 1.8;
}

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

.compact-grid,
.rank-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
  min-width: 0;
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: var(--stone-200);
  box-shadow: var(--shadow-card);
}

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

.poster-link:hover img {
  transform: scale(1.08);
}

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

.poster-link:hover .poster-shade,
.poster-link:hover .poster-line {
  opacity: 1;
}

.region-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  padding: 5px 9px;
  border-radius: 9px;
  color: var(--white);
  background: var(--amber-500);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-badge {
  left: 10px;
  right: auto;
  min-width: 32px;
  text-align: center;
  background: var(--stone-900);
}

.poster-line {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  opacity: 0;
  color: var(--white);
  font-size: 12px;
  line-height: 1.5;
  transition: opacity 0.25s ease;
}

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

.movie-card h3 {
  margin: 0 0 6px;
  color: var(--stone-800);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 5px;
  color: var(--stone-500);
  font-size: 12px;
}

.movie-meta span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-genre {
  margin: 0;
  color: var(--stone-500);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  background: var(--stone-900);
}

.category-tile img,
.category-tile span {
  position: absolute;
  inset: 0;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile span {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
}

.category-tile strong,
.category-tile small {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  color: var(--white);
}

.category-tile strong {
  bottom: 58px;
  font-size: 24px;
}

.category-tile small {
  bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.center-actions {
  justify-content: center;
  margin-top: 34px;
}

.page-hero {
  padding: 76px max(16px, calc((100vw - 1180px) / 2));
  background: radial-gradient(circle at 18% 12%, rgba(245, 158, 11, 0.22), transparent 36%), linear-gradient(135deg, var(--amber-50), var(--stone-100));
  border-bottom: 1px solid var(--stone-200);
}

.page-hero > div {
  display: grid;
  gap: 12px;
}

.page-hero .primary-button {
  width: max-content;
  margin-top: 8px;
}

.small-hero {
  padding-top: 62px;
  padding-bottom: 62px;
}

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

.category-panel-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.category-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 18px;
}

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

.category-cover span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  font-weight: 900;
}

.category-panel-body h2 {
  margin: 4px 0 10px;
  font-size: 24px;
}

.category-panel-body p {
  margin: 0 0 18px;
  color: var(--stone-600);
  line-height: 1.7;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-links a {
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--stone-700);
  background: var(--stone-100);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-links a:hover {
  color: var(--amber-700);
  background: var(--amber-100);
}

.filter-panel {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.search-box {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.search-box span,
.filter-row > span {
  color: var(--stone-700);
  font-size: 14px;
  font-weight: 900;
}

.search-box input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--stone-200);
  border-radius: 16px;
  outline: 0;
  color: var(--stone-800);
  background: var(--white);
}

.search-box input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.filter-rows {
  display: grid;
  gap: 14px;
}

.filter-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

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

.filter-pill {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--stone-200);
  border-radius: 999px;
  color: var(--stone-700);
  background: var(--white);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.empty-state {
  display: none;
  margin: 20px 0 0;
  padding: 16px;
  border-radius: 16px;
  color: var(--stone-600);
  background: var(--stone-100);
  text-align: center;
}

.empty-state.show {
  display: block;
}

.detail-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--stone-500);
  font-size: 14px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 340px;
  gap: 30px;
  align-items: start;
}

.player-card,
.movie-detail-card,
.side-card,
.side-cover {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.player-card {
  overflow: hidden;
  background: var(--stone-900);
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}

.video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--black);
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-shell.playing .player-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-ring {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-500);
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.38);
  font-size: 30px;
}

.player-overlay strong {
  font-size: 18px;
}

.movie-detail-card {
  margin-top: 24px;
  padding: 30px;
}

.movie-detail-card h1 {
  margin: 16px 0 12px;
  color: var(--stone-800);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lead-text {
  margin: 0 0 24px;
  color: var(--amber-700);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
  padding: 16px;
  border-radius: 18px;
  background: var(--stone-50);
}

.detail-meta div {
  min-width: 0;
}

.detail-meta dt {
  margin-bottom: 5px;
  color: var(--stone-500);
  font-size: 12px;
  font-weight: 800;
}

.detail-meta dd {
  margin: 0;
  color: var(--stone-800);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.text-block {
  margin-top: 28px;
}

.text-block h2,
.side-card h2 {
  margin: 0 0 12px;
  color: var(--stone-800);
  font-size: 22px;
}

.text-block p {
  margin: 0;
  color: var(--stone-700);
  font-size: 16px;
  line-height: 1.9;
}

.tag-cloud {
  margin-top: 28px;
}

.tag-cloud span {
  color: var(--stone-700);
  background: var(--stone-100);
}

.side-cover {
  overflow: hidden;
  margin-bottom: 20px;
}

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

.side-card {
  position: sticky;
  top: 94px;
  padding: 22px;
}

.side-links {
  display: grid;
  gap: 12px;
}

.side-links a,
.rank-line {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  background: var(--stone-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.side-links a:hover,
.rank-line:hover {
  background: var(--amber-100);
  transform: translateY(-1px);
}

.side-links span,
.rank-line strong {
  color: var(--stone-800);
  font-weight: 800;
  line-height: 1.42;
}

.side-links small,
.rank-line small {
  color: var(--stone-500);
}

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

.rank-line {
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
}

.rank-line span {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--stone-900);
  font-weight: 900;
}

.rank-line strong,
.rank-line small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-footer {
  margin-top: 60px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, var(--stone-900), var(--stone-700));
}

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

.footer-inner strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 20px;
}

.footer-inner p {
  max-width: 620px;
  margin: 0;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover {
  color: var(--amber-100);
}

@media (max-width: 1100px) {
  .movie-grid,
  .compact-grid,
  .rank-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .detail-aside {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
  }

  .side-card {
    position: static;
  }
}

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

  .menu-button {
    display: block;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .hero,
  .hero-content {
    min-height: 500px;
  }

  .hero-controls {
    justify-content: center;
  }

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

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

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

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

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

  .side-cover {
    display: none;
  }

  .footer-inner {
    display: grid;
  }
}

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

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 480px;
  }

  .hero-content {
    padding-bottom: 92px;
  }

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

  .content-section {
    padding: 46px 0;
  }

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

  .category-panel-card {
    grid-template-columns: 110px minmax(0, 1fr);
    padding: 12px;
  }

  .category-panel-body h2 {
    font-size: 19px;
  }

  .mini-links a:nth-child(n+3) {
    display: none;
  }

  .movie-detail-card {
    padding: 22px;
  }

  .play-ring {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
}
