:root {
  --red-950: #3f0713;
  --red-900: #6f101b;
  --red-800: #8e1827;
  --red-700: #b91c1c;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-100: #fef3c7;
  --cream: #fff8e7;
  --paper: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #f2d9a6;
  --shadow: 0 18px 50px rgba(82, 20, 9, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fff1f2 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, var(--red-950), var(--red-800), var(--red-950));
  box-shadow: 0 14px 36px rgba(63, 7, 19, 0.28);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b0b13;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #fde68a);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.brand-text strong,
.brand-text em {
  display: block;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}

.brand-text em {
  margin-top: 4px;
  font-size: 12px;
  font-style: normal;
  color: #fde68a;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-weight: 700;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover {
  color: #fde68a;
  transform: translateY(-1px);
}

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

.header-search {
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.header-search input,
.mobile-search input,
.spotlight-search input {
  min-width: 0;
  border: 0;
  outline: 0;
}

.header-search input {
  width: 170px;
  color: #ffffff;
  background: transparent;
  padding: 8px 10px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: #fde68a;
}

.header-search button,
.mobile-search button,
.spotlight-search button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  border-radius: 999px;
  color: #5b0b13;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
}

.header-search button {
  padding: 8px 14px;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

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

.mobile-panel.is-open {
  display: block;
}

.mobile-search {
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.mobile-search input {
  width: 100%;
  color: #ffffff;
  background: transparent;
  padding: 10px;
}

.mobile-search button {
  padding: 10px 16px;
}

.mobile-panel nav {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mobile-panel nav a {
  padding: 12px 2px;
  border-bottom: 1px solid rgba(253, 230, 138, 0.3);
  color: #ffffff;
}

.hero {
  position: relative;
  height: min(74vh, 620px);
  min-height: 460px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--red-950), var(--amber-700));
}

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

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 36%, rgba(245, 158, 11, 0.26), transparent 26%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42) 54%, rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: absolute;
  inset: 0;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 44px;
  color: #ffffff;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(253, 230, 138, 0.45);
  border-radius: 999px;
  color: #fde68a;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 800;
}

.hero h1,
.hero h2 {
  margin: 22px 0 10px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.hero-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #fde68a;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.8;
}

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

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

.primary-button {
  padding: 13px 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red-700), var(--amber-600));
  box-shadow: 0 14px 28px rgba(185, 28, 28, 0.28);
}

.ghost-button {
  padding: 12px 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.more-link:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(253, 230, 138, 0.35);
  border-radius: inherit;
}

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

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-controls button {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 26px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.is-active {
  width: 30px;
  background: #fbbf24;
}

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

.section-heading {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 26px;
}

.section-heading > span {
  width: 8px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red-700), var(--amber-500));
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  color: #111827;
}

.section-heading p {
  grid-column: 2;
  margin: -8px 0 0;
  color: var(--muted);
}

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

.category-card,
.category-feature,
.search-spotlight,
.side-panel,
.detail-info,
.filter-panel,
.rank-row,
.movie-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(242, 217, 166, 0.72);
  box-shadow: var(--shadow);
}

.category-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff7ed, #fff1f2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 68%);
}

.category-card:hover,
.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(82, 20, 9, 0.2);
}

.category-card strong {
  display: block;
  font-size: 22px;
  color: #111827;
}

.category-card p {
  min-height: 52px;
  color: var(--muted);
  line-height: 1.7;
}

.category-card span {
  color: var(--red-700);
  font-weight: 800;
}

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

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

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #26070b;
}

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

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 46%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-card:hover .poster-link::after {
  opacity: 1;
}

.card-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.card-year {
  right: 10px;
  top: 10px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  left: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b0b13;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
}

.card-body {
  padding: 16px;
}

.movie-card h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-info h2 a:hover {
  color: var(--red-700);
}

.movie-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta,
.rank-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.card-meta span,
.rank-meta span,
.detail-meta span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff7ed;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #92400e;
  background: var(--amber-100);
  font-size: 12px;
  font-weight: 800;
}

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

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

.movie-card-compact p,
.movie-card-compact .tag-row {
  display: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.mini-list {
  display: grid;
  gap: 12px;
}

.mini-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(242, 217, 166, 0.72);
  transition: transform 0.2s ease, background 0.2s ease;
}

.mini-card:hover {
  transform: translateX(4px);
  background: #fff7ed;
}

.mini-card img {
  width: 64px;
  height: 84px;
  border-radius: 12px;
  object-fit: cover;
}

.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card strong {
  color: #111827;
  line-height: 1.35;
}

.mini-card em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.mini-rank {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b0b13;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  font-weight: 900;
}

.mini-card .mini-rank + img {
  grid-column: 1;
}

.mini-card:has(.mini-rank) {
  grid-template-columns: 30px 64px minmax(0, 1fr);
}

.more-link,
.text-button {
  margin-top: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red-700), var(--amber-600));
}

.more-link,
.text-button {
  padding: 10px 18px;
}

.search-spotlight {
  min-height: 100%;
  border-radius: 28px;
  padding: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.22), transparent 34%),
    linear-gradient(135deg, var(--red-950), var(--red-800), var(--amber-700));
}

.search-spotlight h2 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.search-spotlight p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.spotlight-search {
  margin-top: 26px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.spotlight-search input {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
}

.spotlight-search button {
  padding: 14px 20px;
}

.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 26%, rgba(251, 191, 36, 0.28), transparent 30%),
    linear-gradient(135deg, var(--red-950), var(--red-800), var(--amber-700));
}

.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

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

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.category-feature-list {
  display: grid;
  gap: 24px;
}

.category-feature {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  padding: 26px;
  border-radius: 24px;
}

.category-feature h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.category-feature p {
  color: var(--muted);
  line-height: 1.8;
}

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

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 180px 180px;
  gap: 14px;
  align-items: end;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: 22px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #f1d59a;
  border-radius: 14px;
  outline: 0;
  padding: 12px 14px;
  color: #111827;
  background: #ffffff;
}

.empty-state {
  margin: 24px 0;
  padding: 36px;
  border-radius: 22px;
  text-align: center;
  color: var(--muted);
  background: #ffffff;
  border: 1px dashed #f1d59a;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 58px 86px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
}

.rank-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b0b13;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  font-weight: 900;
}

.rank-poster img {
  width: 86px;
  height: 116px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-info h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.rank-info p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--red-700);
  font-weight: 800;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  aspect-ratio: 16 / 9;
}

.player-video,
.player-cover,
.player-cover img,
.player-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-video {
  z-index: 1;
  object-fit: contain;
  background: #000000;
}

.player-cover {
  z-index: 2;
  display: block;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000000;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  object-fit: cover;
  opacity: 0.76;
}

.player-shade {
  background:
    radial-gradient(circle at center, rgba(251, 191, 36, 0.18), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b0b13;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%);
  font-size: 34px;
  line-height: 1;
}

.detail-info {
  margin-top: 22px;
  padding: 28px;
  border-radius: 24px;
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.detail-line {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

.detail-tags {
  margin-bottom: 22px;
}

.detail-info h2 {
  margin: 28px 0 12px;
  font-size: 24px;
}

.detail-info p {
  color: #374151;
  line-height: 1.9;
}

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

.detail-poster {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.side-panel {
  padding: 20px;
  border-radius: 22px;
}

.side-panel h2 {
  margin: 0 0 14px;
}

.site-footer {
  margin-top: 70px;
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #030712);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 34px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.footer-brand p {
  grid-column: 2;
  margin: 0;
  color: #9ca3af;
  line-height: 1.7;
}

.footer-links h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 20px;
}

.footer-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 7px 12px;
  border-radius: 999px;
  color: #fde68a;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 28px;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

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

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-content,
  .detail-layout,
  .split-section,
  .category-feature,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .detail-poster {
    display: none;
  }

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

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

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

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

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

  .hero {
    min-height: 560px;
    height: 78vh;
  }

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

  .hero h1,
  .hero h2 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .content-section {
    padding-top: 42px;
  }

  .category-grid,
  .movie-grid,
  .compact-grid,
  .inline-mini-list,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 44px 72px minmax(0, 1fr);
  }

  .rank-row .text-button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
  }

  .rank-poster img {
    width: 72px;
    height: 98px;
  }

  .detail-wrap {
    padding-top: 20px;
  }

  .detail-info {
    padding: 20px;
  }

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

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

  .footer-brand,
  .footer-brand p {
    grid-column: auto;
  }
}
