:root {
  --orange: #f97316;
  --orange-deep: #ea580c;
  --pink: #ec4899;
  --red: #ef4444;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --teal: #14b8a6;
  --violet: #7c3aed;
  --slate: #0f172a;
  --slate-soft: #1e293b;
  --text: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --bg: #f8fafc;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 52%, #f8fafc 100%);
  line-height: 1.6;
}

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;
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--pink));
  box-shadow: 0 16px 35px rgba(239, 68, 68, 0.28);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover {
  color: #ffedd5;
}

.nav-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input {
  width: 230px;
  height: 40px;
  border: 0;
  outline: 0;
  color: #ffffff;
  border-radius: 999px;
  padding: 0 98px 0 16px;
  background: rgba(255, 255, 255, 0.2);
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.nav-search button {
  position: absolute;
  right: 4px;
  height: 32px;
  border: 0;
  color: var(--orange-deep);
  cursor: pointer;
  border-radius: 999px;
  padding: 0 16px;
  font-weight: 800;
  background: #ffffff;
}

.menu-toggle {
  display: none;
  color: #ffffff;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  background: transparent;
}

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

.mobile-nav a {
  display: block;
  border-radius: 14px;
  padding: 10px 14px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-slider {
  position: relative;
  height: 600px;
  min-height: 600px;
  overflow: hidden;
  background: #0b1020;
}

.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-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(249, 115, 22, 0.42), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.74) 42%, rgba(15, 23, 42, 0.22) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.2), rgba(2, 6, 23, 0.72));
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: center;
  height: 100%;
  gap: 48px;
  color: #ffffff;
}

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

.hero-label,
.section-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 13px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.hero-copy h1,
.detail-hero h1 {
  margin: 20px 0 16px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-copy p,
.detail-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

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

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

.hero-tags span,
.tag-row span,
.tag-cloud span {
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(249, 115, 22, 0.18);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

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

.primary-btn,
.ghost-btn,
.panel-link,
.text-link,
.toolbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  box-shadow: 0 18px 30px rgba(236, 72, 153, 0.24);
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.panel-link:hover,
.text-link:hover,
.toolbar-link:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
  transform: perspective(900px) rotateY(-7deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #ffffff;
  font-size: 30px;
  border-radius: 999px;
  background: var(--orange);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.38);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-controls button {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  font-size: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

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

.quick-search-panel {
  position: relative;
  z-index: 4;
  margin-top: -44px;
}

.search-panel-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 28px;
  border-radius: 28px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.search-panel-inner h2 {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.search-panel-inner p {
  margin: 0;
  color: var(--muted);
}

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

.large-search input,
.search-toolbar input,
.toolbar input,
.search-toolbar select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  padding: 0 16px;
  background: #ffffff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.large-search input:focus,
.search-toolbar input:focus,
.toolbar input:focus,
.search-toolbar select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.large-search button {
  min-width: 120px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  border-radius: 16px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

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

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

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-more,
.text-link,
.toolbar-link,
.panel-link {
  color: var(--orange-deep);
  background: #fff7ed;
}

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

.category-card,
.category-overview-card {
  overflow: hidden;
  border-radius: var(--radius);
  padding: 24px;
  color: #ffffff;
  min-height: 230px;
  box-shadow: var(--shadow);
}

.category-card a:first-child {
  display: block;
}

.category-card span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0.86;
}

.category-card h3 {
  margin: 16px 0 0;
  font-size: 22px;
  line-height: 1.25;
}

.category-samples {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.from-orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.from-pink {
  background: linear-gradient(135deg, #ec4899, #be185d);
}

.from-blue {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.from-teal {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.from-violet {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

.from-rose {
  background: linear-gradient(135deg, #f43f5e, #fb7185);
}

.from-cyan {
  background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.from-slate {
  background: linear-gradient(135deg, #0f172a, #475569);
}

.movie-grid,
.feature-grid,
.compact-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(249, 115, 22, 0.16);
}

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

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #111827, #334155);
}

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

.movie-card:hover .card-media img {
  transform: scale(1.07);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

.play-dot {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-content {
  padding: 16px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.card-content h3 {
  margin: 9px 0 7px;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.card-content p {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row span {
  color: #ea580c;
  background: #fff7ed;
}

.two-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

.ranking-panel,
.side-card,
.info-card,
.player-card,
.category-overview-card {
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.panel-head span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.panel-head h2 {
  margin: 6px 0 18px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  padding: 12px;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-item:hover {
  background: #fff7ed;
  transform: translateX(4px);
}

.rank-no {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffffff;
  border-radius: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.rank-title {
  overflow: hidden;
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-year {
  color: var(--muted);
  font-size: 13px;
}

.panel-link {
  width: 100%;
  margin-top: 18px;
}

.feature-band {
  padding: 72px 0;
  background: linear-gradient(135deg, #eff6ff, #f8fafc 42%, #fff7ed);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 72px 0;
}

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

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

.gradient-blue {
  background: linear-gradient(135deg, #2563eb, #06b6d4, #14b8a6);
}

.gradient-orange {
  background: linear-gradient(135deg, #f97316, #ef4444, #ec4899);
}

.category-hero {
  background-size: cover;
}

.category-overview-grid {
  display: grid;
  gap: 26px;
}

.category-overview-card {
  color: var(--text);
  padding: 28px;
}

.category-overview-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.category-overview-head h2 {
  margin: 0;
  font-size: 30px;
}

.category-overview-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.compact-card .card-content p,
.compact-card .tag-row {
  display: none;
}

.toolbar,
.search-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  margin-bottom: 26px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.search-toolbar {
  grid-template-columns: minmax(0, 1fr) 260px;
}

.toolbar label,
.search-toolbar label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.empty-state {
  display: none;
  border-radius: 22px;
  margin-top: 24px;
  padding: 38px;
  color: var(--muted);
  text-align: center;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

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

.ranking-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.ranking-card a {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
}

.ranking-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}

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

.ranking-cover span {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #ffffff;
  border-radius: 18px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
}

.ranking-card.top-three .ranking-cover span {
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.ranking-copy {
  padding: 24px 24px 24px 0;
}

.ranking-copy h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.ranking-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

.ranking-copy div {
  color: var(--orange-deep);
  font-weight: 900;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: #ffffff;
  background: #0f172a;
}

.detail-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.25)),
    linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.92));
}

.detail-hero-inner {
  position: relative;
  padding: 44px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

.detail-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 38px;
}

.detail-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.38);
}

.detail-section {
  margin-top: -86px;
  padding-top: 0;
}

.detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: start;
}

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

.player-card,
.info-card,
.side-card {
  padding: 24px;
}

.player-card h2,
.info-card h2,
.side-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #020617;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44));
}

.play-overlay span {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  color: #ffffff;
  font-size: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 24px 50px rgba(249, 115, 22, 0.36);
}

.play-overlay.is-hidden {
  display: none;
}

.info-card p {
  margin: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}

.meta-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

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

.meta-panel dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.meta-panel dd {
  margin: 5px 0 0;
  font-weight: 900;
}

.tag-cloud span {
  color: #1d4ed8;
  background: #eff6ff;
}

.detail-side {
  position: sticky;
  top: 88px;
}

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

.detail-side .compact-card .card-link {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
}

.detail-side .compact-card .card-media {
  height: 84px;
  aspect-ratio: auto;
}

.detail-side .compact-card .card-badge,
.detail-side .compact-card .play-dot,
.detail-side .compact-card .card-meta span:nth-child(3) {
  display: none;
}

.detail-side .compact-card .card-content {
  padding: 10px 12px;
}

.detail-side .compact-card h3 {
  display: -webkit-box;
  margin: 0 0 6px;
  overflow: hidden;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.prev-next a {
  border-radius: 18px;
  padding: 16px;
  color: var(--orange-deep);
  font-weight: 900;
  background: #fff7ed;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding: 56px 0;
}

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

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

.site-footer p {
  margin: 0;
  color: #94a3b8;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #cbd5e1;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  color: #94a3b8;
  text-align: center;
}

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

  .menu-toggle {
    display: block;
  }

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

  .hero-inner,
  .search-panel-inner,
  .two-column-layout,
  .detail-title-row,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

  .ranking-panel,
  .detail-side {
    position: static;
  }
}

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

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

  .hero-slider {
    height: 560px;
    min-height: 560px;
  }

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

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

  .large-search,
  .section-heading,
  .category-overview-head,
  .hero-actions,
  .prev-next {
    flex-direction: column;
    align-items: stretch;
  }

  .section-heading {
    display: grid;
  }

  .movie-grid,
  .feature-grid,
  .category-grid,
  .compact-grid,
  .search-toolbar,
  .toolbar,
  .meta-panel dl,
  .prev-next {
    grid-template-columns: 1fr;
  }

  .ranking-card a {
    grid-template-columns: 1fr;
  }

  .ranking-copy {
    padding: 18px;
  }

  .detail-cover {
    display: none;
  }

  .footer-grid {
    padding: 38px 0;
  }
}
