:root {
  --rose: #fb7185;
  --rose-deep: #e11d48;
  --teal: #2dd4bf;
  --amber: #f59e0b;
  --ink: #1f2937;
  --muted: #6b7280;
  --soft: #fff7f9;
  --line: #e5e7eb;
  --card: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

* {
  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;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7f9 0%, #ffffff 24%, #f8fafc 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 241, 242, 0.96), rgba(255, 255, 255, 0.94), rgba(240, 253, 250, 0.96));
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--teal));
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.28);
}

.brand-text,
.footer-logo span:last-child {
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(90deg, var(--rose), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: #4b5563;
}

.nav-link {
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--rose), var(--teal));
  transition: transform 0.2s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #4b5563;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

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

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: #4b5563;
  background: #fff7f9;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 72px 0 60px;
  background: radial-gradient(circle at 20% 10%, rgba(251, 113, 133, 0.22), transparent 34%), radial-gradient(circle at 86% 18%, rgba(45, 212, 191, 0.20), transparent 32%), linear-gradient(135deg, #fff1f2 0%, #fdf2f8 45%, #ecfeff 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.25;
}

.hero-glow-one {
  width: 300px;
  height: 300px;
  left: -90px;
  top: 120px;
  background: var(--rose);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: 40px;
  background: var(--teal);
}

.hero-shell,
.section-block,
.footer-grid,
.detail-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
  margin: 0 auto 30px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 800;
}

.hero-heading h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  font-weight: 900;
  background: linear-gradient(90deg, var(--rose), #ec4899, var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-heading p:last-child,
.page-hero p:last-child {
  margin: 18px auto 0;
  max-width: 760px;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.stat-card {
  min-width: 170px;
  padding: 18px 28px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(244, 63, 94, 0.16);
}

.stat-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--rose);
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hero-carousel {
  position: relative;
  min-height: 390px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  padding: 42px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.hero-text h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 900;
  color: #111827;
}

.hero-text p:not(.eyebrow) {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.75;
  color: #4b5563;
}

.hero-tags,
.detail-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #be123c;
  background: rgba(255, 228, 230, 0.9);
  border: 1px solid rgba(251, 113, 133, 0.2);
  font-size: 13px;
  font-weight: 700;
}

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

.primary-button,
.secondary-button,
.filter-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.primary-button,
.filter-panel button {
  color: white;
  background: linear-gradient(90deg, var(--rose), var(--teal));
  box-shadow: 0 18px 35px rgba(244, 63, 94, 0.24);
}

.secondary-button {
  color: #0f766e;
  background: rgba(240, 253, 250, 0.95);
  border: 1px solid rgba(45, 212, 191, 0.25);
}

.hero-poster {
  position: relative;
  min-height: 300px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.24), rgba(45, 212, 191, 0.24));
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.20);
}

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

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

.hero-poster span {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: white;
  font-size: 24px;
  font-weight: 900;
}

.hero-dots {
  position: absolute;
  left: 42px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

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

.hero-dot.is-active {
  background: linear-gradient(90deg, var(--rose), var(--teal));
}

.hero-category-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-category-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: #475569;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.section-block {
  padding: 64px 0;
}

.soft-section {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #ffffff, #fff7f9);
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 26px;
}

.section-title-row h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.text-link {
  color: #0f766e;
  font-weight: 800;
}

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

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

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

.movie-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card-link:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(244, 63, 94, 0.14);
}

.poster-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.22), rgba(45, 212, 191, 0.24));
}

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

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

.poster-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.60));
}

.poster-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(15, 23, 42, 0.72);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.movie-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 18px;
}

.movie-card-body h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
}

.movie-meta,
.movie-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.movie-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 180px auto;
  gap: 14px;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.12);
}

.empty-state {
  display: none;
  text-align: center;
  color: var(--muted);
  padding: 30px;
  border-radius: 20px;
  background: white;
}

.empty-state.is-visible {
  display: block;
}

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

.mini-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 16px;
  border-radius: 24px;
  color: white;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.62), rgba(20, 184, 166, 0.62));
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}

.mini-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.78));
}

.mini-card strong,
.mini-card small,
.mini-rank {
  position: relative;
  z-index: 2;
}

.mini-card strong {
  font-size: 18px;
  line-height: 1.3;
}

.mini-card small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.mini-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 38px auto 0;
  padding: 58px;
  border-radius: 34px;
  background: radial-gradient(circle at top left, rgba(251, 113, 133, 0.18), transparent 36%), radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.16), transparent 34%), rgba(255, 255, 255, 0.80);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.compact-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
}

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

.category-card a {
  display: grid;
  gap: 12px;
  min-height: 250px;
  padding: 28px;
  border-radius: 30px;
  background: white;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card a:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(20, 184, 166, 0.14);
}

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

.category-card em {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
  font-style: normal;
  font-weight: 800;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.category-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-card div span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #be123c;
  background: #ffe4e6;
  font-size: 12px;
  font-weight: 700;
}

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

.rank-link {
  display: grid;
  grid-template-columns: 70px 150px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.rank-number {
  font-size: 30px;
  font-weight: 900;
  color: var(--rose);
}

.rank-poster {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.22), rgba(45, 212, 191, 0.24));
}

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

.rank-info h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.rank-info p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.heat-score {
  padding: 9px 13px;
  border-radius: 999px;
  color: #0f766e;
  background: #ccfbf1;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 70px 0;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.26;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) saturate(1.05);
  transform: scale(1.04);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% 20%, rgba(251, 113, 133, 0.26), transparent 36%), linear-gradient(90deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.56));
}

.detail-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  min-height: 460px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.28), rgba(45, 212, 191, 0.28));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

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

.detail-info,
.detail-info .eyebrow {
  color: white;
}

.detail-info h1 {
  color: white;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.detail-lead {
  max-width: 760px;
  margin: 20px 0;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.detail-tags {
  margin: 18px 0 28px;
}

.watch-section {
  padding-top: 58px;
}

.player-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 34px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: white;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.20), rgba(15, 23, 42, 0.72));
  border: 0;
  cursor: pointer;
}

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

.play-overlay span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--teal));
  box-shadow: 0 24px 50px rgba(244, 63, 94, 0.32);
  font-size: 34px;
}

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

.player-card p {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 3;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(10px);
}

.prose-card {
  padding: 34px;
  border-radius: 30px;
  background: white;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

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

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

.prose-card p {
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.9;
}

.site-footer {
  margin-top: 30px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 1020px) {
  .movie-grid,
  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

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

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

  .menu-button {
    display: block;
  }

  .hero-section {
    min-height: auto;
    padding: 44px 0;
  }

  .hero-slide {
    padding: 24px;
  }

  .hero-carousel {
    min-height: 730px;
    border-radius: 24px;
  }

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

  .hero-dots {
    left: 24px;
  }

  .section-title-row {
    display: grid;
  }

  .movie-grid,
  .featured-grid,
  .category-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .page-hero,
  .prose-card {
    padding: 28px;
    border-radius: 24px;
  }

  .rank-link {
    grid-template-columns: 48px 96px 1fr;
  }

  .heat-score {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .detail-hero {
    padding: 36px 0;
  }

  .detail-poster,
  .detail-poster img {
    min-height: 340px;
  }

  .player-card,
  .player-card video {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 520px) {
  .brand-text {
    font-size: 20px;
  }

  .hero-heading p:last-child,
  .page-hero p:last-child,
  .detail-lead {
    font-size: 16px;
  }

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

  .rank-link {
    grid-template-columns: 1fr;
  }

  .rank-poster {
    max-width: 180px;
  }
}
