:root {
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --red: #dc2626;
  --blue: #2563eb;
  --cyan: #0891b2;
  --yellow: #fde047;
  --green: #16a34a;
  --purple: #9333ea;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 10px 28px rgba(17, 24, 39, 0.12);
  --shadow-lg: 0 22px 55px rgba(17, 24, 39, 0.2);
  --radius: 18px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gray-50);
  color: var(--gray-900);
  font-family: var(--font-family, Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 18px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.brand {
  color: var(--orange);
  font-size: 24px;
}

.brand-mark,
.footer-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(234, 88, 12, 0.28);
}

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

.nav-link,
.mobile-link {
  color: var(--gray-700);
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--gray-700);
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-link {
  padding: 14px 22px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: var(--white);
  background: linear-gradient(120deg, var(--orange), var(--red));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(253, 224, 71, 0.34), transparent 24%),
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(120deg, rgba(194, 65, 12, 0.65), rgba(127, 29, 29, 0.18));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 70px;
}

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

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

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h2 {
  margin: 22px 0 12px;
  color: var(--yellow);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.14;
}

.hero p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.78;
}

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

.hero-tags span,
.card-tags span,
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  padding: 7px 12px;
  backdrop-filter: blur(10px);
}

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

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

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

.btn-light {
  background: var(--white);
  color: var(--orange);
  box-shadow: var(--shadow);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--white);
  box-shadow: 0 14px 26px rgba(234, 88, 12, 0.26);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

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

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

.poster-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 46%);
}

.hero-search {
  width: min(680px, 100%);
  padding: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(16px);
}

.hero-search input {
  flex: 1 1 240px;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  outline: none;
}

.hero-search button {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 0 20px;
  background: var(--gray-900);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 9px;
  margin-top: 26px;
}

.hero-dot {
  width: 28px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 52px;
  background: var(--white);
}

.stats-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

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

.stat-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.stat-card strong {
  font-size: 25px;
}

.stat-card span {
  color: var(--gray-600);
  line-height: 1.65;
}

.white-section {
  background: var(--white);
}

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

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

.inline-head {
  align-items: center;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-head a {
  color: var(--orange);
  font-weight: 800;
}

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-200);
}

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

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

.media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent 55%);
}

.play-dot,
.player-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.38);
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.card-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.card-badge {
  right: 12px;
  padding: 6px 10px;
  background: rgba(234, 88, 12, 0.92);
}

.rank-badge {
  left: 12px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.8);
}

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

.card-body strong {
  font-size: 17px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover .card-body strong {
  color: var(--orange);
}

.card-desc {
  min-height: 44px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.55;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--gray-500);
  font-size: 13px;
}

.card-tags span {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 5px 9px;
}

.category-band {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
}

.category-band .section-head h2,
.category-band .section-head p {
  color: var(--white);
}

.category-grid,
.category-large-grid {
  display: grid;
  gap: 18px;
}

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

.category-tile {
  display: grid;
  gap: 10px;
  min-height: 146px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.category-tile span {
  font-size: 22px;
  font-weight: 850;
}

.category-tile strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.split-section {
  background: var(--gray-900);
  color: var(--white);
}

.split-section .section-head h2,
.split-section .section-head p {
  color: var(--white);
}

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

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

.mini-movie {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.split-section .mini-movie,
.glass-list .mini-movie {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mini-movie:hover {
  transform: translateX(4px);
}

.mini-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: var(--gray-200);
}

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

.mini-rank {
  position: absolute;
  left: 8px;
  top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 850;
  font-size: 13px;
}

.mini-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.mini-info strong,
.mini-info span,
.mini-info em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-info em {
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.split-section .mini-info em,
.split-section .mini-info span {
  color: rgba(255, 255, 255, 0.7);
}

.mini-info span {
  color: var(--gray-600);
  font-size: 13px;
}

.cta-section {
  background: var(--white);
}

.cta-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 54px 24px;
  border-radius: 28px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--gray-900), #1f2937);
  box-shadow: var(--shadow-lg);
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
}

.cta-card p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 72px 0;
  color: var(--white);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 62px);
  letter-spacing: -0.05em;
}

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

.orange-hero {
  background: linear-gradient(120deg, var(--orange), var(--red));
}

.blue-hero {
  background: linear-gradient(120deg, var(--blue), var(--cyan));
}

.dark-hero {
  background: linear-gradient(120deg, var(--gray-900), #334155);
}

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

.category-card-large {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.category-card-large img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 58%);
}

.category-card-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.category-card-content strong {
  font-size: 25px;
}

.category-card-content em {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  line-height: 1.55;
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 220px 180px;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.control-field {
  display: grid;
  gap: 8px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 800;
}

.control-field input,
.control-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0 14px;
  background: var(--white);
  color: var(--gray-900);
  outline: none;
}

.control-field input:focus,
.control-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 150px minmax(0, 1fr) 70px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: var(--white);
  font-weight: 850;
}

.rank-row img {
  width: 150px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.rank-info {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.rank-info strong {
  font-size: 18px;
}

.rank-info em,
.rank-info span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info em {
  color: var(--gray-500);
  font-style: normal;
  font-size: 13px;
}

.rank-info span {
  color: var(--gray-600);
  font-size: 14px;
}

.rank-score {
  color: var(--orange);
  font-weight: 900;
}

.detail-wrap {
  padding: 34px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--gray-600);
  font-size: 14px;
}

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

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

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #020617;
  box-shadow: var(--shadow-lg);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 0;
  color: var(--white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay strong {
  font-size: 18px;
}

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

.detail-card,
.side-card,
.poster-card {
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-card {
  margin-top: 22px;
  padding: 28px;
}

.detail-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.detail-title-row h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.045em;
}

.detail-title-row p {
  margin: 0;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.75;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.meta-list div {
  display: grid;
  gap: 5px;
}

.meta-list dt {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 800;
}

.meta-list dd {
  margin: 0;
  font-weight: 800;
}

.article-block {
  margin-top: 24px;
}

.article-block h2,
.side-card h2 {
  margin: 0 0 12px;
  font-size: 21px;
}

.article-block p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.92;
}

.tag-cloud {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.tag-cloud a {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 8px 12px;
}

.tag-cloud a:hover {
  background: rgba(234, 88, 12, 0.1);
  color: var(--orange);
}

.detail-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.poster-card {
  overflow: hidden;
}

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

.poster-card strong,
.poster-card span {
  display: block;
  padding: 0 18px;
}

.poster-card strong {
  padding-top: 18px;
  font-size: 20px;
}

.poster-card span {
  padding-bottom: 18px;
  color: var(--gray-600);
  margin-top: 6px;
}

.side-card {
  padding: 20px;
}

.site-footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 16px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
}

.site-footer p {
  margin: 0;
  line-height: 1.75;
}

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

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

.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
}

[data-card][hidden] {
  display: none !important;
}

@media (max-width: 1024px) {
  .desktop-nav {
    gap: 13px;
    font-size: 14px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-poster {
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .four-cols,
  .category-grid,
  .category-large-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-side {
    position: static;
  }

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

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

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

  .header-inner {
    height: 62px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 54px 0;
  }

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

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

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

  .section {
    padding: 48px 0;
  }

  .section-head,
  .detail-title-row {
    display: grid;
  }

  .four-cols,
  .category-grid,
  .category-large-grid,
  .stats-grid,
  .catalog-controls {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 42px 92px minmax(0, 1fr);
  }

  .rank-row img {
    width: 92px;
  }

  .rank-score {
    grid-column: 3;
  }

  .mini-movie {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .container,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .detail-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    min-height: 720px;
  }

  .hero-actions,
  .hero-search {
    display: grid;
  }

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

  .card-body {
    padding: 15px;
  }

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