:root {
  --color-bg: #fff7ed;
  --color-page: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-line: #e5e7eb;
  --color-soft: #f8fafc;
  --color-orange: #ea580c;
  --color-orange-dark: #c2410c;
  --color-red: #dc2626;
  --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #fffaf3 0%, #ffffff 28%, #fff7ed 100%);
  color: var(--color-text);
}

body::selection {
  background: rgba(234, 88, 12, 0.22);
}

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

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

main {
  min-height: 68vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.86);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  box-shadow: 0 10px 26px rgba(234, 88, 12, 0.32);
  font-size: 17px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand__name {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--color-orange), var(--color-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand__sub {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: #374151;
  font-weight: 650;
}

.nav-link {
  position: relative;
  transition: color 0.22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-red));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  color: #111827;
  font-size: 22px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.mobile-nav a {
  display: block;
  padding: 12px 10px;
  color: #374151;
  font-weight: 700;
  border-radius: 10px;
}

.mobile-nav a:hover {
  background: #fff7ed;
  color: var(--color-orange);
}

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

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #030712;
}

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

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

.hero-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6000ms ease;
}

.hero-slide.is-active .hero-slide__image {
  transform: scale(1.0);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 18%, rgba(234, 88, 12, 0.34), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.40), transparent 44%);
}

.hero-slide__content {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - 1180px) / 2));
  width: min(680px, calc(100% - 48px));
  transform: translateY(-50%);
  color: #ffffff;
}

.hero-slide__tags,
.detail-tags,
.genre-tags,
.movie-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-slide__tags span,
.detail-tags span,
.genre-tags span,
.movie-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.13);
  color: #c2410c;
  font-size: 12px;
  font-weight: 700;
}

.hero-slide__tags span {
  background: rgba(234, 88, 12, 0.96);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-slide h1 {
  margin: 18px 0 14px;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-slide p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.72;
}

.hero-slide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button,
.hero-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.button--primary,
.hero-search button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  box-shadow: 0 16px 30px rgba(234, 88, 12, 0.26);
}

.button--ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button--line {
  min-height: 42px;
  color: var(--color-orange);
  border: 1px solid rgba(234, 88, 12, 0.35);
  background: #ffffff;
}

.button--full {
  width: 100%;
}

.hero-search-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 82px;
  width: min(410px, calc(100% - 48px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: rgba(17, 24, 39, 0.56);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.hero-search-panel__label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

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

.hero-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 0 16px;
  outline: none;
  color: var(--color-text);
  background: #ffffff;
}

.hero-search input {
  border: 0;
}

.hero-rank-link {
  display: inline-flex;
  margin-top: 12px;
  color: #fed7aa;
  font-weight: 800;
}

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

.hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--color-orange);
}

.stats-band {
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.stat-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--color-orange);
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-weight: 700;
}

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

.content-section--muted {
  width: 100%;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background: #f8fafc;
}

.content-section--rank {
  padding-top: 46px;
}

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

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
}

.section-link {
  color: var(--color-orange);
  font-weight: 850;
  white-space: nowrap;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 88, 12, 0.28);
  box-shadow: var(--shadow-card);
}

.movie-card__cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fee2e2);
}

.movie-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.movie-card__badge {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(234, 88, 12, 0.92);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.movie-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.movie-card__body {
  padding: 15px;
}

.movie-card__title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: #111827;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.42;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card__title:hover {
  color: var(--color-orange);
}

.movie-card__desc {
  display: -webkit-box;
  min-height: 44px;
  margin: 9px 0 13px;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card__meta,
.ranking-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.movie-card__meta span,
.ranking-item__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f3f4f6;
}

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

.movie-card--horizontal .movie-card__cover {
  aspect-ratio: auto;
  min-height: 210px;
}

.movie-card--horizontal .movie-card__title {
  min-height: auto;
  font-size: 20px;
}

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

.category-tile {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #111827;
  box-shadow: var(--shadow-soft);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.78));
}

.category-tile__content {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  color: #ffffff;
}

.category-tile strong {
  font-size: 22px;
}

.category-tile em {
  color: #fed7aa;
  font-style: normal;
  font-weight: 800;
}

.category-tile small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px max(16px, calc((100vw - 1180px) / 2));
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.26), transparent 26%),
    linear-gradient(135deg, #9a3412, #ea580c 44%, #dc2626);
}

.page-hero--compact {
  min-height: 300px;
  display: flex;
  align-items: center;
}

.page-hero--category {
  min-height: 320px;
}

.page-hero--ranking {
  background:
    radial-gradient(circle at 76% 12%, rgba(251, 191, 36, 0.36), transparent 28%),
    linear-gradient(135deg, #111827, #7c2d12 48%, #dc2626);
}

.page-hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-hero__meta span {
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(3, minmax(150px, 0.8fr));
  gap: 14px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-bar label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.filter-bar span {
  color: #4b5563;
  font-size: 13px;
  font-weight: 800;
}

.filter-bar input,
.filter-bar select {
  border-radius: 14px;
}

.result-count {
  margin: 0 0 24px;
  color: var(--color-muted);
  font-weight: 700;
}

.result-count strong {
  color: var(--color-orange);
}

.empty-state {
  padding: 50px;
  border: 1px dashed rgba(234, 88, 12, 0.38);
  border-radius: var(--radius-md);
  color: var(--color-muted);
  text-align: center;
  background: #fff7ed;
}

.category-overview {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.category-overview + .category-overview {
  margin-top: 28px;
}

.category-overview__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.category-overview h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.category-overview p {
  margin: 0 0 8px;
  color: var(--color-muted);
}

.category-overview span {
  color: var(--color-orange);
  font-weight: 850;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 72px 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.ranking-item--top {
  border-color: rgba(234, 88, 12, 0.36);
  background: linear-gradient(90deg, #fff7ed, #ffffff);
}

.ranking-item__num {
  color: var(--color-orange);
  font-size: 32px;
  font-weight: 950;
  text-align: center;
}

.ranking-item__cover {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f4f6;
}

.ranking-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-item__title {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 900;
}

.ranking-item__title:hover {
  color: var(--color-orange);
}

.ranking-item p {
  display: -webkit-box;
  max-width: 840px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--color-muted);
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.player-section {
  background: #020617;
}

.player-shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.player-overlay-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  box-shadow: 0 18px 45px rgba(234, 88, 12, 0.32);
  font-size: 30px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.player-shell.is-playing .player-overlay-button {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}

.player-tools {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
}

.player-tools button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 9px 13px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  padding: 42px 0 16px;
}

.detail-main,
.side-card,
.detail-panel,
.prose-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-main {
  padding: 32px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

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

.detail-main h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-one-line {
  margin: 0 0 24px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.detail-meta-grid div {
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
}

.detail-meta-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 12px;
}

.detail-meta-grid span {
  color: #111827;
  font-weight: 850;
}

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

.detail-panel {
  padding: 24px;
  margin-top: 18px;
  box-shadow: none;
}

.detail-panel h2,
.prose-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-panel p,
.prose-panel p {
  margin: 0;
  color: #4b5563;
  line-height: 1.95;
}

.side-card {
  position: sticky;
  top: 104px;
  padding: 16px;
}

.side-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 14px;
  background: #f3f4f6;
}

.side-card .button + .button {
  margin-top: 10px;
}

.prose-panel {
  padding: 34px;
}

.site-footer {
  margin-top: 28px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937 62%, #030712);
}

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

.footer-brand {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer p,
.site-footer li {
  color: #9ca3af;
  line-height: 1.75;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer a:hover {
  color: #fb923c;
}

.footer-small {
  font-size: 13px;
}

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

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

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

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

  .side-card {
    position: static;
  }

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

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

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .brand__name {
    font-size: 20px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-slide__content {
    top: 38%;
  }

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

  .hero-search {
    flex-direction: column;
  }

  .hero-search button {
    width: 100%;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -24px;
  }

  .content-section,
  .content-section--muted {
    width: min(100% - 32px, 1180px);
    padding: 48px 0;
  }

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

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

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

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

  .ranking-item {
    grid-template-columns: 52px 86px minmax(0, 1fr);
    gap: 12px;
  }

  .ranking-item__num {
    font-size: 24px;
  }

  .ranking-item__title {
    font-size: 17px;
  }

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

  .detail-main {
    padding: 22px;
  }

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

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