:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(34, 211, 238, 0.22);
  --line-soft: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --cyan: #06b6d4;
  --cyan-soft: rgba(6, 182, 212, 0.18);
  --blue: #2563eb;
  --green: #34d399;
  --purple: #c084fc;
  --orange: #fb923c;
  --pink: #f472b6;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 32px rgba(6, 182, 212, 0.45);
}

.brand-copy strong {
  display: block;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #67e8f9, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  color: rgba(103, 232, 249, 0.72);
  font-size: 12px;
}

.desktop-nav,
.mobile-nav {
  align-items: center;
  gap: 6px;
}

.desktop-nav {
  display: flex;
}

.nav-link {
  padding: 10px 15px;
  border-radius: 14px;
  color: #cbd5e1;
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.14);
  box-shadow: inset 0 0 0 1px rgba(6, 182, 212, 0.18);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: white;
  background: rgba(15, 23, 42, 0.7);
}

.menu-button span {
  height: 2px;
  border-radius: 999px;
  background: #67e8f9;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
}

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

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.14) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.84) 44%, rgba(2, 6, 23, 0.58) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.2) 42%, rgba(2, 6, 23, 0.84) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  min-height: 610px;
  margin: 0 auto;
  padding: 94px 0 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #67e8f9;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags {
  margin-top: 26px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(6, 182, 212, 0.12);
  font-size: 13px;
}

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

.primary-button,
.ghost-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 15px;
  font-weight: 700;
  transition: 0.22s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 38px rgba(6, 182, 212, 0.28);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(6, 182, 212, 0.38);
}

.ghost-button {
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: rgba(15, 23, 42, 0.62);
}

.ghost-button:hover {
  color: #67e8f9;
  border-color: rgba(34, 211, 238, 0.45);
}

.hero-poster {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 118px;
  z-index: 3;
  width: min(330px, 28vw);
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow), 0 0 54px rgba(6, 182, 212, 0.18);
  transform: rotate(2deg);
  transition: 0.35s ease;
}

.hero-poster:hover {
  transform: translateY(-8px) rotate(0deg);
}

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

.hero-poster span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  color: white;
  background: rgba(6, 182, 212, 0.9);
}

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

.hero-dot {
  width: 40px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

.hero-dot.is-active {
  background: #67e8f9;
  box-shadow: 0 0 20px rgba(103, 232, 249, 0.55);
}

.hero-search {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 34px;
  width: min(880px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hero-search input,
.filter-panel input,
.filter-panel select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.76);
  outline: none;
}

.hero-search input,
.filter-panel input {
  padding: 0 16px;
}

.filter-panel select {
  padding: 0 14px;
}

.hero-search button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.42;
}

.hero-orb-one {
  width: 220px;
  height: 220px;
  right: 26%;
  top: 120px;
  background: rgba(6, 182, 212, 0.4);
}

.hero-orb-two {
  width: 160px;
  height: 160px;
  right: 7%;
  bottom: 90px;
  background: rgba(37, 99, 235, 0.38);
}

.site-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
}

.section-title {
  margin-bottom: 28px;
}

.section-title h2,
.panel-title h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  background: linear-gradient(90deg, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title-green h2 {
  background-image: linear-gradient(90deg, #4ade80, #34d399);
}

.section-title-purple h2 {
  background-image: linear-gradient(90deg, #c084fc, #f472b6);
}

.section-title p {
  margin: 8px 0 0;
  max-width: 760px;
  color: var(--muted);
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.52);
  box-shadow: 0 14px 35px rgba(2, 6, 23, 0.26);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.44);
  background: rgba(15, 23, 42, 0.82);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(37, 99, 235, 0.12));
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(2, 6, 23, 0.76));
  opacity: 0;
  transition: 0.25s ease;
}

.movie-card:hover .poster-link::after {
  opacity: 1;
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: 0.5s ease;
}

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

.type-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.type-badge {
  right: 12px;
  padding: 5px 9px;
  background: rgba(6, 182, 212, 0.88);
}

.rank-badge {
  left: 12px;
  min-width: 32px;
  min-height: 32px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), #ef4444);
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0;
  min-height: 52px;
  font-size: 17px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: #67e8f9;
}

.card-body p {
  margin: 10px 0 0;
  color: #cbd5e1;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  min-height: 26px;
  padding: 3px 9px;
  font-size: 12px;
}

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

.category-card,
.category-overview-card,
.side-card,
.detail-panel,
.player-card,
.ranking-panel,
.filter-panel,
.page-hero {
  border: 1px solid var(--line-soft);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.category-card {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border-radius: var(--radius);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  transition: 0.45s ease;
}

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

.category-card div {
  position: relative;
  z-index: 2;
  min-height: 238px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.94));
}

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

.category-card span {
  margin-top: 5px;
  color: #67e8f9;
}

.category-card p {
  margin: 10px 0 0;
  color: #cbd5e1;
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

.ranking-panel {
  position: sticky;
  top: 100px;
  padding: 22px;
  border-radius: var(--radius);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-title h2 {
  font-size: 24px;
}

.panel-title a,
.text-link {
  color: #67e8f9;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.28);
}

.rank-row span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: rgba(6, 182, 212, 0.22);
}

.rank-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  grid-column: 2 / 3;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.rank-row b {
  grid-column: 3 / 4;
  grid-row: 1 / span 2;
  color: #fb923c;
}

.page-hero {
  width: min(1240px, calc(100% - 32px));
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 20%, rgba(6, 182, 212, 0.2), transparent 32rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.92));
}

.slim-hero > div {
  padding: clamp(34px, 6vw, 78px);
}

.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
}

.page-hero p:not(.hero-kicker) {
  max-width: 780px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 18px;
}

.page-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-stats span {
  padding: 8px 13px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(6, 182, 212, 0.1);
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 22px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #cbd5e1;
}

.result-count {
  margin: 0 0 18px;
  color: var(--muted);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 18px;
  border-radius: var(--radius);
}

.category-cover {
  overflow: hidden;
  border-radius: 18px;
}

.category-cover img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.category-overview-card h2 {
  margin: 6px 0 10px;
  font-size: 24px;
}

.category-overview-card p {
  margin: 0;
  color: #cbd5e1;
}

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

.movie-card-list {
  display: grid;
  grid-template-columns: 145px 1fr;
}

.movie-card-list .poster-link img {
  height: 100%;
}

.movie-card-list .card-body h3 {
  min-height: auto;
  font-size: 21px;
}

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

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

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

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: start;
}

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

.player-card {
  overflow: hidden;
  border-radius: 28px;
}

.video-wrap {
  position: relative;
  background: #000;
}

.video-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.play-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.58));
}

.play-cover span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 46px rgba(6, 182, 212, 0.48);
  font-size: 34px;
}

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

.detail-panel {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 28px;
}

.detail-panel h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(30, 41, 59, 0.88);
}

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

.detail-panel section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.detail-panel h2,
.side-card h2 {
  margin: 0 0 12px;
  color: #67e8f9;
  font-size: 22px;
}

.detail-panel p {
  margin: 0;
  color: #dbeafe;
  font-size: 17px;
}

.detail-side {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 20px;
}

.detail-cover {
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.side-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px 12px;
  margin: 0;
}

.side-card dt {
  color: var(--muted);
}

.side-card dd {
  margin: 0;
  color: #e2e8f0;
}

.side-card a {
  color: #67e8f9;
}

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

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

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer-inner strong {
  color: var(--text);
  font-size: 20px;
}

.footer-inner p {
  margin: 5px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

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

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

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

  .ranking-panel,
  .detail-side {
    position: static;
  }

  .detail-side {
    grid-template-columns: 240px 1fr;
  }
}

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

  .menu-button {
    display: flex;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    min-height: 640px;
    padding-top: 82px;
    padding-bottom: 260px;
  }

  .hero-poster {
    left: 32px;
    right: auto;
    bottom: 110px;
    width: 170px;
    border-radius: 22px;
  }

  .hero-controls {
    bottom: 250px;
  }

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

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

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

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

  .category-overview-card {
    grid-template-columns: 120px 1fr;
  }

  .category-cover img {
    min-height: 180px;
  }

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

  .detail-cover {
    max-width: 260px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-inner {
    height: 66px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 13px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

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

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

  .site-section {
    padding: 44px 0;
  }

  .card-body {
    padding: 12px;
  }

  .card-body h3 {
    min-height: 44px;
    font-size: 15px;
  }

  .card-body p,
  .meta-line,
  .tag-row {
    font-size: 12px;
  }

  .movie-card-list {
    grid-template-columns: 104px 1fr;
  }

  .movie-card-list .card-body h3 {
    font-size: 17px;
  }

  .play-cover span {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }
}
