:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.84);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.18);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --primary: #34d399;
  --primary-strong: #10b981;
  --cyan: #22d3ee;
  --amber: #f59e0b;
  --danger: #fb7185;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 0%, rgba(34, 211, 238, 0.14), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 72%);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(1240px, calc(100% - 28px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #022c22;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.28);
}

.brand-text {
  font-size: 20px;
  white-space: nowrap;
  background: linear-gradient(90deg, #ecfeff, #86efac, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.12);
}

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

.top-search input,
.mobile-search input,
.big-search input,
.local-search-form input {
  width: 230px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  outline: none;
  background: rgba(15, 23, 42, 0.92);
  padding: 11px 15px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.top-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.local-search-form input:focus {
  border-color: rgba(52, 211, 153, 0.72);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.top-search button,
.mobile-search button,
.big-search button {
  border: 0;
  border-radius: 999px;
  color: #022c22;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  padding: 11px 16px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 10px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-strong);
}

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

.mobile-links {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  background: radial-gradient(circle at 24% 18%, rgba(16, 185, 129, 0.18), transparent 30rem), #020617;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px) brightness(0.34) saturate(1.24);
  transform: scale(1.08);
}

.hero-bg::after,
.hero-slide.poster-missing .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 44%, rgba(2, 6, 23, 0.86) 100%),
    radial-gradient(circle at 72% 28%, rgba(34, 211, 238, 0.18), transparent 24rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  align-items: center;
  gap: 58px;
  padding: 78px 0 86px;
}

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

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 18px 0 18px;
  color: #f8fafc;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero-line,
.page-hero p,
.detail-one-line {
  max-width: 760px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.9;
}

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

.hero-tags span,
.tag-row span {
  border: 1px solid rgba(52, 211, 153, 0.26);
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(16, 185, 129, 0.1);
  padding: 6px 10px;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
}

.primary-button {
  color: #022c22;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 16px 38px rgba(16, 185, 129, 0.24);
}

.ghost-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(15, 23, 42, 0.7);
}

.text-button {
  color: var(--primary);
  padding-inline: 8px;
}

.hero-poster {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(8, 47, 73, 0.75)),
    radial-gradient(circle at 50% 20%, rgba(52, 211, 153, 0.24), transparent 18rem);
  box-shadow: var(--shadow);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 18px;
  padding: 14px 16px;
  color: #f8fafc;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(14px);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.34);
  cursor: pointer;
}

.hero-dot.active {
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.quick-filter {
  margin-top: -42px;
  position: relative;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.big-search input {
  flex: 1;
  width: auto;
  min-width: 0;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quick-links a,
.category-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 12px;
  font-size: 13px;
  background: rgba(15, 23, 42, 0.68);
}

.section,
.page-main {
  padding: 66px 0;
}

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

.section-heading h2 {
  margin: 8px 0 0;
  color: #f8fafc;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.04em;
}

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

.section-heading a {
  color: var(--primary);
  font-weight: 800;
}

.section-heading.slim {
  align-items: center;
}

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

.category-tile {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.26);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.category-tile:hover img {
  opacity: 0.58;
  transform: scale(1.06);
}

.category-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.92)),
    radial-gradient(circle at 20% 10%, rgba(16, 185, 129, 0.24), transparent 11rem);
  z-index: 1;
}

.category-tile.poster-missing {
  background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.22), transparent 14rem), #0f172a;
}

.category-tile-content {
  position: absolute;
  inset: auto 16px 16px 16px;
  z-index: 2;
}

.category-tile-content span,
.category-tile-content small {
  color: var(--primary);
  font-size: 12px;
}

.category-tile-content h3 {
  margin: 8px 0;
  color: #f8fafc;
  font-size: 22px;
}

.category-tile-content p {
  margin: 0 0 8px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.76);
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 18px 45px rgba(16, 185, 129, 0.08);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(52, 211, 153, 0.2), transparent 11rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(8, 47, 73, 0.9));
}

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

.movie-card:hover .poster-frame img {
  transform: scale(1.06);
}

.poster-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  color: #e2e8f0;
  font-weight: 800;
  line-height: 1.5;
}

.poster-missing .poster-fallback {
  display: flex;
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.play-chip {
  right: 10px;
  bottom: 10px;
  color: #022c22;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  padding: 7px 9px;
}

.rank-badge {
  left: 10px;
  top: 10px;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  padding: 7px 10px;
}

.movie-card-body {
  padding: 14px;
}

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

.movie-card h3 {
  margin: 8px 0 8px;
  min-height: 48px;
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.45;
}

.movie-card p {
  min-height: 62px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.category-pill {
  margin-top: 12px;
  color: #a7f3d0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(34px, 6vw, 68px);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(8, 47, 73, 0.72)),
    radial-gradient(circle at 80% 0%, rgba(16, 185, 129, 0.22), transparent 22rem);
  box-shadow: var(--shadow);
}

.small-hero,
.category-hero,
.rank-hero {
  margin-bottom: 36px;
}

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

.breadcrumb a {
  color: #a7f3d0;
}

.category-overview-block {
  margin-top: 54px;
}

.filter-panel {
  margin: 26px 0 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.76);
}

.filter-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  padding: 8px 0;
}

.filter-line > span {
  color: #f8fafc;
  font-weight: 800;
  padding-top: 8px;
}

.filter-line div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(2, 6, 23, 0.28);
  padding: 8px 12px;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: #022c22;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}

.rank-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: start;
}

.rank-panel,
.content-card,
.side-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 20px 54px rgba(2, 6, 23, 0.22);
}

.rank-panel h2,
.content-card h2,
.side-card h2 {
  margin: 0 0 18px;
  color: #f8fafc;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 56px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  background: rgba(2, 6, 23, 0.28);
}

.rank-row img {
  width: 56px;
  height: 78px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.16);
}

.rank-number {
  color: var(--amber);
  font-weight: 900;
}

.rank-info strong {
  display: block;
  color: #f8fafc;
}

.rank-info small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.rank-row em {
  color: var(--primary);
  font-style: normal;
  font-weight: 800;
}

.detail-main {
  padding-top: 34px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(8, 47, 73, 0.68)),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.2), transparent 24rem);
  box-shadow: var(--shadow);
}

.detail-poster {
  border-radius: 26px;
  box-shadow: 0 18px 54px rgba(2, 6, 23, 0.34);
}

.detail-copy h1 {
  font-size: clamp(34px, 5vw, 64px);
}

.detail-meta,
.side-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.detail-meta li,
.side-meta li {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgba(2, 6, 23, 0.26);
}

.detail-meta span,
.side-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.detail-meta strong,
.side-meta strong {
  color: #f8fafc;
}

.player-section {
  padding-top: 54px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  color: #f8fafc;
  background:
    radial-gradient(circle at center, rgba(16, 185, 129, 0.22), transparent 18rem),
    rgba(2, 6, 23, 0.52);
  cursor: pointer;
}

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

.play-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #022c22;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-size: 30px;
  box-shadow: 0 18px 50px rgba(16, 185, 129, 0.24);
}

.play-overlay strong {
  font-size: 24px;
}

.play-overlay small {
  color: var(--soft);
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  margin: 0;
  color: #fecaca;
  text-align: center;
  pointer-events: none;
}

.detail-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  padding-top: 54px;
}

.content-card p {
  color: var(--soft);
  line-height: 2;
  margin: 0 0 24px;
}

.related-section {
  padding-top: 54px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.76);
  padding: 48px 0 26px;
}

.footer-grid,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 36px;
}

.footer-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-grid h3 {
  color: #f8fafc;
  margin: 0 0 14px;
}

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

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

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.hidden-card {
  display: none !important;
}

.empty-results {
  grid-column: 1 / -1;
  border: 1px dashed rgba(148, 163, 184, 0.3);
  border-radius: 24px;
  color: var(--muted);
  padding: 34px;
  text-align: center;
  background: rgba(15, 23, 42, 0.5);
}

@media (max-width: 1180px) {
  .movie-grid,
  .compact-grid,
  .mini-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .rank-layout,
  .detail-content-layout {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-menu-button {
    display: block;
    margin-left: auto;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 54px 0 84px;
  }

  .hero-poster {
    min-height: 420px;
  }

  .hero-poster img {
    min-height: 420px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 64px;
  }

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

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

  .hero-line,
  .page-hero p,
  .detail-one-line {
    font-size: 15px;
  }

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

  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card h3 {
    min-height: auto;
  }

  .movie-card p {
    min-height: auto;
  }

  .quick-filter {
    margin-top: -24px;
  }

  .big-search,
  .mobile-search {
    align-items: stretch;
    flex-direction: column;
  }

  .big-search input,
  .mobile-search input {
    width: 100%;
  }

  .detail-meta,
  .side-meta {
    grid-template-columns: 1fr;
  }

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

  .rank-row {
    grid-template-columns: 34px 48px 1fr;
  }

  .rank-row em {
    display: none;
  }
}
