:root {
  --cocoa-950: #0f0a08;
  --cocoa-900: #2c1810;
  --cocoa-800: #3e2723;
  --cocoa-700: #4e342e;
  --cocoa-600: #5d4037;
  --cocoa-300: #a1887f;
  --cocoa-200: #bcaaa4;
  --cream-50: #fffaf6;
  --cream-100: #fff5ed;
  --cream-200: #ffe8d6;
  --cream-300: #ffd8be;
  --cream-400: #ffc9a7;
  --shadow-soft: 0 18px 55px rgba(44, 24, 16, 0.18);
  --shadow-strong: 0 28px 80px rgba(15, 10, 8, 0.34);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  background: linear-gradient(180deg, var(--cream-50), #efebe9 46%, var(--cream-50));
  color: var(--cocoa-900);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--cocoa-800), var(--cocoa-700), var(--cocoa-800));
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.24);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream-100);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-300);
  color: var(--cocoa-900);
  box-shadow: 0 10px 28px rgba(255, 216, 190, 0.3);
}

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

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

.nav-link {
  color: var(--cream-200);
  font-weight: 700;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  border-color: var(--cream-300);
}

.header-search {
  display: flex;
  align-items: center;
  background: rgba(44, 24, 16, 0.5);
  border: 1px solid rgba(188, 170, 164, 0.35);
  border-radius: 999px;
  overflow: hidden;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  border: 0;
  outline: 0;
  background: transparent;
}

.header-search input {
  width: 190px;
  color: var(--cream-100);
  padding: 10px 10px 10px 16px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: var(--cocoa-200);
}

.header-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  color: var(--cocoa-900);
  background: var(--cream-300);
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream-100);
  border-radius: 99px;
}

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

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

.mobile-search {
  display: flex;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(188, 170, 164, 0.35);
  border-radius: 18px;
  background: rgba(44, 24, 16, 0.55);
}

.mobile-search input {
  flex: 1;
  min-width: 0;
  color: var(--cream-100);
  padding: 11px 14px;
}

.mobile-nav-link {
  display: block;
  padding: 11px 14px;
  color: var(--cream-100);
  border-radius: 14px;
  font-weight: 700;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(255, 232, 214, 0.1);
}

.hero {
  position: relative;
  height: 72vh;
  min-height: 560px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(255, 216, 190, 0.24), transparent 30%), var(--cocoa-900);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.hero-slide img.image-missing,
.detail-backdrop img.image-missing,
.detail-poster img.image-missing,
.poster-link img.image-missing {
  opacity: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44, 24, 16, 0.96), rgba(62, 39, 35, 0.7) 48%, rgba(44, 24, 16, 0.22)), linear-gradient(90deg, rgba(44, 24, 16, 0.7), transparent 62%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100% - 1180px) / 2));
  right: 24px;
  bottom: 96px;
  width: min(760px, calc(100% - 48px));
  color: #ffffff;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(78, 52, 46, 0.72);
  color: var(--cream-100);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags .hero-category {
  background: var(--cream-400);
  color: var(--cocoa-900);
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--cream-100);
  font-size: clamp(16px, 2.1vw, 21px);
  line-height: 1.8;
}

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

.primary-button,
.secondary-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  background: var(--cream-300);
  color: var(--cocoa-900);
  box-shadow: 0 18px 45px rgba(255, 216, 190, 0.28);
}

.secondary-button {
  color: var(--cream-100);
  background: rgba(255, 245, 237, 0.12);
  border: 1px solid rgba(255, 232, 214, 0.3);
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.secondary-button:hover,
.section-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(44, 24, 16, 0.26);
}

.hero-dots {
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 44px;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 216, 190, 0.55);
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease;
}

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

.hero-category-strip {
  position: absolute;
  left: max(24px, calc((100% - 1180px) / 2));
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 22px;
  display: flex;
  gap: 10px;
  max-width: 700px;
  overflow-x: auto;
}

.hero-category-strip a {
  flex: 0 0 auto;
  color: var(--cream-100);
  background: rgba(44, 24, 16, 0.55);
  border: 1px solid rgba(255, 232, 214, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.section,
.section-wide,
.page-main .section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

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

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading.light,
.section-heading.light h2 {
  color: var(--cream-100);
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--cocoa-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-heading.light .eyebrow,
.ranking-head span {
  color: var(--cream-300);
}

.section-heading h2,
.ranking-head h2,
.page-hero h1,
.detail-info h1,
.detail-text h2 {
  margin: 0;
  color: var(--cocoa-900);
  line-height: 1.15;
}

.section-heading h2,
.ranking-head h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.section-link {
  background: var(--cream-100);
  color: var(--cocoa-900);
  box-shadow: var(--shadow-soft);
}

.section-link.light {
  background: rgba(255, 245, 237, 0.16);
  color: var(--cream-100);
  border: 1px solid rgba(255, 232, 214, 0.22);
}

.horizontal-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 5px 0 22px;
}

.horizontal-row .movie-card {
  width: 310px;
  flex: 0 0 310px;
  scroll-snap-align: start;
}

.featured-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 38px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--cocoa-700), var(--cocoa-800));
  box-shadow: var(--shadow-strong);
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 65px rgba(44, 24, 16, 0.25);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, var(--cream-300), transparent 36%), linear-gradient(135deg, var(--cocoa-700), var(--cocoa-900));
}

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

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

.poster-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 216, 190, 0.92);
  color: var(--cocoa-900);
  font-size: 12px;
  font-weight: 900;
}

.card-content {
  padding: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--cocoa-600);
  font-size: 12px;
  font-weight: 800;
}

.card-content h2 {
  margin: 10px 0 8px;
  color: var(--cocoa-900);
  font-size: 19px;
  line-height: 1.32;
}

.card-content p {
  margin: 0 0 14px;
  color: var(--cocoa-700);
  line-height: 1.75;
  font-size: 14px;
}

.tag-row span {
  background: var(--cream-100);
  color: var(--cocoa-700);
  border: 1px solid rgba(188, 170, 164, 0.4);
}

.featured-panel .movie-card {
  background: rgba(255, 250, 246, 0.96);
}

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

.category-card,
.overview-card {
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 245, 237, 0.98), rgba(255, 232, 214, 0.92));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.category-card a,
.overview-main {
  display: block;
  padding: 22px;
}

.category-card span,
.overview-name {
  display: block;
  color: var(--cocoa-900);
  font-size: 21px;
  font-weight: 900;
}

.category-card p,
.overview-card p {
  margin: 10px 0 0;
  color: var(--cocoa-700);
  line-height: 1.7;
  font-size: 14px;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.category-samples a,
.overview-links a {
  color: var(--cocoa-700);
  background: rgba(255, 250, 246, 0.78);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.overview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 22px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 28px;
}

.editor-list {
  display: grid;
  gap: 18px;
}

.wide-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
}

.wide-card .poster-link {
  aspect-ratio: 4 / 3;
  height: 100%;
}

.ranking-box,
.ranking-list-page {
  border-radius: 28px;
  background: var(--cream-100);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.ranking-box {
  position: sticky;
  top: 92px;
}

.ranking-head {
  margin-bottom: 16px;
}

.ranking-head span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.rank-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-areas: "num title" "num meta";
  gap: 2px 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid rgba(188, 170, 164, 0.35);
}

.rank-number {
  grid-area: num;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cocoa-600), var(--cocoa-800));
  color: var(--cream-100);
  font-weight: 900;
}

.rank-title {
  grid-area: title;
  font-weight: 900;
  color: var(--cocoa-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-meta {
  grid-area: meta;
  color: var(--cocoa-600);
  font-size: 13px;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 0;
  border-radius: 34px;
  background: radial-gradient(circle at 8% 20%, rgba(255, 216, 190, 0.42), transparent 32%), linear-gradient(135deg, var(--cocoa-700), var(--cocoa-900));
  color: var(--cream-100);
  box-shadow: var(--shadow-strong);
  padding: clamp(34px, 5vw, 64px);
}

.page-hero h1 {
  color: var(--cream-100);
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--cream-200);
  font-size: 18px;
  line-height: 1.85;
}

.page-hero .eyebrow {
  color: var(--cream-300);
}

.search-page-form {
  display: flex;
  max-width: 640px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 245, 237, 0.12);
  border: 1px solid rgba(255, 232, 214, 0.24);
}

.search-page-form input {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  color: var(--cream-100);
}

.search-page-form input::placeholder {
  color: var(--cream-200);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 245, 237, 0.9);
  box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--cocoa-900);
  padding: 0 16px;
  border: 1px solid rgba(188, 170, 164, 0.45);
}

.empty-state {
  margin: 30px 0 0;
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--cream-100);
  color: var(--cocoa-700);
  font-weight: 800;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.pagination a,
.pagination span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 14px;
  background: var(--cream-100);
  color: var(--cocoa-800);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(44, 24, 16, 0.09);
}

.pagination a.active {
  background: var(--cocoa-800);
  color: var(--cream-100);
}

.lead-ranking {
  margin-bottom: 26px;
}

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

.detail-main {
  background: var(--cream-50);
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--cocoa-900);
}

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

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

.detail-backdrop div {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44, 24, 16, 0.98), rgba(62, 39, 35, 0.76), rgba(44, 24, 16, 0.4));
}

.detail-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  color: var(--cream-100);
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--cocoa-700), var(--cocoa-900));
  box-shadow: var(--shadow-strong);
}

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

.crumb {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--cream-300);
  color: var(--cocoa-900);
  font-weight: 900;
}

.detail-info h1 {
  color: #ffffff;
  font-size: clamp(34px, 5vw, 60px);
}

.detail-line {
  max-width: 760px;
  margin: 18px 0;
  color: var(--cream-200);
  font-size: 20px;
  line-height: 1.8;
}

.detail-meta {
  margin-bottom: 14px;
}

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

.detail-tags span {
  background: rgba(255, 245, 237, 0.12);
  color: var(--cream-100);
  border-color: rgba(255, 232, 214, 0.24);
}

.player-section {
  width: min(1180px, calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(44, 24, 16, 0.22), rgba(0, 0, 0, 0.56));
  cursor: pointer;
}

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

.play-circle {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-300);
  color: var(--cocoa-900);
  font-size: 34px;
  box-shadow: 0 18px 50px rgba(255, 216, 190, 0.28);
}

.player-overlay strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}

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

.detail-text article {
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-text h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.detail-text p {
  margin: 0;
  color: var(--cocoa-700);
  font-size: 17px;
  line-height: 2;
}

.site-footer {
  margin-top: 36px;
  padding: 48px 0 24px;
  background: linear-gradient(180deg, var(--cocoa-900), var(--cocoa-950));
  color: var(--cream-100);
}

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

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 460px;
  color: var(--cream-200);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--cream-100);
  font-size: 18px;
}

.footer-links a {
  color: var(--cream-200);
}

.footer-copy {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 20px;
  color: var(--cocoa-200);
  border-top: 1px solid rgba(255, 232, 214, 0.12);
}

.search-result-head h2 {
  margin: 0 0 24px;
  font-size: 30px;
}

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

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

  .ranking-box {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

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

  .hero-content {
    bottom: 114px;
  }

  .movie-grid.four,
  .movie-grid.three,
  .category-grid,
  .overview-grid,
  .ranking-list-page,
  .detail-text {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-content {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
  }

  .detail-line {
    font-size: 17px;
  }

  .wide-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

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

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

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

  .hero {
    min-height: 560px;
  }

  .hero-content {
    bottom: 108px;
  }

  .hero-category-strip {
    right: 16px;
    left: 16px;
  }

  .hero-dots {
    right: 18px;
  }

  .section,
  .section-wide,
  .page-main .section,
  .featured-panel {
    width: min(100% - 24px, 1180px);
  }

  .featured-panel,
  .page-hero {
    padding: 24px;
    border-radius: 24px;
  }

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

  .movie-grid.four,
  .movie-grid.three,
  .category-grid,
  .overview-grid,
  .ranking-list-page,
  .detail-text {
    grid-template-columns: 1fr;
  }

  .horizontal-row .movie-card {
    width: 270px;
    flex-basis: 270px;
  }

  .wide-card {
    display: block;
  }

  .wide-card .poster-link {
    aspect-ratio: 2 / 3;
  }

  .detail-content {
    display: block;
    padding: 42px 0 82px;
  }

  .detail-poster {
    width: 170px;
    margin-bottom: 22px;
  }

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

  .play-circle {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }
}
