:root {
  --sand-50: #faf8f3;
  --sand-100: #f5f0e6;
  --sand-200: #e8dcc5;
  --sand-500: #b59a61;
  --sand-600: #9d8350;
  --sand-700: #7d6840;
  --desert-50: #fdf9f0;
  --desert-500: #d5a643;
  --desert-600: #b88d39;
  --ink-900: #111827;
  --ink-700: #374151;
  --ink-500: #6b7280;
  --white: #ffffff;
  --shadow-sand: 0 10px 15px -3px rgba(181, 154, 97, 0.10), 0 4px 6px -2px rgba(181, 154, 97, 0.05);
  --shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.05), 0 16px 40px rgba(181, 154, 97, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: linear-gradient(180deg, var(--sand-50), #ffffff 38%, var(--desert-50));
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(232, 220, 197, 0.76);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sand-700);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sand-500), var(--desert-500));
  border-radius: 11px;
  box-shadow: var(--shadow-sand);
}

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

.nav-link {
  padding: 9px 14px;
  color: var(--ink-500);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--sand-700);
  background: var(--sand-50);
  box-shadow: 0 1px 0 rgba(181, 154, 97, 0.18);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 320px;
  padding: 6px;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: 999px;
}

.header-search input {
  min-width: 0;
  flex: 1;
  padding: 8px 12px;
  color: var(--ink-700);
  background: transparent;
  border: 0;
  outline: none;
}

.header-search button,
.large-search button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--sand-500), var(--desert-500));
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: var(--shadow-sand);
}

.header-search button {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.header-search button:hover,
.large-search button:hover,
.primary-button:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
  box-shadow: 0 18px 36px rgba(181, 154, 97, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  color: var(--sand-700);
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: 12px;
}

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #111827;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38) 55%, rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 20% 25%, rgba(181, 154, 97, 0.35), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 72px;
}

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

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-meta span:first-child {
  background: rgba(181, 154, 97, 0.88);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 7vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2.2vw, 22px);
}

.hero-tags,
.detail-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.detail-tags span,
.tag-list span {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--sand-700);
  background: var(--sand-50);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ghost-button,
.page-hero-actions a,
.quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--sand-700);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(232, 220, 197, 0.74);
  border-radius: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}

.ghost-button:hover,
.page-hero-actions a:hover,
.quick-links a:hover {
  color: #ffffff;
  background: var(--sand-600);
  transform: translateY(-1px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

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

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

.hero-dot.active {
  width: 34px;
  background: #ffffff;
}

.search-band {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: -38px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--sand-200);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.large-search {
  display: flex;
  gap: 10px;
}

.large-search input {
  min-width: 0;
  flex: 1;
  padding: 14px 16px;
  color: var(--ink-700);
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: 14px;
  outline: none;
}

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

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

.soft-section {
  background: linear-gradient(180deg, #ffffff, var(--sand-50));
}

.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

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

.section-head span:first-child {
  width: 5px;
  height: 34px;
  background: linear-gradient(180deg, var(--sand-500), var(--desert-500));
  border-radius: 999px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.section-head a {
  margin-left: auto;
  color: var(--sand-700);
  font-weight: 800;
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(232, 220, 197, 0.70);
  border-radius: 18px;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(181, 154, 97, 0.44);
  box-shadow: var(--shadow-sand);
  transform: translateY(-5px);
}

.movie-card.horizontal {
  flex-direction: row;
}

.card-cover {
  position: relative;
  display: block;
  flex-shrink: 0;
  height: 260px;
  overflow: hidden;
  background: var(--sand-100);
}

.movie-card.horizontal .card-cover {
  width: 42%;
  height: auto;
  min-height: 218px;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.12) 55%, transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .cover-shade {
  opacity: 1;
}

.play-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--sand-700);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: 0.25s ease;
}

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

.card-region,
.card-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.70);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.card-region {
  top: 12px;
  left: 12px;
  background: rgba(157, 131, 80, 0.90);
}

.card-year {
  right: 12px;
  bottom: 12px;
}

.rank-badge {
  right: 12px;
  top: 12px;
  min-width: 34px;
  text-align: center;
  background: linear-gradient(135deg, var(--sand-500), var(--desert-500));
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}

.card-body h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.card-body h2 a:hover {
  color: var(--sand-700);
}

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

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  color: var(--ink-500);
  border-top: 1px solid #f3f4f6;
  font-size: 12px;
}

.card-meta span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.category-tile,
.category-overview-card,
.ranking-panel,
.intro-panel,
.filter-panel,
.category-inline-links,
.detail-content article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 220, 197, 0.78);
  border-radius: 22px;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
}

.category-tile {
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
  box-shadow: var(--shadow-sand);
  transform: translateY(-4px);
}

.category-title {
  color: var(--sand-700);
  font-size: 22px;
  font-weight: 850;
}

.category-tile p,
.category-overview-card p,
.intro-panel p,
.page-intro {
  color: var(--ink-500);
}

.category-samples {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 16px;
}

.category-samples a,
.category-inline-links a {
  color: var(--ink-700);
  font-weight: 650;
}

.category-samples a:hover,
.category-inline-links a:hover {
  color: var(--sand-700);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  padding: 60px 0;
}

.ranking-panel,
.intro-panel {
  padding: 24px;
}

.intro-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

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

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

.compact-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  background: var(--sand-50);
  border: 1px solid rgba(232, 220, 197, 0.72);
  border-radius: 14px;
  transition: 0.2s ease;
}

.compact-card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-sand);
}

.compact-card img {
  width: 62px;
  height: 82px;
  object-fit: cover;
  border-radius: 10px;
}

.compact-card strong,
.compact-card em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-card strong {
  color: var(--ink-900);
  font-size: 15px;
}

.compact-card em {
  color: var(--ink-500);
  font-size: 12px;
  font-style: normal;
}

.compact-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sand-500), var(--desert-500));
  border-radius: 10px;
  font-weight: 850;
}

.compact-card .compact-rank + img {
  display: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 10%, rgba(213, 166, 67, 0.46), transparent 38%),
    linear-gradient(135deg, #1f2937, #5d4b2f 48%, #111827);
}

.compact-page {
  padding: 72px 0;
}

.page-hero p {
  max-width: 780px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.category-overview {
  display: grid;
  gap: 24px;
  padding: 52px 0;
}

.category-overview-card {
  padding: 22px;
}

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.category-overview-head h2,
.category-inline-links h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.category-overview-head a {
  flex-shrink: 0;
  color: var(--sand-700);
  font-weight: 800;
}

.filter-panel {
  margin-top: -30px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

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

.filter-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 800;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink-700);
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: 12px;
  outline: none;
}

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

.category-inline-links {
  margin-top: 28px;
  padding: 18px 22px;
}

.category-inline-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.detail-hero {
  padding: 54px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 12%, rgba(213, 166, 67, 0.40), transparent 42%),
    linear-gradient(135deg, #111827, #5f5138 56%, #111827);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--sand-100);
  border: 4px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.detail-one-line {
  max-width: 850px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.detail-meta span {
  color: #ffffff;
}

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

.player-section {
  padding: 48px 0 24px;
}

.player-box {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

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

.player-cover-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  color: var(--sand-700);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.12));
  border: 0;
  cursor: pointer;
}

.player-cover-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  padding-left: 5px;
  color: var(--sand-700);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 34px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.player-cover-button:hover span {
  transform: scale(1.06);
}

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

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

.detail-content article {
  padding: 26px;
}

.detail-content h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-content p {
  margin: 0 0 14px;
  color: var(--ink-700);
}

.site-footer {
  margin-top: 40px;
  padding: 46px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, #1f2937, #111827);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  color: #ffffff;
}

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

.site-footer p {
  max-width: 520px;
  margin: 14px 0 0;
}

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

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 14px;
}

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

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

  .header-search {
    display: none;
  }
}

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

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

  .site-nav {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--sand-200);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 14px;
  }

  .hero {
    height: 560px;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .search-band,
  .large-search,
  .category-overview-head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .large-search {
    display: grid;
  }

  .movie-grid,
  .movie-grid.two-col,
  .category-grid,
  .compact-list.four,
  .filter-grid,
  .footer-grid,
  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.horizontal {
    flex-direction: column;
  }

  .movie-card.horizontal .card-cover {
    width: 100%;
    height: 250px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    font-size: 18px;
  }

  .hero {
    height: 520px;
  }

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

  .hero-actions,
  .page-hero-actions,
  .quick-links {
    flex-direction: column;
  }

  .hero-arrow {
    display: none;
  }

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

  .card-cover {
    height: 230px;
  }

  .detail-hero,
  .compact-page {
    padding: 44px 0;
  }

  .player-cover-button span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
