:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.88);
  --panel-strong: #0f172a;
  --panel-soft: rgba(30, 41, 59, 0.72);
  --line: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --cyan-soft: rgba(34, 211, 238, 0.16);
  --shadow: 0 24px 80px rgba(8, 47, 73, 0.34);
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(14, 116, 144, 0.22), transparent 34rem), var(--bg);
  color: var(--text);
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.15));
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(2, 6, 23, 0.96);
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.42);
  backdrop-filter: blur(18px);
}

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

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

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan), #2563eb);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.38);
  color: white;
  font-size: 15px;
  padding-left: 2px;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong,
.footer-brand {
  font-size: 19px;
  letter-spacing: 0.02em;
  font-weight: 800;
}

.brand-text em {
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

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

.nav-link,
.mobile-link {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 650;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
  padding: 10px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #67e8f9;
  background: rgba(34, 211, 238, 0.12);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.88);
  color: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px 18px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 13px 14px;
  background: rgba(15, 23, 42, 0.78);
}

main {
  min-height: 70vh;
}

.hero {
  min-height: 74vh;
  position: relative;
  overflow: hidden;
}

.hero-stage,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.7) 45%, rgba(2, 6, 23, 0.18)), linear-gradient(0deg, #020617, rgba(2, 6, 23, 0.06) 50%);
}

.hero-content {
  position: absolute;
  left: max(22px, calc((100vw - 1280px) / 2 + 22px));
  bottom: 86px;
  max-width: 760px;
  padding-right: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero p {
  color: #cbd5e1;
  font-size: clamp(16px, 2.2vw, 21px);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 0 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-meta,
.detail-meta,
.meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  margin-bottom: 28px;
}

.hero-meta span,
.detail-meta span {
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.hero-actions,
.quick-search {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.ghost-btn,
.quick-search a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  min-height: 48px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--cyan-strong), #2563eb);
  color: white;
  box-shadow: 0 18px 42px rgba(8, 145, 178, 0.3);
}

.ghost-btn,
.quick-search a {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.7);
  color: #e2e8f0;
}

.primary-btn:hover,
.ghost-btn:hover,
.quick-search a:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.45);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.58);
  color: white;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero-arrow:hover {
  background: rgba(8, 145, 178, 0.72);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 6;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  border: 0;
  background: #64748b;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 34px;
  background: var(--cyan);
}

.quick-panel,
.page-wrap {
  width: min(1280px, calc(100% - 44px));
  margin: 0 auto;
}

.quick-panel {
  position: relative;
  margin-top: -54px;
  z-index: 10;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  padding: 28px;
}

.quick-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.quick-inner h2,
.section-head h2,
.split-section h2,
.prose-card h2,
.search-box h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.035em;
}

.quick-inner p,
.feature-panel p,
.page-hero p,
.prose-card p,
.detail-info p {
  color: var(--muted);
  line-height: 1.85;
}

.category-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.category-pills a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid var(--line);
  color: #e2e8f0;
  font-weight: 800;
}

.category-pills a:hover,
.category-tile:hover,
.category-card-large:hover,
.ranking-row:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(8, 145, 178, 0.14);
}

.category-pills span {
  color: var(--cyan);
  font-size: 12px;
}

.page-wrap {
  padding: 70px 0;
}

.content-section + .content-section,
.content-section + .split-section,
.split-section + .content-section {
  margin-top: 76px;
}

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

.section-head.slim {
  margin-bottom: 18px;
}

.section-link {
  color: var(--cyan);
  font-weight: 800;
  white-space: nowrap;
}

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 22px 70px rgba(8, 145, 178, 0.22);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.compact .poster-wrap {
  aspect-ratio: 2 / 3;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), transparent 56%);
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 0.92;
}

.play-mark,
.play-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.86);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  background: rgba(6, 182, 212, 0.9);
  color: white;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.35);
}

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

.type-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid var(--line);
  color: #e2e8f0;
  backdrop-filter: blur(10px);
}

.type-badge {
  right: 12px;
  top: 12px;
  padding: 6px 10px;
}

.rank-badge {
  left: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.movie-info {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.movie-info strong {
  color: #f8fafc;
  line-height: 1.35;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card:hover .movie-info strong {
  color: #67e8f9;
}

.movie-info em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta-row {
  color: var(--muted-2);
  font-size: 12px;
  gap: 8px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.82);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.feature-panel,
.ranking-panel,
.prose-card,
.search-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.74));
  box-shadow: var(--shadow);
}

.feature-panel {
  min-height: 420px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.feature-panel h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.ranking-panel {
  padding: 26px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 44px 70px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ranking-row img {
  width: 70px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}

.ranking-number {
  color: var(--cyan);
  font-weight: 900;
  font-size: 20px;
}

.ranking-row strong {
  display: block;
  margin-bottom: 5px;
}

.ranking-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.4;
}

.ranking-row b {
  color: #facc15;
}

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

.category-tile {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 50%), rgba(15, 23, 42, 0.86);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
}

.category-tile span {
  color: var(--cyan);
  font-weight: 800;
  margin-bottom: 10px;
}

.category-tile strong {
  font-size: 22px;
  margin-bottom: 8px;
}

.category-tile em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.site-footer {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78), #020617);
  border-top: 1px solid var(--line);
  padding: 54px 22px 28px;
}

.footer-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
}

.footer-grid p,
.footer-links a,
.footer-bottom {
  color: var(--muted);
}

.footer-grid h2 {
  margin: 0 0 16px;
  font-size: 16px;
}

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

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  width: min(1280px, 100%);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
}

.small-hero {
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 130px 22px 60px;
  background: radial-gradient(circle at 24% 0%, rgba(34, 211, 238, 0.24), transparent 30rem), linear-gradient(135deg, #020617, #0f172a);
}

.small-hero > div {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 12px 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

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

.category-card-large {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #0f172a;
}

.category-card-large img,
.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-large > span {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.15));
}

.category-card-large > div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
}

.category-card-large em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 800;
}

.category-card-large strong {
  display: block;
  margin: 8px 0;
  font-size: 30px;
}

.category-card-large p {
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

.search-box {
  padding: 24px;
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 16px;
}

.search-box label {
  display: grid;
  gap: 9px;
  color: #cbd5e1;
  font-weight: 750;
}

.search-box input,
.search-box select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.58);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.search-box input:focus,
.search-box select:focus {
  border-color: rgba(34, 211, 238, 0.58);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.detail-hero {
  padding: 112px 22px 54px;
  min-height: 760px;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  filter: blur(2px);
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #020617 8%, rgba(2, 6, 23, 0.82) 42%, rgba(2, 6, 23, 0.56));
}

.detail-wrap {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 14px;
}

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

.breadcrumb strong {
  color: #e2e8f0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.player-card,
.detail-info {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.18), rgba(2, 6, 23, 0.68));
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-overlay .play-orb {
  position: static;
  transform: none;
  opacity: 1;
  width: 76px;
  height: 76px;
  font-size: 28px;
}

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

.detail-info {
  padding: 22px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
}

.detail-poster {
  width: 150px;
  aspect-ratio: 2 / 3;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.detail-info h1 {
  margin: 10px 0 14px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-meta {
  margin: 18px 0;
}

.detail-tags span {
  background: rgba(34, 211, 238, 0.12);
  color: #bae6fd;
}

.detail-content {
  padding-top: 0;
}

.prose-card {
  padding: 34px;
  margin-bottom: 70px;
}

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

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

.prose-card p {
  font-size: 17px;
  margin: 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
  border: 1px solid var(--line);
}

.info-list strong {
  color: var(--cyan);
}

.info-list span {
  color: #cbd5e1;
  text-align: right;
}

[data-search-card].is-hidden {
  display: none;
}

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

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

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

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

  .split-section,
  .detail-layout,
  .search-box {
    grid-template-columns: 1fr;
  }

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

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

  .brand-text em {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    left: 18px;
    right: 18px;
    bottom: 74px;
    padding-right: 0;
  }

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

  .hero-arrow {
    display: none;
  }

  .quick-panel,
  .page-wrap {
    width: calc(100% - 28px);
  }

  .quick-panel {
    padding: 20px;
  }

  .quick-inner,
  .footer-bottom,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-pills,
  .category-grid,
  .category-large-grid,
  .footer-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

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

  .movie-info {
    padding: 13px;
  }

  .movie-info em {
    display: none;
  }

  .detail-hero {
    padding: 92px 14px 34px;
    min-height: auto;
  }

  .detail-info {
    grid-template-columns: 96px 1fr;
    padding: 16px;
  }

  .detail-poster {
    width: 96px;
    border-radius: 14px;
  }

  .detail-info p {
    display: none;
  }

  .detail-info h1 {
    font-size: 26px;
  }

  .prose-card {
    padding: 22px;
  }

  .small-hero {
    padding: 106px 14px 42px;
    min-height: 310px;
  }

  .ranking-row {
    grid-template-columns: 34px 58px 1fr;
  }

  .ranking-row b {
    display: none;
  }

  .ranking-row img {
    width: 58px;
    height: 42px;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .dense-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    width: 100%;
    max-width: 220px;
  }
}
