:root {
  --earth-900: #573729;
  --earth-800: #6a4130;
  --earth-700: #814e34;
  --bronze-600: #98724c;
  --bronze-500: #a68558;
  --bronze-300: #d0bd9f;
  --bronze-100: #f1ede3;
  --clay-100: #f0ebe6;
  --stone-900: #292524;
  --stone-700: #57534e;
  --stone-600: #78716c;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #efede6;
  --stone-50: #f8f7f4;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(87, 55, 41, 0.12);
  --shadow-strong: 0 28px 70px rgba(47, 28, 21, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-900);
  background: var(--stone-50);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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: var(--earth-800);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(43, 25, 17, 0.22);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.55rem;
}

.brand:hover,
.nav-link:hover,
.footer-links a:hover {
  color: var(--bronze-300);
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bronze-500), var(--bronze-300));
  color: var(--earth-900);
  font-size: 0.82rem;
  box-shadow: 0 10px 24px rgba(166, 133, 88, 0.35);
}

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

.nav-link {
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link.active {
  color: var(--bronze-300);
}

.top-search {
  display: flex;
  align-items: center;
  width: 330px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.top-search input,
.mobile-search input,
.filter-row input,
.filter-row select {
  min-width: 0;
  border: 0;
  outline: 0;
}

.top-search input {
  width: 100%;
  color: var(--white);
  background: transparent;
  padding: 10px 14px;
}

.top-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.top-search button,
.mobile-search button {
  cursor: pointer;
  border: 0;
  background: var(--bronze-500);
  color: var(--white);
  padding: 10px 18px;
  font-weight: 700;
  transition: background 0.2s ease;
}

.top-search button:hover,
.mobile-search button:hover,
.primary-btn:hover {
  background: var(--bronze-600);
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

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

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

.mobile-links,
.quick-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
}

.mobile-links a,
.quick-category-links a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 13px;
}

.mobile-search {
  display: flex;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.mobile-search input {
  flex: 1;
  color: var(--white);
  background: transparent;
  padding: 12px 14px;
}

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--earth-900), var(--bronze-600));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-backdrop,
.editor-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(208, 189, 159, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(47, 28, 21, 0.96), rgba(87, 55, 41, 0.82) 46%, rgba(87, 55, 41, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 54px;
  padding: 72px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bronze-300);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.86rem;
  font-weight: 750;
  margin-bottom: 18px;
}

.hero-copy h1,
.page-hero h1,
.video-heading h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.hero-copy p,
.page-hero p {
  margin: 24px 0 0;
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  color: rgba(255, 255, 255, 0.84);
}

.hero-tags,
.tag-cloud,
.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-tags span,
.tag-cloud span,
.meta-pills span,
.meta-pills a {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.86rem;
  font-weight: 650;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.primary-btn,
.ghost-btn,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  color: var(--white);
  background: var(--bronze-500);
  box-shadow: 0 16px 34px rgba(166, 133, 88, 0.32);
  padding: 14px 24px;
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 13px 22px;
  backdrop-filter: blur(12px);
}

.hero-poster {
  position: relative;
  display: block;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform: rotate(1.5deg);
}

.hero-poster img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-poster:hover img {
  transform: scale(1.08);
}

.hero-poster span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-weight: 750;
}

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

.hero-dots button {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--bronze-300);
}

.content-section,
.detail-layout,
.video-heading > div,
.footer-grid,
.footer-bottom,
.page-hero > div {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.content-section {
  padding: 70px 0;
}

.muted-section {
  width: 100%;
  max-width: none;
  background: var(--stone-100);
}

.muted-section > .section-head,
.muted-section > .grid,
.gradient-section > .section-head,
.gradient-section > .classic-list {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.gradient-section {
  width: 100%;
  max-width: none;
  background: linear-gradient(90deg, var(--clay-100), var(--bronze-100));
}

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

.section-head h2 {
  margin: 0;
  color: var(--earth-900);
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--stone-600);
}

.section-more {
  color: var(--earth-900);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 10px 16px;
  white-space: nowrap;
}

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

.featured-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

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

.card-grid.six-cols {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(87, 55, 41, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(87, 55, 41, 0.18);
}

.poster-wrap {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--earth-900), var(--bronze-600));
}

.movie-card.large .poster-wrap {
  height: 340px;
}

.movie-card.small .poster-wrap {
  height: 190px;
}

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

.movie-card:hover .poster-wrap img,
.compact-card:hover img,
.classic-row:hover img {
  transform: scale(1.1);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.14), transparent);
}

.poster-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--white);
}

.poster-meta strong,
.card-title {
  display: block;
  font-weight: 850;
}

.poster-meta strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.poster-meta span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.card-body {
  display: block;
  padding: 16px;
}

.card-title {
  color: var(--earth-900);
  line-height: 1.35;
}

.card-desc {
  display: -webkit-box;
  min-height: 44px;
  margin-top: 9px;
  overflow: hidden;
  color: var(--stone-600);
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--stone-600);
  font-size: 0.78rem;
}

.card-foot span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-foot em {
  flex: 0 0 auto;
  font-style: normal;
  color: var(--earth-800);
  background: var(--bronze-100);
  border-radius: 999px;
  padding: 5px 9px;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 330px);
  gap: 22px;
  overflow-x: auto;
  padding: 4px 2px 20px;
  scroll-snap-type: x mandatory;
}

.scroll-row .movie-card {
  scroll-snap-align: start;
}

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

.classic-row {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.classic-row img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.classic-row span {
  display: block;
  padding: 18px 22px 18px 0;
}

.classic-row strong {
  display: block;
  color: var(--earth-900);
  font-size: 1.45rem;
  line-height: 1.25;
}

.classic-row em {
  display: block;
  margin: 9px 0;
  color: var(--stone-600);
  font-style: normal;
}

.classic-row small {
  color: var(--stone-600);
}

.editor-section {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  color: var(--white);
}

.editor-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(47, 28, 21, 0.96), rgba(47, 28, 21, 0.78));
}

.editor-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.editor-section .section-head h2,
.editor-section .section-head p {
  color: var(--white);
}

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

.editor-card {
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.editor-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

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

.editor-card strong {
  font-size: 1.45rem;
  line-height: 1.25;
}

.editor-card span {
  margin: 14px 0;
  color: rgba(255, 255, 255, 0.78);
}

.editor-card em {
  color: var(--bronze-300);
  font-style: normal;
}

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

.category-tile,
.category-overview-card {
  display: block;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(87, 55, 41, 0.16);
}

.category-tile strong,
.category-overview-card strong {
  display: block;
  color: var(--earth-900);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.category-tile span,
.category-overview-card em {
  color: var(--stone-600);
  font-style: normal;
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  height: 120px;
  margin-bottom: 18px;
}

.category-cover-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.page-hero,
.video-heading {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(208, 189, 159, 0.28), transparent 32%),
    linear-gradient(135deg, var(--earth-900), var(--earth-700), var(--bronze-600));
}

.page-hero > div,
.video-heading > div {
  padding: 66px 0;
}

.compact-hero > div {
  padding: 78px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

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

.breadcrumb strong {
  color: var(--bronze-300);
}

.filter-box {
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 14px;
}

.filter-row input,
.filter-row select {
  width: 100%;
  border-radius: 12px;
  background: var(--stone-50);
  color: var(--stone-900);
  padding: 13px 14px;
  border: 1px solid var(--stone-200);
}

.filter-status {
  margin-top: 12px;
  color: var(--stone-600);
  font-size: 0.92rem;
}

.catalog-grid {
  align-items: stretch;
}

.catalog-grid .movie-card.is-hidden {
  display: none;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 120px 1fr;
  gap: 18px;
  align-items: center;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(87, 55, 41, 0.09);
  padding: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.rank-num {
  display: inline-flex;
  justify-content: center;
  color: var(--bronze-500);
  font-weight: 900;
  font-size: 1.45rem;
}

.rank-row img {
  width: 120px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-info strong,
.rank-info small,
.rank-info em {
  display: block;
}

.rank-info strong {
  color: var(--earth-900);
  font-size: 1.1rem;
}

.rank-info small,
.rank-info em {
  color: var(--stone-600);
  font-style: normal;
}

.rank-info em {
  margin-top: 4px;
}

.rank-side {
  position: sticky;
  top: 96px;
  align-self: start;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 22px;
}

.rank-side h2 {
  margin: 0 0 16px;
  color: var(--earth-900);
}

.rank-side a {
  display: block;
  border-bottom: 1px solid var(--stone-200);
  padding: 11px 0;
  color: var(--stone-700);
}

.rank-side a:hover {
  color: var(--bronze-600);
}

.video-heading h1 {
  font-size: clamp(2.05rem, 4vw, 3.8rem);
}

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

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card,
.detail-panel,
.related-panel {
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
  background: #000000;
  box-shadow: var(--shadow-strong);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--white);
  overflow: hidden;
  background: #000000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.10));
}

.play-orb {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(166, 133, 88, 0.92);
  color: var(--white);
  font-size: 2.05rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  padding-left: 5px;
}

.detail-panel,
.related-panel {
  padding: 28px;
}

.meta-pills {
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--stone-200);
}

.meta-pills span,
.meta-pills a,
.tag-cloud span {
  background: var(--stone-100);
  color: var(--earth-800);
}

.meta-pills a:hover {
  background: var(--bronze-100);
}

.detail-panel h2,
.related-panel h2 {
  margin: 24px 0 14px;
  color: var(--earth-900);
  font-size: 1.55rem;
  line-height: 1.25;
}

.detail-panel h2:first-of-type,
.related-panel h2:first-child {
  margin-top: 0;
}

.detail-panel p {
  margin: 0 0 16px;
  color: var(--stone-700);
}

.lead-text {
  font-weight: 700;
  color: var(--earth-800) !important;
}

.tag-cloud {
  margin: 20px 0 6px;
}

.related-panel {
  align-self: start;
  position: sticky;
  top: 96px;
}

.related-list {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.compact-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: center;
}

.compact-card img {
  width: 110px;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.compact-card span {
  min-width: 0;
}

.compact-card strong,
.compact-card small {
  display: block;
}

.compact-card strong {
  color: var(--earth-900);
  line-height: 1.35;
}

.compact-card small {
  color: var(--stone-600);
}

.primary-btn.full {
  width: 100%;
}

.site-footer {
  background: var(--earth-900);
  color: var(--stone-200);
}

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

.footer-brand {
  color: var(--bronze-300);
}

.footer-grid p {
  margin: 14px 0 0;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--bronze-300);
  font-size: 1.1rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s ease;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

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

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
  }

  .hero-poster {
    min-height: 360px;
    max-width: 360px;
    transform: none;
  }

  .hero-poster img {
    height: 360px;
  }

  .featured-grid,
  .card-grid.four-cols,
  .catalog-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.six-cols,
  .editor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .related-panel,
  .rank-side {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 64px;
  }

  .brand,
  .footer-brand {
    font-size: 1.28rem;
  }

  .hero-carousel,
  .hero-content {
    min-height: 760px;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .section-head,
  .filter-row {
    flex-direction: column;
    display: flex;
    align-items: stretch;
  }

  .hero-poster {
    max-width: none;
  }

  .featured-grid,
  .card-grid.four-cols,
  .card-grid.six-cols,
  .catalog-grid,
  .category-grid,
  .category-overview-grid,
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .classic-row {
    grid-template-columns: 1fr;
  }

  .classic-row img {
    height: 220px;
  }

  .classic-row span {
    padding: 0 20px 20px;
  }

  .rank-row {
    grid-template-columns: 42px 90px 1fr;
    gap: 12px;
  }

  .rank-row img {
    width: 90px;
    height: 66px;
  }

  .detail-panel,
  .related-panel {
    padding: 22px;
  }

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