* {
  box-sizing: border-box;
}

:root {
  --forest-950: #0a140d;
  --forest-900: #152819;
  --forest-850: #19301d;
  --forest-800: #224126;
  --forest-700: #2f5a33;
  --earth-950: #1c1710;
  --earth-900: #352b1f;
  --earth-800: #4a3d2b;
  --moss-700: #455234;
  --moss-600: #59693f;
  --moss-500: #6d8350;
  --moss-400: #8a9f6e;
  --parchment-100: #f5f2ed;
  --parchment-200: #ebe4d9;
  --parchment-300: #dfd4c1;
  --parchment-400: #d3c4a9;
  --black-50: rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 4px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 8px 40px -8px rgba(0, 0, 0, 0.15), 0 15px 50px -10px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--parchment-100);
  background: linear-gradient(180deg, var(--forest-950) 0%, var(--forest-900) 48%, var(--earth-950) 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(34, 65, 38, 0.85);
  background: rgba(21, 40, 25, 0.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--parchment-100);
  background: linear-gradient(135deg, var(--moss-700), var(--moss-500));
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin-top: 3px;
  color: var(--parchment-300);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1;
}

.nav-link {
  color: var(--parchment-200);
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--parchment-100);
  transform: translateY(-1px);
}

.nav-link-muted {
  color: var(--parchment-300);
  font-size: 14px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: rgba(34, 65, 38, 0.65);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--parchment-100);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(34, 65, 38, 0.75);
  background: rgba(10, 20, 13, 0.98);
}

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

.mobile-menu-panel {
  display: grid;
  gap: 12px;
  padding: 18px 0 22px;
}

.mobile-menu-panel a {
  display: block;
  padding: 10px 0;
  color: var(--parchment-200);
  font-weight: 650;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--forest-950);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: radial-gradient(circle at 25% 20%, rgba(109, 131, 80, 0.48), transparent 30%), linear-gradient(135deg, var(--earth-800), var(--forest-950));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--forest-950) 0%, rgba(10, 20, 13, 0.82) 43%, rgba(10, 20, 13, 0.08) 100%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 108px;
  transform: translateX(-50%);
  max-width: 1180px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--moss-400);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--parchment-100);
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--parchment-200);
  font-size: 18px;
  line-height: 1.75;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-tags span,
.detail-tags span,
.tag-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--parchment-100);
  background: rgba(34, 65, 38, 0.82);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  color: var(--parchment-300);
  font-size: 14px;
}

.hero-meta span {
  position: relative;
}

.hero-meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--moss-500);
  transform: translateY(-50%);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--moss-600);
  box-shadow: var(--shadow-medium);
}

.button-primary:hover {
  background: var(--moss-500);
}

.button-ghost {
  color: var(--parchment-100);
  border-color: rgba(245, 242, 237, 0.25);
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
}

.button-muted {
  color: var(--parchment-100);
  background: rgba(34, 65, 38, 0.8);
}

.full-button {
  width: 100%;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.hero-search {
  position: absolute;
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 36px;
  z-index: 4;
  display: flex;
  width: min(420px, calc(100% - 32px));
  overflow: hidden;
  border: 1px solid rgba(245, 242, 237, 0.18);
  border-radius: 14px;
  background: rgba(10, 20, 13, 0.72);
  backdrop-filter: blur(12px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--parchment-100);
  background: transparent;
}

.hero-search input::placeholder {
  color: var(--parchment-400);
}

.hero-search button {
  border: 0;
  padding: 0 18px;
  color: #ffffff;
  background: var(--moss-600);
  font-weight: 800;
  cursor: pointer;
}

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

.section-band {
  background: rgba(53, 43, 31, 0.3);
}

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

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
}

.section-title p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--parchment-300);
}

.section-more {
  color: var(--moss-400);
  font-weight: 800;
  white-space: nowrap;
}

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

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

.movie-card {
  min-width: 0;
}

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

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(34, 65, 38, 0.55);
  border-radius: 16px;
  background: rgba(53, 43, 31, 0.4);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card-link:hover {
  border-color: rgba(109, 131, 80, 0.72);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px) scale(1.01);
}

.cover-shell {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: radial-gradient(circle at 35% 20%, rgba(109, 131, 80, 0.55), transparent 30%), linear-gradient(135deg, var(--earth-800), var(--forest-950));
}

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

.cover-img.is-missing {
  opacity: 0;
}

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

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

.movie-card-link:hover .cover-shade,
.detail-poster .cover-shade {
  opacity: 1;
}

.play-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(89, 105, 63, 0.92);
  box-shadow: var(--shadow-medium);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.tag-strip {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 24px);
}

.rank-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.movie-card-body {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.movie-card-body strong {
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  color: var(--parchment-100);
  font-size: 18px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card-link:hover .movie-card-body strong {
  color: var(--moss-400);
}

.movie-desc {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: var(--parchment-300);
  font-size: 14px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--parchment-400);
  font-size: 12px;
}

.movie-meta span {
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(34, 65, 38, 0.6);
}

.movie-heat {
  color: var(--moss-400);
  font-size: 12px;
  font-weight: 800;
}

.ranking-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(109, 131, 80, 0.4);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(34, 65, 38, 0.8), rgba(53, 43, 31, 0.52));
  box-shadow: var(--shadow-medium);
}

.ranking-entry-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  color: #ffffff;
  background: var(--moss-600);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ranking-entry span:nth-child(2) {
  display: grid;
  flex: 1;
  gap: 4px;
}

.ranking-entry strong {
  font-size: 24px;
}

.ranking-entry em {
  color: var(--parchment-300);
  font-style: normal;
}

.ranking-entry b {
  color: var(--moss-400);
}

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

.category-card,
.category-overview-card a {
  position: relative;
  display: block;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(34, 65, 38, 0.68);
  border-radius: 18px;
  background: var(--earth-900);
  box-shadow: var(--shadow-soft);
}

.category-bg,
.overview-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--earth-800);
  transition: transform 0.45s ease;
}

.category-card:hover .category-bg,
.category-overview-card a:hover .overview-cover {
  transform: scale(1.06);
}

.category-shade,
.category-card::after,
.category-overview-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 20, 13, 0.95), rgba(10, 20, 13, 0.4));
}

.category-content,
.overview-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 190px;
  padding: 18px;
}

.category-content strong,
.overview-body strong {
  font-size: 22px;
  font-weight: 900;
}

.category-content em,
.overview-body em {
  margin: 6px 0;
  color: var(--moss-400);
  font-style: normal;
  font-weight: 800;
}

.category-content small,
.overview-body small,
.overview-body span {
  color: var(--parchment-300);
}

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

.category-overview-card a {
  min-height: 250px;
}

.overview-body {
  min-height: 250px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.side-panel,
.text-panel {
  border: 1px solid rgba(34, 65, 38, 0.62);
  border-radius: 18px;
  background: rgba(53, 43, 31, 0.36);
  box-shadow: var(--shadow-soft);
}

.side-panel {
  padding: 24px;
}

.side-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.side-panel p {
  color: var(--parchment-300);
}

.sticky-panel {
  position: sticky;
  top: 88px;
}

.stat-links {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

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

.stat-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--parchment-200);
  background: rgba(34, 65, 38, 0.58);
}

.stat-links em {
  color: var(--moss-400);
  font-style: normal;
  font-weight: 800;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 12%, rgba(109, 131, 80, 0.32), transparent 28%), linear-gradient(180deg, var(--forest-950), var(--forest-900));
}

.compact-hero {
  padding: 74px 0 56px;
}

.compact-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.1;
}

.compact-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--parchment-300);
  font-size: 17px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--parchment-300);
  font-size: 14px;
}

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

.filter-panel {
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid rgba(34, 65, 38, 0.7);
  border-radius: 18px;
  background: rgba(21, 40, 25, 0.7);
  box-shadow: var(--shadow-soft);
}

.filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--parchment-100);
  font-weight: 850;
}

.filter-heading em {
  color: var(--parchment-300);
  font-style: normal;
}

.filter-heading b {
  color: var(--moss-400);
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) repeat(3, minmax(140px, 0.7fr)) auto;
  gap: 12px;
  align-items: end;
}

.filter-row label {
  display: grid;
  gap: 7px;
  color: var(--parchment-300);
  font-size: 13px;
  font-weight: 700;
}

.filter-row input,
.filter-row select {
  min-height: 44px;
  border: 1px solid rgba(223, 212, 193, 0.12);
  border-radius: 12px;
  outline: 0;
  padding: 0 12px;
  color: var(--parchment-100);
  background: rgba(10, 20, 13, 0.72);
}

.filter-row select option {
  color: #111111;
}

.empty-state {
  display: none;
  margin-top: 20px;
  padding: 28px;
  border: 1px dashed rgba(211, 196, 169, 0.35);
  border-radius: 18px;
  color: var(--parchment-300);
  text-align: center;
}

.empty-state.is-visible {
  display: block;
}

.ranking-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 54px 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(34, 65, 38, 0.62);
  border-radius: 16px;
  background: rgba(53, 43, 31, 0.36);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-row:hover {
  border-color: var(--moss-500);
  transform: translateX(4px);
}

.ranking-row img {
  width: 96px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--earth-800);
}

.ranking-num {
  color: var(--moss-400);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.ranking-info {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.ranking-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-info em {
  overflow: hidden;
  color: var(--parchment-300);
  font-size: 13px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-row b {
  color: var(--moss-400);
}

.detail-hero {
  min-height: 620px;
  padding: 74px 0 68px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: blur(2px) saturate(1.08);
}

.detail-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--forest-950), rgba(10, 20, 13, 0.78) 46%, rgba(10, 20, 13, 0.88));
}

.detail-hero-content {
  position: relative;
  z-index: 2;
}

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

.detail-poster {
  aspect-ratio: 2 / 3;
  border: 1px solid rgba(245, 242, 237, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 780px;
  margin: 0 0 20px;
  color: var(--parchment-200);
  font-size: 18px;
  line-height: 1.75;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 28px;
}

.detail-meta div {
  padding: 14px;
  border: 1px solid rgba(223, 212, 193, 0.12);
  border-radius: 14px;
  background: rgba(10, 20, 13, 0.42);
}

.detail-meta dt {
  color: var(--parchment-400);
  font-size: 12px;
}

.detail-meta dd {
  margin: 6px 0 0;
  color: var(--parchment-100);
  font-weight: 850;
}

.player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 65, 38, 0.8);
  border-radius: 22px;
  background: #000000;
  box-shadow: var(--shadow-strong);
}

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

.player-overlay-button {
  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 at 50% 45%, rgba(89, 105, 63, 0.3), rgba(0, 0, 0, 0.72));
  cursor: pointer;
}

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

.player-overlay-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--moss-600);
  box-shadow: var(--shadow-medium);
  font-size: 36px;
}

.player-overlay-button strong {
  max-width: 80%;
  font-size: 24px;
  text-align: center;
}

.player-status {
  margin: 0;
  padding: 12px 16px;
  color: var(--parchment-300);
  background: rgba(10, 20, 13, 0.96);
  font-size: 14px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.text-panel {
  padding: 26px;
}

.text-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.text-panel p {
  margin: 0;
  color: var(--parchment-200);
  line-height: 1.9;
}

.site-footer {
  border-top: 1px solid rgba(34, 65, 38, 0.9);
  background: var(--forest-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 0.8fr;
  gap: 32px;
  padding: 46px 0 30px;
}

.footer-brand-line {
  margin-bottom: 16px;
}

.footer-brand p,
.footer-bottom p {
  color: var(--parchment-300);
}

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

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--parchment-300);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--parchment-100);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 32px;
  border-top: 1px solid rgba(34, 65, 38, 0.8);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 12px;
  }

  .nav-link-muted {
    display: none;
  }

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

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

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

  .sticky-panel {
    position: static;
  }

  .detail-grid {
    grid-template-columns: 300px minmax(0, 1fr);
  }

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

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

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .hero-carousel {
    height: auto;
    min-height: 620px;
  }

  .hero-content {
    bottom: 130px;
  }

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

  .hero-arrow {
    display: none;
  }

  .hero-search {
    left: 16px;
    right: 16px;
    bottom: 70px;
    width: auto;
  }

  .section-title {
    display: grid;
  }

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

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

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

  .detail-poster {
    width: min(320px, 82vw);
  }

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

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

  .footer-bottom {
    display: grid;
  }
}

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

  .brand-title {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

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

  .hero-content {
    bottom: 150px;
  }

  .hero-actions,
  .hero-meta {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .movie-grid,
  .movie-grid-compact,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .ranking-entry,
  .ranking-row {
    grid-template-columns: 1fr;
  }

  .ranking-entry-mark {
    width: 54px;
    height: 54px;
  }

  .ranking-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

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

  .player-overlay-button span {
    width: 66px;
    height: 66px;
    font-size: 28px;
  }

  .player-overlay-button strong {
    font-size: 18px;
  }

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