:root {
  --bg: #f8fafc;
  --ink: #111827;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --amber: #f59e0b;
  --orange: #f97316;
  --red: #dc2626;
  --teal: #0d9488;
  --cyan: #0891b2;
  --blue: #2563eb;
  --purple: #7c3aed;
  --card: #ffffff;
  --dark: #0f172a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  --soft-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
  color: var(--ink);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #d97706 0%, #f97316 48%, #d97706 100%);
  box-shadow: 0 10px 30px rgba(124, 45, 18, 0.26);
}

.header-shell {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #f97316;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 15px;
}

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

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: #fef3c7;
  opacity: 1;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 250px;
  margin-left: 6px;
}

.header-search input {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 70px 0 16px;
  color: #ffffff;
  outline: none;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

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

.header-search button {
  position: absolute;
  right: 4px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  color: #b45309;
  font-weight: 700;
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  padding: 8px 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.mobile-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 18px;
  display: grid;
  gap: 12px;
}

.mobile-nav[hidden] {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(120deg, #b45309 0%, #ea580c 46%, #991b1b 100%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 25%, rgba(255, 255, 255, 0.28), transparent 32%), linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38));
}

.hero-slider {
  position: relative;
  max-width: 1280px;
  min-height: 560px;
  margin: 0 auto;
  padding: 78px 24px 120px;
}

.hero-slide {
  position: absolute;
  inset: 78px 24px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.68fr);
  align-items: center;
  gap: 54px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 13px;
  color: #fff7ed;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 8px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 4vw, 46px);
  color: #fde68a;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.8;
}

.hero-tags,
.info-badges,
.detail-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span,
.info-badges span,
.detail-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.17);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-light {
  color: #c2410c;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.hero-poster {
  position: relative;
  justify-self: end;
  width: min(420px, 100%);
  aspect-ratio: 3 / 4;
  border: 10px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}

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

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

.hero-play,
.play-dot,
.large-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.hero-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  color: #f97316;
  font-size: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 112px;
  width: min(1280px, 100%);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 26px;
  background: rgba(255, 255, 255, 0.17);
}

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

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

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

.hero-search-panel {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: min(940px, calc(100% - 48px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.hero-search-panel form,
.page-search {
  display: flex;
  gap: 10px;
}

.hero-search-panel input,
.page-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
}

.hero-search-panel button,
.page-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  cursor: pointer;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  padding-left: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

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

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

.section-head h2::before {
  content: "";
  display: inline-block;
  width: 46px;
  height: 5px;
  margin-right: 14px;
  vertical-align: middle;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
}

.section-head a {
  color: #d97706;
  font-weight: 800;
}

.light-head {
  color: #ffffff;
}

.light-head a {
  color: #ffffff;
}

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

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  height: 284px;
  overflow: hidden;
  background: #111827;
}

.movie-card-compact .poster-wrap {
  height: 216px;
}

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

.movie-card:hover img,
.ranking-item:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.66));
}

.score-pill {
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.66);
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  color: #ea580c;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

.card-body strong {
  font-size: 18px;
  line-height: 1.35;
}

.card-meta {
  color: var(--muted);
  font-size: 13px;
}

.line-clamp {
  color: #475569;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row span {
  color: #92400e;
  background: #fef3c7;
}

.category-zone,
.trend-zone {
  max-width: none;
  margin-top: 32px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488 0%, #16a34a 100%);
}

.category-zone > *,
.trend-zone > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.trend-zone {
  background: linear-gradient(135deg, #6d28d9 0%, #db2777 100%);
}

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

.category-card {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.22);
}

.category-card strong {
  position: relative;
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
}

.category-card span:last-child {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.category-glow {
  position: absolute;
  right: -36px;
  top: -36px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.ranking-zone {
  padding-top: 72px;
}

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

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

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

.ranking-item {
  display: grid;
  grid-template-columns: 54px 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: 20px;
  padding: 14px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.rank-number {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #475569;
  font-size: 18px;
  font-weight: 900;
  background: #e5e7eb;
}

.top-rank .rank-number {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.rank-poster {
  width: 92px;
  height: 64px;
  overflow: hidden;
  border-radius: 14px;
  background: #111827;
}

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

.rank-content {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.rank-content strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-content span {
  overflow: hidden;
  color: #64748b;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-content em {
  color: #d97706;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488, #0891b2);
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

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

.amber-hero {
  background: linear-gradient(135deg, #d97706, #ea580c 58%, #b91c1c);
}

.teal-hero {
  background: linear-gradient(135deg, #0f766e, #0e7490);
}

.blue-hero {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.purple-hero {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}

.category-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.category-switch a {
  border-radius: 999px;
  padding: 9px 13px;
  color: #ffffff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.16);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 180px 160px;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 14px;
  color: #111827;
  background: #ffffff;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

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

.category-overview-card {
  display: grid;
  gap: 20px;
  border-radius: 28px;
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.category-card-head h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.category-card-head p {
  margin: 0 0 18px;
  color: #64748b;
  line-height: 1.7;
}

.mini-poster-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mini-poster-row a {
  position: relative;
  display: block;
  height: 126px;
  overflow: hidden;
  border-radius: 18px;
  color: #ffffff;
  background: #111827;
}

.mini-poster-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-poster-row span {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 28px 10px 10px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.page-search {
  max-width: 720px;
  margin-top: 26px;
}

.search-heading {
  margin-bottom: 24px;
  color: #475569;
  font-size: 18px;
  font-weight: 800;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #111827;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(20px) saturate(1.1);
  opacity: 0.28;
  transform: scale(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72));
}

.detail-shell {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: stretch;
}

.player-panel,
.detail-info,
.article-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.64));
  cursor: pointer;
  transition: opacity 0.24s ease;
}

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

.large-play {
  width: 86px;
  height: 86px;
  color: #f97316;
  font-size: 32px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.detail-info {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
}

.detail-info img {
  width: 128px;
  height: 176px;
  border-radius: 18px;
  object-fit: cover;
  background: #0f172a;
}

.detail-info h1 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
}

.detail-info p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.info-badges span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.detail-content {
  padding-top: 48px;
  padding-bottom: 16px;
}

.article-card {
  border-color: var(--line);
  padding: 32px;
  color: #1f2937;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.article-card h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.article-card h2:not(:first-child) {
  margin-top: 30px;
}

.article-card p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.95;
}

.detail-tags span {
  color: #92400e;
  background: #fef3c7;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #000000);
}

.footer-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 44px;
}

.brand-in-footer .brand-mark {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.footer-brand p {
  max-width: 560px;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

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

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

.footer-links a:hover {
  color: #f59e0b;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero-slide,
  .detail-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    justify-self: start;
    width: min(320px, 100%);
  }

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

  .full-ranking,
  .two-column {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .header-shell {
    padding: 0 16px;
  }

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

  .hero-section {
    min-height: 840px;
  }

  .hero-slider {
    min-height: 660px;
    padding: 46px 16px 190px;
  }

  .hero-slide {
    inset: 46px 16px 190px;
    align-content: start;
    gap: 28px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-controls {
    bottom: 142px;
    padding: 0 16px;
  }

  .hero-search-panel {
    bottom: 18px;
    width: calc(100% - 32px);
  }

  .hero-search-panel form,
  .page-search {
    flex-direction: column;
  }

  .hero-search-panel button,
  .page-search button {
    min-height: 46px;
  }

  .section-wrap,
  .page-hero-inner,
  .detail-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .featured-grid,
  .movie-grid,
  .compact-grid,
  .category-grid,
  .category-overview-grid,
  .footer-links,
  .mini-poster-row,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .poster-wrap,
  .movie-card-compact .poster-wrap {
    height: 260px;
  }

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

  .rank-poster {
    width: 72px;
    height: 56px;
  }

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

  .detail-info img {
    width: 92px;
    height: 130px;
  }

  .article-card {
    padding: 22px;
  }
}
