* {
  box-sizing: border-box;
}

:root {
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.74);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(59, 130, 246, 0.24);
  --line-soft: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --subtle: #64748b;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --orange: #f97316;
  --radius: 18px;
  --shadow: 0 22px 70px rgba(2, 6, 23, 0.42);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 34rem),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.16), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, input, select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.container {
  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: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.90), rgba(15, 23, 42, 0.96));
  box-shadow: 0 16px 48px rgba(2, 6, 23, 0.38);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 26px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  color: white;
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.24);
}

.brand-text {
  font-size: 20px;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link,
.mobile-link {
  color: #cbd5e1;
  padding: 10px 13px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: white;
  background: rgba(59, 130, 246, 0.22);
}

.header-search,
.mobile-search,
.search-panel {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.search-panel input,
.filter-panel input,
.filter-panel select {
  border: 1px solid rgba(148, 163, 184, 0.20);
  outline: none;
  color: white;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 999px;
  padding: 11px 15px;
  min-width: 220px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.search-panel input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(96, 165, 250, 0.86);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.22);
}

.header-search button,
.mobile-search button,
.search-panel button,
.primary-button,
.ghost-button,
.text-button {
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.header-search button,
.mobile-search button,
.search-panel button,
.primary-button {
  color: white;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  padding: 11px 18px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.search-panel button:hover,
.primary-button:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.08);
}

.ghost-button {
  padding: 11px 18px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.54);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ghost-button:hover {
  border-color: rgba(96, 165, 250, 0.56);
  background: rgba(37, 99, 235, 0.20);
}

.text-button {
  color: #67e8f9;
  padding: 11px 4px;
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  color: white;
  background: rgba(15, 23, 42, 0.80);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: rgba(2, 6, 23, 0.98);
}

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

.mobile-menu-inner {
  padding: 16px 0 18px;
  display: grid;
  gap: 10px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.1s ease;
  pointer-events: none;
}

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

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.56), rgba(2, 6, 23, 0.22)),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.22) 46%, rgba(2, 6, 23, 0.10) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 86px;
}

.hero-copy {
  max-width: 760px;
  padding: 30px;
  border: 1px solid rgba(96, 165, 250, 0.20);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.66), rgba(15, 23, 42, 0.20));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-badge,
.section-label,
.small-pill,
.movie-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.hero-badge,
.movie-category,
.small-pill {
  padding: 5px 11px;
}

.section-label {
  padding: 5px 12px;
  margin-bottom: 10px;
}

.hero h1,
.hero-kicker-title {
  margin: 18px 0 4px;
  color: #bfdbfe;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 680px;
  color: #cbd5e1;
  font-size: 18px;
  margin: 0 0 20px;
}

.hero-meta,
.detail-meta,
.movie-meta,
.movie-stats,
.row-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.hero-meta span,
.detail-meta span,
.movie-meta span,
.movie-stats span,
.row-topline span {
  display: inline-flex;
  align-items: center;
}

.hero-meta span:not(:last-child)::after,
.detail-meta span:not(:last-child)::after,
.movie-meta span:not(:last-child)::after,
.movie-stats span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.58);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: white;
  background: rgba(2, 6, 23, 0.56);
  font-size: 38px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(37, 99, 235, 0.50);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: white;
}

.quick-entry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -34px;
  position: relative;
  z-index: 6;
}

.quick-entry a {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.26);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.quick-entry a:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.58);
  background: rgba(30, 41, 59, 0.92);
}

.quick-entry strong {
  font-size: 18px;
}

.quick-entry span {
  color: var(--muted);
  font-size: 14px;
}

.page-stack {
  display: grid;
  gap: 64px;
  padding: 58px 0 80px;
}

.content-section {
  padding: 34px 0;
}

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

.section-head h2,
.compact-hero h1,
.detail-card h1,
.side-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.section-more {
  color: #67e8f9;
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

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

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 330px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scrollbar-color: rgba(96, 165, 250, 0.62) rgba(15, 23, 42, 0.62);
}

.movie-card,
.movie-row,
.detail-card,
.side-card,
.poster-card,
.filter-panel,
.search-panel,
.rank-panel {
  border: 1px solid var(--line-soft);
  background: var(--panel);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.18);
  backdrop-filter: blur(12px);
}

.movie-card {
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(96, 165, 250, 0.46);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
}

.movie-cover-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.84), rgba(15, 23, 42, 0.96));
}

.movie-cover-link img,
.row-cover img,
.category-card img,
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.72));
}

.card-play,
.row-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 34px;
  opacity: 0;
  background: rgba(2, 6, 23, 0.28);
  transition: opacity 0.2s ease;
}

.movie-card:hover .card-play,
.movie-row:hover .row-play {
  opacity: 1;
}

.card-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: white;
  background: rgba(2, 6, 23, 0.76);
  font-size: 12px;
}

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

.movie-card h3,
.movie-row h3 {
  margin: 10px 0 8px;
  line-height: 1.35;
  font-size: 17px;
}

.movie-card h3 a,
.movie-row h3 a {
  transition: color 0.2s ease;
}

.movie-card h3 a:hover,
.movie-row h3 a:hover {
  color: #60a5fa;
}

.movie-card p,
.movie-row p,
.compact-hero p,
.detail-card p,
.site-footer p,
.category-card em {
  color: var(--muted);
}

.movie-card p {
  margin: 0 0 14px;
  font-size: 14px;
  min-height: 44px;
}

.movie-meta,
.movie-stats,
.row-topline {
  font-size: 13px;
}

.movie-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.movie-row:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(30, 41, 59, 0.78);
}

.row-cover {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  background: #0f172a;
}

.row-body {
  min-width: 0;
  padding: 16px;
}

.row-body p {
  margin: 0 0 12px;
  font-size: 14px;
}

.row-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 12px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

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

.page-hero {
  padding: 76px 0 44px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.34), transparent 32rem),
    linear-gradient(90deg, rgba(30, 64, 175, 0.36), rgba(6, 182, 212, 0.14));
}

.compact-hero .container {
  display: grid;
  gap: 10px;
}

.compact-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
}

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

.breadcrumb a:hover {
  color: #67e8f9;
}

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

.category-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.24);
}

.category-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.92));
}

.category-card-content {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 8px;
  padding: 24px;
}

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

.category-card em {
  font-style: normal;
  font-size: 14px;
}

.filter-panel,
.search-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.filter-panel input,
.search-panel input {
  flex: 1;
}

.filter-panel select {
  min-width: 180px;
}

.rank-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.rank-tabs button {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.76);
  padding: 12px 20px;
  font-weight: 800;
}

.rank-tabs button.is-active {
  color: white;
  border-color: rgba(96, 165, 250, 0.52);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.rank-list {
  display: none;
}

.rank-list.is-active {
  display: grid;
}

.detail-shell {
  padding: 34px 0 20px;
}

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

.detail-main {
  display: grid;
  gap: 22px;
}

.player-shell {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(96, 165, 250, 0.26);
  background: #000;
  box-shadow: var(--shadow);
}

.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: white;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.20), rgba(2, 6, 23, 0.56));
  z-index: 3;
}

.play-overlay span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 40px;
  padding-left: 5px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.34);
}

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

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

.detail-card,
.side-card,
.poster-card {
  border-radius: 22px;
  padding: 24px;
}

.detail-card h1 {
  margin-bottom: 14px;
}

.detail-card h2 {
  margin: 26px 0 10px;
  font-size: 22px;
}

.detail-card p {
  margin: 0 0 12px;
  font-size: 16px;
}

.lead-text {
  color: #dbeafe !important;
  font-weight: 700;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 12px;
}

.tag-cloud a,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(51, 65, 85, 0.72);
  font-size: 13px;
}

.tag-cloud a {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.28);
}

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

.poster-card {
  display: grid;
  gap: 14px;
}

.poster-card img {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: #0f172a;
}

.poster-card strong,
.poster-card span {
  display: block;
}

.poster-card span {
  color: var(--muted);
  font-size: 14px;
}

.side-card h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.side-card .movie-row {
  grid-template-columns: 96px minmax(0, 1fr);
}

.side-card .row-body {
  padding: 10px;
}

.side-card .row-body p,
.side-card .movie-stats,
.side-card .small-pill,
.side-card .row-topline span:not(:first-child) {
  display: none;
}

.side-card .row-cover {
  min-height: 78px;
}

.empty-state {
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: 22px;
}

.site-footer {
  margin-top: 40px;
  padding: 44px 0 28px;
  border-top: 1px solid var(--line-soft);
  background: rgba(2, 6, 23, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  font-size: 22px;
  color: #67e8f9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: #cbd5e1;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--subtle);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .header-search {
    display: none;
  }

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

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

  .detail-side {
    position: static;
  }
}

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

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    gap: 14px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero-copy {
    padding: 22px;
  }

  .hero-arrow {
    display: none;
  }

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

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

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

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-copy {
    border-radius: 22px;
    padding: 18px;
  }

  .hero h2 {
    font-size: 34px;
  }

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

  .hero-actions,
  .detail-actions,
  .filter-panel,
  .search-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a,
  .detail-actions a,
  .filter-panel input,
  .filter-panel select,
  .search-panel input,
  .search-panel button,
  .mobile-search input,
  .mobile-search button {
    width: 100%;
    justify-content: center;
  }

  .quick-entry,
  .card-grid.three-columns,
  .card-grid.four-columns,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .row-cover {
    min-height: 112px;
  }

  .row-body {
    padding: 12px;
  }

  .row-body p,
  .movie-stats {
    display: none;
  }

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