:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --teal: #14b8a6;
  --deep: #0f172a;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* {
  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: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

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

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

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.28);
  transition: transform .25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08) rotate(-3deg);
}

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

.brand-title {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-weight: 700;
  color: #334155;
  transition: color .2s ease;
}

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

.top-search,
.mobile-search,
.hero-search,
.search-panel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-search input,
.mobile-search input,
.hero-search input,
.search-panel input,
.search-panel select {
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.top-search input {
  width: 220px;
  padding: 10px 16px;
}

.top-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.top-search button,
.mobile-search button,
.hero-search button {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  cursor: pointer;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #f1f5f9;
  color: #0f172a;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-panel.open {
  display: block;
}

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

.mobile-search input {
  flex: 1;
  padding: 11px 16px;
}

.mobile-links {
  display: grid;
  gap: 10px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: #334155;
  font-weight: 800;
  background: #f8fafc;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--blue);
  background: #eff6ff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.hero-section {
  position: relative;
  min-height: 720px;
  padding: 120px 0 54px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 48%, #14b8a6 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .24), transparent 28%), linear-gradient(180deg, rgba(15, 23, 42, .15), rgba(15, 23, 42, .35));
}

.hero-bg {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(20px);
  background: rgba(255, 255, 255, .15);
}

.hero-bg.one {
  left: 6%;
  top: 12%;
}

.hero-bg.two {
  right: 8%;
  bottom: 8%;
}

.hero-shell {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.hero-stage {
  position: relative;
  min-height: 470px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 44px;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}

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

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.eyebrow.dark {
  color: var(--blue);
}

.eyebrow.light {
  color: #bfdbfe;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero-copy h2 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
}

.hero-text {
  max-width: 680px;
  margin: 0 0 22px;
  font-size: 18px;
  color: rgba(255, 255, 255, .88);
}

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

.hero-tags span,
.detail-tags span,
.mini-tags span {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span,
.detail-tags span {
  padding: 7px 12px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .24);
}

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

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

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 28px rgba(37, 99, 235, .28);
}

.hero-section .btn.primary {
  color: var(--blue);
  background: #fff;
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
}

.btn.link-btn {
  color: #fff;
  background: rgba(15, 23, 42, .16);
}

.btn.full {
  width: 100%;
  margin-top: 18px;
}

.hero-media {
  position: relative;
  min-height: 360px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(15, 23, 42, .18);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(15, 23, 42, .82));
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform .6s ease;
}

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

.hero-play {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .25);
}

.hero-panel {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
}

.hero-search {
  max-width: 560px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(12px);
}

.hero-search input {
  flex: 1;
  min-width: 180px;
  padding: 13px 18px;
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-category-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

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

.section {
  padding: 72px 0;
}

.white-section {
  background: #fff;
}

.soft-section {
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

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

.section-head.centered {
  justify-content: center;
  text-align: center;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.04em;
}

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

.section-link {
  color: var(--blue);
  font-weight: 900;
}

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

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

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

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

.movie-link {
  display: block;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(226, 232, 240, .85);
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.movie-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1d4ed8, #06b6d4);
}

.movie-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

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

.movie-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, .68));
  opacity: .86;
}

.year-badge,
.rank-mark {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
}

.year-badge {
  left: 12px;
  color: var(--blue);
  background: #fff;
}

.rank-mark {
  right: 12px;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.play-dot {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, .92);
  transform: scale(.86);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.movie-link:hover .play-dot {
  opacity: 1;
  transform: scale(1);
}

.movie-body {
  padding: 18px;
}

.movie-body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.movie-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.movie-one {
  margin: 10px 0 14px;
  color: #475569;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-tags span {
  padding: 5px 8px;
  color: #1d4ed8;
  background: #eff6ff;
}

.compact .movie-body h3 {
  font-size: 16px;
}

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

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

.category-tile {
  position: relative;
  min-height: 210px;
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  box-shadow: var(--soft-shadow);
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .22;
  z-index: -2;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, .88), rgba(6, 182, 212, .78));
  z-index: -1;
}

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

.category-name {
  display: block;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.category-intro {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .88);
}

.category-more {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 900;
  background: rgba(255, 255, 255, .18);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, .9fr);
  gap: 32px;
  align-items: start;
}

.split-layout.reverse {
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
}

.rank-panel,
.info-card,
.content-card {
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1d4ed8 58%, #06b6d4);
}

.rank-panel h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 950;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
}

.rank-num {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: #fff;
  font-weight: 950;
}

.rank-name {
  min-width: 0;
  display: block;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-info {
  grid-column: 2;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.page-main {
  padding-top: 72px;
}

.page-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #06b6d4 52%, #14b8a6);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .2), transparent 28%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 78px;
  padding-bottom: 70px;
}

.small-hero h1,
.category-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

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

.hero-search.narrow {
  margin-top: 24px;
  max-width: 560px;
}

.rank-grid .movie-card:nth-child(-n + 3) .movie-link {
  border-color: rgba(249, 115, 22, .3);
}

.search-panel {
  max-width: 760px;
  margin-top: 26px;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .18);
}

.search-panel input,
.search-panel select {
  min-height: 48px;
  padding: 0 18px;
}

.search-panel input {
  flex: 1;
}

.search-panel select {
  min-width: 150px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.filter-button {
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
  font-weight: 900;
}

.filter-button.active,
.filter-button:hover {
  color: var(--blue);
  background: #fff;
}

.empty-state {
  display: none;
  margin-top: 24px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.empty-state.show {
  display: block;
}

.detail-main {
  background: #fff;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  padding: 78px 0 54px;
  color: #fff;
  overflow: hidden;
  background: #0f172a;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.06);
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .08), rgba(15, 23, 42, .94));
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding-top: 48px;
}

.detail-poster {
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #1d4ed8, #06b6d4);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .38);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.detail-copy h1 {
  font-size: clamp(38px, 6vw, 72px);
}

.detail-one {
  max-width: 760px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  font-weight: 800;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, .8fr);
  gap: 30px;
  align-items: start;
}

.player-shell {
  border-radius: 30px;
  overflow: hidden;
  background: #020617;
  box-shadow: var(--shadow);
}

.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 14px;
  color: #fff;
  border: none;
  background: linear-gradient(180deg, rgba(2, 6, 23, .28), rgba(2, 6, 23, .76));
  cursor: pointer;
}

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

.player-play {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .35);
  font-size: 28px;
}

.player-overlay strong {
  font-size: 22px;
  text-align: center;
  padding: 0 20px;
}

.content-card,
.info-card {
  margin-top: 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.prose-card h2,
.info-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.prose-card p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 16px;
}

.prose-card p:last-child {
  margin-bottom: 0;
}

.info-card:first-child {
  margin-top: 0;
}

.info-card dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 11px 12px;
  margin: 0;
}

.info-card dt {
  color: var(--muted);
  font-weight: 900;
}

.info-card dd {
  margin: 0;
  color: #0f172a;
  font-weight: 700;
}

.side-links {
  display: grid;
  gap: 10px;
}

.side-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 850;
}

.side-links a:hover {
  color: var(--blue);
  background: #eff6ff;
}

.side-links span {
  color: var(--muted);
  font-size: 12px;
}

.footer-logo .brand-title,
.site-footer .brand-subtitle {
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
}

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

.footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 22px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 30px;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
  color: #94a3b8;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 17px;
}

.footer-col a {
  color: #cbd5e1;
  font-size: 14px;
}

.footer-col a:hover {
  color: #60a5fa;
}

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

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

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-stage {
    min-height: 760px;
  }

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

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

  .rank-panel {
    position: static;
  }

  .detail-poster {
    max-width: 320px;
  }

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

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

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

  .brand-subtitle {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 98px;
  }

  .hero-stage {
    min-height: 720px;
  }

  .hero-media,
  .hero-media img {
    min-height: 260px;
  }

  .hero-actions,
  .hero-category-links,
  .detail-meta,
  .filter-buttons {
    align-items: stretch;
  }

  .btn,
  .hero-category-links a,
  .filter-button {
    width: 100%;
  }

  .hero-search,
  .search-panel,
  .mobile-search {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .hero-search input,
  .search-panel input,
  .search-panel select,
  .hero-search button,
  .mobile-search input,
  .mobile-search button {
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .feature-grid,
  .compact-grid,
  .catalog-grid,
  .category-grid,
  .category-grid.large {
    grid-template-columns: 1fr;
  }

  .page-main {
    padding-top: 66px;
  }

  .detail-hero {
    padding-top: 66px;
  }

  .detail-layout {
    padding-top: 32px;
  }

  .content-card,
  .info-card,
  .rank-panel {
    border-radius: 22px;
    padding: 22px;
  }

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