:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --bg-card: #111827;
  --bg-card-hover: #1e293b;
  --line: rgba(148, 163, 184, 0.22);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --brand: #f97316;
  --brand-dark: #dc2626;
  --brand-soft: rgba(249, 115, 22, 0.15);
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 0%, rgba(249, 115, 22, 0.14), transparent 30%), var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

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

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.3);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.nav-link {
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(148, 163, 184, 0.15);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.86);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 260px;
  padding: 10px 12px;
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  cursor: pointer;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--text);
  background: rgba(148, 163, 184, 0.13);
  cursor: pointer;
}

.category-strip {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.category-strip-inner {
  display: flex;
  gap: 10px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0;
  overflow-x: auto;
}

.category-strip a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--muted);
  background: rgba(148, 163, 184, 0.12);
  font-size: 13px;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.category-strip a:hover {
  color: #ffffff;
  background: var(--brand);
}

.mobile-panel {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.mobile-panel.is-open {
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(148, 163, 184, 0.1);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #000000;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.18)), linear-gradient(0deg, var(--bg), transparent 36%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - 1240px) / 2));
  width: min(680px, calc(100% - 88px));
  transform: translateY(-50%);
}

.hero-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: 5px 12px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 16px 0 16px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.detail-info p {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
}

.hero-meta,
.movie-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.hero-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(15, 23, 42, 0.76);
  font-size: 13px;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 22px;
}

.hero-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 5px 10px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.14);
  font-size: 12px;
  font-weight: 700;
}

.primary-button,
.text-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.primary-button {
  padding: 13px 24px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 32px rgba(249, 115, 22, 0.24);
}

.primary-button:hover,
.text-button:hover,
.section-more:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.46);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

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

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

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

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

.section-heading h2,
.rank-panel-head h2,
.side-card h2,
.detail-text-card h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--subtle);
}

.section-more,
.text-button {
  padding: 9px 14px;
  background: rgba(249, 115, 22, 0.16);
  color: #fed7aa;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.58);
  background: linear-gradient(180deg, rgba(51, 65, 85, 0.98), rgba(15, 23, 42, 0.98));
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000000;
}

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

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

.play-badge,
.score-badge {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
}

.play-badge {
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  background: rgba(249, 115, 22, 0.9);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.32);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-badge {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.score-badge {
  right: 10px;
  top: 10px;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  background: rgba(2, 6, 23, 0.76);
  color: #facc15;
  font-size: 13px;
}

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

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

.movie-card-body h3 a:hover,
.full-rank-main h2 a:hover,
.category-overview-body h2 a:hover {
  color: #fb923c;
}

.movie-card-body p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--subtle);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.movie-card-small .movie-card-body p {
  min-height: 44px;
  font-size: 13px;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.rank-panel,
.side-card,
.detail-text-card,
.filter-panel,
.static-content .detail-text-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
}

.rank-panel {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 20px;
}

.rank-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.rank-panel-head a {
  color: #fed7aa;
  font-size: 14px;
  font-weight: 700;
}

.rank-row {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.rank-row:hover {
  background: rgba(148, 163, 184, 0.11);
}

.rank-row img {
  width: 92px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-row-main {
  display: grid;
  align-content: center;
  min-width: 0;
}

.rank-row-main strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row-main em {
  color: var(--subtle);
  font-size: 12px;
  font-style: normal;
}

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

.category-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.24), rgba(30, 41, 59, 0.9));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.55);
}

.category-name {
  display: block;
  color: #fed7aa;
  font-weight: 800;
}

.category-card strong {
  display: block;
  margin: 8px 0;
  font-size: 34px;
}

.category-card em {
  color: var(--muted);
  font-style: normal;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.78), rgba(220, 38, 38, 0.82)), var(--bg-soft);
}

.compact-hero {
  padding: 74px max(24px, calc((100vw - 1240px) / 2));
}

.category-hero,
.rank-hero,
.search-hero {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.76), rgba(15, 23, 42, 0.95)), radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.14), transparent 32%), var(--bg-soft);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(15, 23, 42, 0.88);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.category-cover-stack img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 12px;
  object-fit: cover;
}

.category-overview-body h2 {
  margin: 0 0 8px;
}

.category-overview-body p {
  margin: 0 0 14px;
  color: var(--subtle);
}

.category-count {
  margin-bottom: 16px;
  color: #fed7aa;
  font-weight: 800;
}

.filter-panel {
  margin-bottom: 20px;
  padding: 18px;
}

.filter-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 12px;
}

.filter-topline input,
.filter-topline select {
  width: 100%;
  padding: 12px 14px;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.filter-chip {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  background: rgba(148, 163, 184, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.filter-chip:hover,
.filter-chip.active {
  color: #ffffff;
  background: var(--brand);
}

.result-count {
  margin: 0 0 18px;
  color: #fed7aa;
  font-weight: 800;
}

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

.full-rank-row {
  display: grid;
  grid-template-columns: 58px 138px minmax(0, 1fr) 86px;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(15, 23, 42, 0.9);
}

.full-rank-row.top-rank {
  border-color: rgba(249, 115, 22, 0.58);
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.14), rgba(15, 23, 42, 0.92));
}

.rank-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(148, 163, 184, 0.12);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.top-rank .rank-number {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.rank-cover img {
  width: 138px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
}

.full-rank-main h2 {
  margin: 0 0 6px;
  font-size: 19px;
}

.full-rank-main p {
  margin: 0 0 10px;
  color: var(--subtle);
}

.rank-score {
  color: #facc15;
  font-size: 30px;
  font-weight: 900;
  text-align: right;
}

.detail-hero {
  min-height: 520px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) saturate(1.05);
  transform: scale(1.06);
}

.detail-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.68)), linear-gradient(0deg, var(--bg), transparent 38%);
}

.detail-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  width: min(1240px, calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto;
  padding: 48px 0;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--subtle);
  font-size: 14px;
}

.breadcrumb a {
  color: #fed7aa;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  cursor: pointer;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), rgba(0, 0, 0, 0.36));
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.24s ease;
}

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

.player-play-button {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  padding-left: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 20px 55px rgba(249, 115, 22, 0.4);
  font-size: 34px;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease;
}

.player-play-button:hover {
  transform: scale(1.08);
}

.detail-text-card {
  margin-top: 22px;
  padding: 24px;
}

.detail-text-card h2 {
  margin: 0 0 12px;
}

.detail-text-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.detail-side {
  display: grid;
  gap: 20px;
}

.side-card {
  padding: 20px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 18px 0 0;
}

.side-card dt {
  color: var(--subtle);
}

.side-card dd {
  margin: 0;
  color: var(--text);
}

.side-card dd a {
  color: #fed7aa;
}

.side-recommend-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.static-content {
  max-width: 860px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.footer-logo {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
}

.footer-brand p,
.footer-links a {
  color: var(--subtle);
}

.footer-links h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

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

.footer-link-grid a:hover {
  color: #fed7aa;
}

.is-hidden-by-filter {
  display: none !important;
}

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

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

  .two-column-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero-arrow {
    display: none;
  }

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

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

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

  .category-overview-card {
    grid-template-columns: 1fr;
  }

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

  .full-rank-row {
    grid-template-columns: 42px 94px minmax(0, 1fr);
  }

  .rank-cover img {
    width: 94px;
    height: 70px;
  }

  .rank-score {
    grid-column: 2 / -1;
    text-align: left;
    font-size: 20px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

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

  .brand-text {
    font-size: 19px;
  }

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

  .hero p,
  .page-hero p,
  .detail-info p {
    font-size: 16px;
  }

  .movie-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-body p {
    min-height: auto;
  }

  .compact-hero {
    padding: 54px 18px;
  }

  .full-rank-main p {
    display: none;
  }

  .player-play-button {
    width: 64px;
    height: 64px;
    font-size: 27px;
  }
}
