:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0d1117;
  --panel: #111827;
  --panel-2: #1f2937;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f8fafc;
  --muted: #9ca3af;
  --muted-2: #6b7280;
  --gold: #fbbf24;
  --gold-strong: #f59e0b;
  --red: #ef4444;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.10), transparent 34rem),
    linear-gradient(180deg, #111827 0%, #050505 36%, #0b0f18 100%);
  color: var(--text);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--gold), #fff2b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-logo {
  font-size: clamp(20px, 3vw, 28px);
  white-space: nowrap;
}

.site-logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #111;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.42);
}

.site-logo:hover .site-logo-mark {
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}

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

.nav-link,
.mobile-link {
  color: #d1d5db;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.is-active,
.mobile-link.is-active {
  color: var(--gold);
}

.header-search,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search input,
.mobile-search input {
  width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(31, 41, 55, 0.92);
  color: var(--text);
  outline: none;
}

.header-search input {
  padding: 10px 44px 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(251, 191, 36, 0.75);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.14);
}

.header-search button {
  position: absolute;
  right: 6px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 20px;
  border-top: 1px solid var(--line);
}

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

.mobile-search {
  gap: 10px;
}

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

.mobile-search button,
.filter-panel button {
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  cursor: pointer;
}

.mobile-search button {
  padding: 11px 18px;
}

.site-main {
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  isolation: isolate;
  overflow: hidden;
  background: #050505;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.32) 74%, rgba(0, 0, 0, 0.10) 100%),
    linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.20) 38%, transparent 100%);
}

.hero-content {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 760px;
  padding-top: 36px;
  justify-self: start;
}

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

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.8);
}

.hero-content h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 26px;
  color: #d1d5db;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.8;
}

.hero-meta,
.detail-meta,
.ranking-meta,
.horizontal-meta,
.movie-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.detail-meta span,
.ranking-meta span,
.horizontal-meta span,
.movie-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  font-size: 13px;
}

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

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

.primary-button {
  background: var(--gold);
  color: #111;
  box-shadow: 0 16px 44px rgba(251, 191, 36, 0.28);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px) scale(1.02);
}

.primary-button:hover {
  background: #fcd34d;
}

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

.hero-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

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

.hero-category-bar {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  width: min(1240px, calc(100% - 32px));
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.70);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.hero-category-bar a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  font-weight: 800;
}

.hero-category-bar a:hover {
  background: var(--gold);
  color: #111;
}

.section-block,
.filter-panel,
.breadcrumb,
.detail-layout,
.player-section {
  width: min(1240px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.section-block {
  padding: 72px 0;
}

.section-soft,
.section-glow {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 34px;
}

.section-soft {
  background: linear-gradient(90deg, rgba(31, 41, 55, 0.72), rgba(17, 24, 39, 0.16));
}

.section-glow {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.18), transparent 32rem),
    linear-gradient(180deg, rgba(31, 41, 55, 0.76), rgba(17, 24, 39, 0.60));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.section-heading h2,
.page-hero h1,
.detail-content h1 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading a {
  color: var(--gold);
  font-weight: 900;
}

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(17, 24, 39, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.34);
  background: rgba(31, 41, 55, 0.92);
  box-shadow: 0 22px 60px rgba(251, 191, 36, 0.13);
}

.movie-poster {
  position: relative;
  margin: 0;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #050505);
}

.movie-card-large .movie-poster {
  aspect-ratio: 16 / 10;
}

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

.movie-card:hover .movie-poster img,
.category-tile:hover img,
.category-summary:hover img,
.horizontal-card:hover img,
.ranking-row:hover img {
  transform: scale(1.06);
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.movie-score,
.movie-type,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.movie-score {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--gold);
  backdrop-filter: blur(8px);
}

.movie-type {
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: var(--gold);
  color: #111;
}

.rank-badge {
  top: 12px;
  left: 12px;
  width: 38px;
  height: 38px;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #111;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

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

.movie-card h3,
.horizontal-card h3,
.ranking-row h2,
.category-summary h2 {
  margin: 0;
  color: var(--text);
}

.movie-card h3 {
  min-height: 54px;
  font-size: 18px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.movie-meta {
  gap: 6px;
}

.movie-meta span {
  font-size: 12px;
}

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

.horizontal-card,
.ranking-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.82);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.horizontal-card:hover,
.ranking-row:hover {
  transform: translateX(4px);
  border-color: rgba(251, 191, 36, 0.28);
  background: rgba(31, 41, 55, 0.90);
}

.horizontal-card img,
.ranking-row img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  background: #111827;
  transition: transform 0.35s ease;
}

.horizontal-card p,
.ranking-row p {
  margin: 8px 0 10px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-rank {
  background: var(--gold);
  color: #111;
  font-weight: 900;
}

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

.category-tile,
.category-summary {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #111827;
  isolation: isolate;
}

.category-tile img,
.category-summary img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.category-tile::after,
.category-summary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.90));
}

.category-tile span,
.category-summary span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  font-size: 22px;
}

.category-tile p,
.category-summary p {
  margin: 0;
  color: #e5e7eb;
  line-height: 1.65;
}

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

.category-summary {
  min-height: 230px;
  display: flex;
  align-items: flex-end;
}

.page-hero {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 36px auto 10px;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(3, 7, 18, 0.88));
  box-shadow: var(--shadow);
}

.page-hero p {
  max-width: 760px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

.filter-panel {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.82);
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) auto;
  gap: 14px;
  align-items: end;
}

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

.filter-grid input,
.filter-grid select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.42);
  color: var(--text);
  padding: 0 13px;
  outline: none;
}

.filter-panel button {
  min-height: 46px;
  padding: 0 20px;
}

.filter-result {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.filter-result span {
  color: var(--gold);
}

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

.ranking-row {
  grid-template-columns: 64px 138px 1fr;
}

.ranking-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(251, 191, 36, 0.14);
  color: var(--gold);
  font-weight: 900;
  font-size: 20px;
}

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

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

.player-section {
  margin-top: 22px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.72));
  color: var(--text);
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  padding-left: 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 38px;
  box-shadow: 0 0 50px rgba(251, 191, 36, 0.45);
}

.play-overlay span:last-child {
  font-size: 22px;
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  margin-top: 34px;
  align-items: start;
}

.detail-cover {
  position: sticky;
  top: 94px;
  overflow: hidden;
  border-radius: 26px;
  background: #111827;
  box-shadow: var(--shadow);
}

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

.detail-content {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(17, 24, 39, 0.82);
}

.detail-line {
  color: #d1d5db;
  font-size: 19px;
  line-height: 1.8;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.tag-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.12);
  color: #fde68a;
  font-weight: 800;
}

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

.detail-section h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.detail-section p {
  margin: 0;
  color: #d1d5db;
  line-height: 2;
  font-size: 17px;
}

.related-section {
  padding-top: 58px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(3, 7, 18, 0.96);
}

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

.footer-logo {
  font-size: 22px;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
}

[data-movie-card].is-hidden {
  display: none;
}

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

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

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

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-carousel {
    min-height: 680px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.96)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent);
  }

  .hero-content {
    align-self: end;
    padding-bottom: 172px;
  }

  .hero-controls {
    bottom: 112px;
  }

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

  .section-soft,
  .section-glow,
  .page-hero,
  .detail-content {
    padding: 26px;
  }

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

  .detail-cover {
    position: relative;
    top: auto;
    max-width: 320px;
  }

  .ranking-row {
    grid-template-columns: 44px 96px 1fr;
  }

  .ranking-number {
    width: 38px;
    height: 38px;
  }

  .ranking-row img,
  .horizontal-card img {
    width: 96px;
    height: 72px;
  }

  .horizontal-card {
    grid-template-columns: 96px 1fr;
  }
}

@media (max-width: 620px) {
  .site-header-inner {
    width: min(100% - 24px, 1240px);
  }

  .site-logo {
    font-size: 18px;
  }

  .site-logo-mark {
    width: 30px;
    height: 30px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-category-bar {
    width: calc(100% - 20px);
    border-radius: 22px;
  }

  .section-block,
  .filter-panel,
  .breadcrumb,
  .detail-layout,
  .player-section,
  .page-hero {
    width: min(100% - 24px, 1240px);
  }

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

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

  .movie-grid,
  .movie-grid-large,
  .category-grid,
  .category-summary-grid,
  .horizontal-grid {
    grid-template-columns: 1fr;
  }

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

  .horizontal-card,
  .ranking-row {
    grid-template-columns: 88px 1fr;
  }

  .ranking-row {
    position: relative;
    padding-left: 58px;
  }

  .ranking-number {
    position: absolute;
    left: 12px;
    top: 24px;
  }

  .horizontal-card img,
  .ranking-row img {
    width: 88px;
    height: 116px;
  }

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

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

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