:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --stone-950: #0c0a09;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-50: #fff7ed;
  --red-500: #ef4444;
  --blue-500: #3b82f6;
  --green-500: #22c55e;
  --purple-500: #a855f7;
  --shadow-soft: 0 10px 30px rgba(28, 25, 23, 0.10);
  --shadow-strong: 0 24px 70px rgba(28, 25, 23, 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-800);
  background: linear-gradient(180deg, var(--stone-50), #ffffff 48%, #ffffff);
  line-height: 1.6;
  min-width: 320px;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.88), rgba(28, 25, 23, 0));
  transition: background 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--stone-800);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.12);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark,
.footer-logo span {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.42);
  font-size: 14px;
}

.brand-text {
  font-size: clamp(20px, 2.2vw, 26px);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.site-header.is-scrolled .brand-text,
.site-header.nav-open .brand-text {
  text-shadow: none;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 700;
  opacity: 0.92;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-500);
  opacity: 1;
  transform: translateY(-1px);
}

.nav-search,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search input,
.mobile-search input,
.filter-field,
.filter-select,
.search-hero-form input {
  border: 1px solid rgba(255, 255, 255, 0.22);
  outline: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 11px 48px 11px 18px;
  min-width: 220px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled .nav-search input,
.site-header.nav-open .nav-search input,
.mobile-search input,
.filter-field,
.filter-select,
.search-hero-form input {
  color: var(--stone-900);
  background: var(--stone-100);
  border-color: var(--stone-200);
}

.nav-search input::placeholder,
.mobile-search input::placeholder,
.search-hero-form input::placeholder {
  color: currentColor;
  opacity: 0.58;
}

.nav-search input:focus,
.mobile-search input:focus,
.filter-field:focus,
.filter-select:focus,
.search-hero-form input:focus {
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
  border-color: var(--amber-500);
  background: #ffffff;
}

.nav-search button,
.mobile-search button,
.search-hero-form button {
  border: 0;
  color: #ffffff;
  background: var(--amber-500);
  border-radius: 999px;
  padding: 9px 14px;
  position: absolute;
  right: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-search button:hover,
.mobile-search button:hover,
.search-hero-form button:hover,
.primary-btn:hover {
  background: var(--amber-600);
  transform: translateY(-1px);
}

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

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

.mobile-panel {
  display: none;
  max-width: 1280px;
  margin: 0 auto 14px;
  padding: 16px 24px 20px;
}

.site-header.nav-open .mobile-panel {
  display: block;
}

.mobile-search {
  width: 100%;
  margin-bottom: 14px;
}

.mobile-search input {
  width: 100%;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 12px;
}

.mobile-nav-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--stone-700);
  font-weight: 700;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--amber-600);
  background: var(--amber-50);
}

.hero {
  position: relative;
  min-height: 70vh;
  height: 80vh;
  overflow: hidden;
  background: var(--stone-950);
}

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

.hero-slide.is-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.92), rgba(0, 0, 0, 0.42) 52%, rgba(0, 0, 0, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 72px;
  display: flex;
  align-items: flex-end;
}

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

.hero-kicker,
.chip-row,
.movie-meta-row,
.detail-tags,
.stat-grid,
.breadcrumb,
.category-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero h1 {
  margin: 20px 0 14px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.36);
}

.hero p {
  margin: 0 0 28px;
  max-width: 720px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.90);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

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

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

.primary-btn {
  color: #ffffff;
  background: var(--amber-500);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.34);
  padding: 15px 24px;
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.hero-dots {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 36px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

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

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

.page-shell,
.home-sections {
  max-width: 1280px;
  margin: 0 auto;
  padding: 112px 24px 0;
}

.home-sections {
  padding-top: 72px;
}

.spaced-sections {
  display: grid;
  gap: 86px;
}

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

.section-title-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--amber-100);
  color: var(--amber-600);
  font-size: 18px;
}

.section-heading h1,
.section-heading h2,
.page-title h1 {
  margin: 0;
  color: var(--stone-800);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading p,
.page-title p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--stone-600);
}

.section-more {
  color: var(--amber-600);
  background: var(--amber-50);
  padding: 10px 16px;
}

.section-more:hover,
.load-more-btn:hover {
  color: #ffffff;
  background: var(--amber-500);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.22);
}

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

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

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

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

.movie-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.movie-card-link {
  display: block;
  height: 100%;
}

.movie-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--stone-200), var(--stone-100));
}

.movie-card-large .movie-thumb {
  aspect-ratio: 16 / 9;
}

.movie-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.movie-card:hover .movie-thumb img,
.related-item:hover img,
.rank-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.movie-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.06) 58%, rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-thumb::after {
  opacity: 1;
}

.year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card-body {
  padding: 18px;
}

.movie-card-body h3 {
  margin: 10px 0 6px;
  font-size: 20px;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.movie-card:hover h3,
.related-item:hover h3,
.rank-item:hover h3 {
  color: var(--amber-600);
}

.movie-card-body p {
  margin: 0 0 12px;
  color: var(--stone-600);
  font-size: 14px;
}

.movie-meta-row {
  justify-content: space-between;
  color: var(--stone-500);
  font-size: 13px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.chip.amber {
  color: var(--amber-600);
  background: var(--amber-100);
}

.chip.soft {
  color: var(--stone-700);
  background: var(--stone-100);
}

.chip.light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.feature-band,
.category-band,
.editor-band,
.search-hero,
.ranking-hero {
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, var(--stone-100), #ffffff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.editor-band {
  background: linear-gradient(135deg, var(--amber-50), var(--orange-50));
}

.scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 340px);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

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

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

.category-card {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--stone-900), var(--stone-700));
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:nth-child(3n + 1) {
  background: linear-gradient(135deg, #451a03, var(--amber-600));
}

.category-card:nth-child(3n + 2) {
  background: linear-gradient(135deg, #1e1b4b, #7c3aed);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.category-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  right: -56px;
  bottom: -56px;
  background: rgba(255, 255, 255, 0.14);
}

.category-card h2,
.category-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 26px;
}

.category-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 20px;
}

.category-card-meta {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.filters {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 26px;
  padding: 18px;
  border: 1px solid var(--stone-200);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(28, 25, 23, 0.06);
}

.filter-field {
  min-width: min(100%, 300px);
}

.filter-select {
  appearance: none;
  padding-right: 38px;
}

.filter-count {
  margin-left: auto;
  color: var(--stone-500);
  font-size: 14px;
  font-weight: 700;
}

.page-title {
  margin-bottom: 34px;
}

.breadcrumb {
  color: var(--stone-500);
  font-size: 14px;
  margin: 0 0 22px;
}

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

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

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

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.18));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.22s ease;
  z-index: 2;
}

.movie-player.is-playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.big-play {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.95);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  font-size: 28px;
}

.overlay-title {
  max-width: 84%;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.42);
}

.detail-card,
.review-card,
.related-panel,
.rank-list,
.search-results-panel {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 3vw, 28px);
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

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

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
  margin-bottom: 22px;
}

.stat-box {
  color: var(--stone-600);
}

.stat-box strong {
  display: block;
  color: var(--stone-800);
  font-size: 18px;
}

.detail-card h2,
.review-card h2,
.related-panel h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-card p,
.review-card p {
  color: var(--stone-600);
  margin: 0;
  white-space: pre-line;
}

.review-card {
  background: linear-gradient(135deg, var(--amber-50), var(--orange-50));
}

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

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

.related-item,
.rank-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  padding: 10px;
  transition: background 0.2s ease;
}

.related-item:hover,
.rank-item:hover {
  background: var(--stone-50);
}

.related-thumb,
.rank-thumb {
  width: 120px;
  height: 76px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--stone-100);
}

.related-thumb img,
.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-item h3,
.rank-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.35;
}

.related-item p,
.rank-item p {
  margin: 0;
  color: var(--stone-500);
  font-size: 12px;
}

.ranking-hero,
.search-hero {
  margin-bottom: 34px;
  background: linear-gradient(135deg, var(--stone-900), var(--stone-700));
  color: #ffffff;
}

.ranking-hero h1,
.search-hero h1 {
  color: #ffffff;
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 66px);
  letter-spacing: -0.06em;
}

.ranking-hero p,
.search-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 740px;
}

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

.rank-number {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  font-weight: 900;
}

.search-hero-form {
  position: relative;
  max-width: 760px;
  margin-top: 24px;
}

.search-hero-form input {
  width: 100%;
  padding: 16px 120px 16px 22px;
  color: var(--stone-900);
  background: #ffffff;
}

.search-hero-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  border: 0;
  min-width: 96px;
}

.empty-state {
  display: none;
  color: var(--stone-500);
  border-radius: 18px;
  padding: 22px;
  background: var(--stone-50);
}

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

.load-more-wrap {
  text-align: center;
  margin-top: 32px;
}

.load-more-btn {
  border: 0;
  color: var(--amber-600);
  background: var(--amber-50);
  padding: 13px 22px;
}

.clamp-1,
.clamp-2,
.clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-1 {
  -webkit-line-clamp: 1;
}

.clamp-2 {
  -webkit-line-clamp: 2;
}

.clamp-3 {
  -webkit-line-clamp: 3;
}

.movie-card-list .movie-card-link {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
}

.movie-card-list .movie-thumb {
  height: 100%;
  min-height: 178px;
  aspect-ratio: auto;
}

@media (max-width: 720px) {
  .movie-card-list .movie-card-link {
    grid-template-columns: 1fr;
  }

  .movie-card-list .movie-thumb {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

.site-footer {
  margin-top: 96px;
  color: var(--stone-300, #d6d3d1);
  background: linear-gradient(180deg, var(--stone-900), var(--stone-950));
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 44px;
}

.footer-logo {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: #a8a29e;
  margin: 0;
  max-width: 480px;
}

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

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-col a {
  color: #a8a29e;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 24px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #78716c;
  font-size: 14px;
}

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

  .menu-toggle {
    display: block;
  }

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

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

  .related-panel {
    position: static;
  }

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

@media (max-width: 720px) {
  .nav-wrap {
    height: 64px;
    padding: 0 16px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

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

  .hero {
    height: auto;
    min-height: 680px;
  }

  .hero-content {
    padding: 120px 18px 92px;
    align-items: flex-end;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-dots {
    left: 18px;
    right: auto;
    bottom: 34px;
  }

  .home-sections,
  .page-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .movie-grid,
  .movie-grid.compact,
  .movie-grid.two-col,
  .category-grid,
  .stat-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .filters {
    align-items: stretch;
  }

  .filter-field,
  .filter-select,
  .filter-count {
    width: 100%;
    margin-left: 0;
  }

  .related-item,
  .rank-item {
    align-items: flex-start;
  }

  .related-thumb,
  .rank-thumb {
    width: 112px;
    height: 72px;
  }

  .search-hero-form input {
    padding-right: 110px;
  }
}
