* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: #111827;
  background: #f8fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 10%, rgba(244, 63, 94, 0.16), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(236, 72, 153, 0.14), transparent 28rem),
    linear-gradient(180deg, #fff7f9 0%, #f8fafc 48%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.86);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
}

.nav-inner {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  box-shadow: 0 12px 24px rgba(244, 63, 94, 0.25);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08) rotate(4deg);
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: #374151;
}

.desktop-links a,
.mobile-menu a,
.footer-links a {
  transition: color 0.2s ease;
}

.desktop-links a:hover,
.mobile-menu a:hover,
.footer-links a:hover {
  color: #f43f5e;
}

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

.nav-search input,
.mobile-menu input,
.filter-panel input,
.filter-panel select {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  outline: none;
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
  width: 210px;
  padding: 10px 16px;
}

.nav-search input:focus,
.mobile-menu input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #fb7185;
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.nav-search button,
.mobile-menu button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  font-weight: 800;
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff1f2;
  color: #e11d48;
  font-size: 22px;
}

.mobile-menu {
  display: none;
  padding: 16px 24px 22px;
  border-top: 1px solid #f3f4f6;
  background: #fff;
}

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

.mobile-menu form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.mobile-menu input {
  min-width: 0;
  padding: 11px 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  background: linear-gradient(135deg, #fff1f2 0%, #fdf2f8 45%, #eff6ff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(244, 63, 94, 0.24), transparent 24rem),
    radial-gradient(circle at 80% 14%, rgba(59, 130, 246, 0.16), transparent 28rem),
    radial-gradient(circle at 50% 95%, rgba(236, 72, 153, 0.18), transparent 30rem);
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  min-height: 660px;
  margin: 0 auto;
  padding: 72px 24px 86px;
  display: grid;
  align-items: center;
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  grid-area: 1 / 1;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}

.hero-kicker,
.kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 13px;
  color: #e11d48;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(251, 113, 133, 0.28);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 22px 0 18px;
  max-width: 760px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 950;
  color: #111827;
}

.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: #4b5563;
  font-size: 19px;
}

.hero-tags,
.detail-meta,
.movie-meta-line,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.detail-meta span,
.tag-row span,
.detail-tags span {
  border-radius: 999px;
  padding: 7px 12px;
  color: #be123c;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(251, 113, 133, 0.22);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

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

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  box-shadow: 0 16px 28px rgba(244, 63, 94, 0.24);
}

.ghost-button {
  color: #be123c;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(251, 113, 133, 0.28);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(244, 63, 94, 0.22);
}

.hero-cover {
  position: relative;
  display: block;
  min-height: 430px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 63, 94, 0.32), rgba(236, 72, 153, 0.18)),
    #111827;
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.24);
  transform: rotate(1.5deg);
}

.hero-cover::after,
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.hero-cover img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.hero-cover:hover img {
  transform: scale(1.07);
}

.hero-cover span,
.score-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  min-width: 54px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #f43f5e);
  font-weight: 950;
  text-align: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

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

.hero-controls > button,
.hero-dots button {
  border: 0;
  color: #e11d48;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 26px;
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  opacity: 0.55;
  transition: width 0.2s ease, opacity 0.2s ease;
}

.hero-dots button[aria-current="true"] {
  width: 28px;
  opacity: 1;
  background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.quick-entry {
  max-width: 1180px;
  margin: -34px auto 0;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0 24px;
}

.quick-entry a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  border-radius: 22px;
  color: #be123c;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(251, 113, 133, 0.2);
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, color 0.2s ease;
}

.quick-entry a:hover {
  transform: translateY(-4px);
  color: #e11d48;
}

.content-section,
.page-shell .content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.first-section {
  padding-top: 36px;
}

.tinted-section {
  max-width: none;
  margin: 0;
  padding-inline: max(24px, calc((100vw - 1280px) / 2 + 24px));
  background: linear-gradient(135deg, rgba(255, 241, 242, 0.95), rgba(239, 246, 255, 0.72));
}

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.side-panel h2,
.detail-article h2,
.detail-side h2 {
  margin: 12px 0 0;
  color: #111827;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.section-heading p,
.page-hero p,
.side-panel p {
  max-width: 640px;
  margin: 12px 0 0;
  color: #6b7280;
  font-size: 17px;
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e11d48;
  font-weight: 900;
}

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

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

.movie-card,
.category-tile,
.category-overview-card,
.side-panel,
.detail-article,
.detail-side,
.ranking-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.86);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.movie-card {
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}

.movie-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.poster-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 63, 94, 0.30), rgba(236, 72, 153, 0.18)),
    #111827;
}

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

.poster-image.is-missing,
.hero-cover img.is-missing,
.detail-backdrop img.is-missing,
.rank-cover.is-missing {
  opacity: 0;
}

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

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.movie-meta-line {
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
}

.movie-meta-line span:not(:last-child)::after {
  content: "·";
  margin-left: 9px;
  color: #d1d5db;
}

.movie-card h3,
.ranking-item h3,
.category-tile h3,
.category-overview-card h2 {
  margin: 0;
  color: #111827;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

.movie-card p,
.ranking-item p,
.category-tile p,
.category-overview-card p,
.detail-article p {
  margin: 0;
  color: #6b7280;
}

.movie-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 48px;
}

.tag-row {
  margin-top: auto;
}

.tag-row span {
  padding: 5px 9px;
  font-size: 12px;
}

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

.category-tile,
.category-overview-card {
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.13);
}

.category-tile,
.category-overview-card a {
  display: block;
  padding: 24px;
}

.category-tile span,
.category-overview-card span {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #e11d48;
  background: #fff1f2;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.category-tile div,
.mini-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #e11d48;
  font-size: 14px;
  font-weight: 800;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: 92px;
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 242, 0.98));
}

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

.ranking-list.compact .ranking-item:nth-child(n+11) {
  display: none;
}

.ranking-item {
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.13);
}

.ranking-link {
  display: grid;
  grid-template-columns: 58px 116px minmax(0, 1fr) 70px;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.rank-number {
  color: #f43f5e;
  font-size: 26px;
  font-weight: 950;
  text-align: center;
}

.rank-cover {
  width: 116px;
  height: 74px;
  border-radius: 14px;
  object-fit: cover;
  background: linear-gradient(135deg, #fb7185, #a855f7);
}

.rank-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #f43f5e);
  font-weight: 950;
}

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 74px 24px 38px;
}

.small-hero {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.filter-panel {
  position: sticky;
  top: 84px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 190px 160px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.82);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.filter-panel input,
.filter-panel select {
  min-width: 0;
  padding: 12px 16px;
}

.empty-state {
  margin: 24px 0;
  border-radius: 20px;
  padding: 24px;
  color: #9f1239;
  background: #fff1f2;
  font-weight: 900;
  text-align: center;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: #fff;
  background: #111827;
}

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

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: blur(6px) saturate(1.1);
  transform: scale(1.05);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 18%, rgba(244, 63, 94, 0.34), transparent 30rem),
    linear-gradient(90deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.72) 52%, rgba(17, 24, 39, 0.58) 100%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 560px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.35);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #fff;
}

.detail-copy h1 {
  margin-top: 20px;
  color: #fff;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
}

.detail-copy p {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.detail-meta {
  margin-top: 24px;
}

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

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #030712;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
  aspect-ratio: 16 / 9;
}

.player-frame video {
  width: 100%;
  height: 100%;
  background: #030712;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(244, 63, 94, 0.32), transparent 20rem),
    rgba(3, 7, 18, 0.28);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  box-shadow: 0 18px 38px rgba(244, 63, 94, 0.34);
  font-size: 30px;
}

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

.player-frame.is-playing .player-overlay,
.player-frame.is-ready .player-overlay:hover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-message {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  transform: translateX(-50%);
  margin: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  background: rgba(225, 29, 72, 0.92);
  font-weight: 800;
}

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

.detail-article,
.detail-side {
  border-radius: 28px;
  padding: 30px;
}

.detail-article h2,
.detail-side h2 {
  font-size: 28px;
}

.detail-article h2:not(:first-child) {
  margin-top: 30px;
}

.detail-article p {
  margin-top: 14px;
  color: #374151;
  font-size: 17px;
}

.detail-tags {
  margin-top: 28px;
}

.detail-side dl {
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}

.detail-side dt {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 900;
}

.detail-side dd {
  margin: 4px 0 0;
  color: #111827;
  font-weight: 850;
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.92);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 8px 0 0;
  color: #6b7280;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #374151;
  font-weight: 800;
}

[hidden],
[data-card].is-hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .movie-grid,
  .wide-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-cover {
    max-width: 640px;
  }

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

  .side-panel {
    position: static;
  }
}

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

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-inner {
    padding-top: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 60px);
  }

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

  .filter-panel {
    position: static;
    grid-template-columns: 1fr;
  }

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

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

  .ranking-link {
    grid-template-columns: 44px 88px minmax(0, 1fr);
  }

  .rank-score {
    grid-column: 3;
    width: auto;
    height: auto;
    padding: 6px 10px;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding: 0 16px;
  }

  .brand {
    font-size: 18px;
  }

  .hero-inner,
  .content-section,
  .page-shell .content-section,
  .page-hero,
  .detail-hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-cover,
  .player-frame {
    border-radius: 22px;
  }

  .quick-entry {
    margin-top: 18px;
    padding: 0 16px;
    grid-template-columns: 1fr;
  }

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

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

  .ranking-link {
    grid-template-columns: 38px 78px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .rank-cover {
    width: 78px;
    height: 56px;
  }

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