:root {
  --sand-50: #fdfaf7;
  --sand-100: #f9f3ed;
  --sand-200: #efe2d5;
  --sand-300: #e6d3c0;
  --earth-100: #ede9e4;
  --earth-300: #c2b4a3;
  --earth-500: #8f7862;
  --earth-600: #786351;
  --earth-700: #645345;
  --earth-800: #57483c;
  --earth-900: #473c33;
  --desert-50: #fef9f3;
  --desert-100: #fde9d4;
  --desert-500: #e9822d;
  --desert-600: #dd6f1f;
  --desert-700: #b75617;
  --white: #ffffff;
  --black: #000000;
  --shadow-md: 0 4px 12px rgba(71, 60, 51, 0.12);
  --shadow-lg: 0 16px 34px rgba(71, 60, 51, 0.14);
  --shadow-2xl: 0 25px 55px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand-50);
  color: var(--earth-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--earth-900);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--desert-600), var(--desert-700));
  box-shadow: 0 10px 24px rgba(221, 111, 31, 0.28);
}

.brand-text {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--earth-700);
  font-weight: 600;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--desert-600);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--earth-800);
  border-radius: 2px;
}

.hero-slider {
  position: relative;
  height: 74vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--earth-900);
}

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

.hero-slide {
  opacity: 0;
  transition: opacity 900ms ease;
  pointer-events: none;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 120px;
  color: var(--white);
  max-width: 1180px;
}

.hero-content h1 {
  width: min(820px, 100%);
  margin: 16px 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-content p {
  width: min(760px, 100%);
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.hero-tags span,
.tag-row span,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--earth-700);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(10px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--desert-600);
  box-shadow: 0 12px 24px rgba(221, 111, 31, 0.28);
}

.btn-primary:hover {
  background: var(--desert-700);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(10px);
}

.btn-ghost.dark {
  color: var(--earth-900);
  background: rgba(255, 255, 255, 0.7);
}

.full-width {
  width: 100%;
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.quick-search {
  margin-top: -46px;
  position: relative;
  z-index: 4;
}

.quick-search-inner {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 470px);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.quick-search h2,
.quick-search p {
  margin: 0;
}

.quick-search p {
  color: var(--earth-600);
}

.search-jump,
.filter-panel {
  display: flex;
  gap: 12px;
}

.search-jump input,
.filter-panel input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--sand-300);
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
  color: var(--earth-900);
  background: var(--sand-50);
}

.search-jump input:focus,
.filter-panel input:focus {
  border-color: var(--desert-500);
  box-shadow: 0 0 0 4px rgba(221, 111, 31, 0.12);
}

.search-jump button {
  min-width: 100px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--desert-600);
  cursor: pointer;
  font-weight: 800;
}

.page-sections {
  padding: 78px 0 92px;
}

.content-section {
  margin-bottom: 86px;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--earth-900);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
}

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

.centered-heading {
  justify-content: center;
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--desert-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

.card-grid-compact {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 22px;
}

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

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

.movie-card {
  min-width: 0;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(71, 60, 51, 0.10);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-link {
  display: block;
  height: 100%;
}

.card-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--earth-900);
}

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

.movie-card:hover .card-cover img {
  transform: scale(1.09);
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08));
  transition: opacity 0.3s ease;
}

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

.card-duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.card-duration {
  top: 10px;
  right: 10px;
  padding: 4px 9px;
  background: rgba(0, 0, 0, 0.68);
}

.rank-badge {
  top: 10px;
  left: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--desert-600);
}

.card-hover-text {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--white);
  font-size: 0.86rem;
  line-height: 1.45;
  opacity: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: opacity 0.3s ease;
}

.movie-card:hover .card-hover-text {
  opacity: 1;
}

.card-body {
  padding: 17px;
}

.movie-card-large .card-body {
  padding: 22px;
}

.card-body h2 {
  display: -webkit-box;
  min-height: 2.8em;
  margin: 0 0 9px;
  overflow: hidden;
  color: var(--earth-900);
  font-size: 1.05rem;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card-large .card-body h2 {
  font-size: 1.45rem;
}

.movie-card:hover h2 {
  color: var(--desert-600);
}

.card-desc {
  display: -webkit-box;
  min-height: 3em;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--earth-600);
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  margin: 0 0 12px;
  color: var(--earth-500);
  font-size: 0.78rem;
}

.band-section,
.discovery-section,
.ranking-strip {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--desert-50), var(--sand-100));
}

.discovery-section {
  background: linear-gradient(135deg, var(--desert-100), var(--sand-100), var(--earth-100));
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 290px;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.scroll-row .movie-card {
  scroll-snap-align: start;
}

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

.category-tile {
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 22px;
  background: var(--earth-900);
  box-shadow: var(--shadow-md);
}

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

.category-tile:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent);
}

.category-tile span {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: var(--white);
}

.category-tile strong,
.category-tile em {
  display: block;
}

.category-tile strong {
  font-size: 1.25rem;
}

.category-tile em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-style: normal;
}

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

.page-hero {
  padding: 74px 0 62px;
  background: linear-gradient(135deg, var(--desert-100), var(--sand-100));
}

.small-hero h1,
.category-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.small-hero p,
.category-hero p {
  width: min(760px, 100%);
  margin: 0;
  color: var(--earth-700);
  font-size: 1.08rem;
}

.category-actions {
  margin-top: 24px;
}

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

.category-overview-card,
.side-card,
.detail-card,
.player-card {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.category-overview-card {
  padding: 26px;
}

.category-title-link h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.category-title-link p {
  margin: 0 0 22px;
  color: var(--earth-600);
}

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

.mini-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.mini-card:hover {
  background: var(--sand-50);
}

.mini-card img {
  width: 112px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--earth-900);
  font-size: 0.92rem;
  line-height: 1.38;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mini-card em {
  margin-top: 5px;
  color: var(--earth-500);
  font-size: 0.75rem;
  font-style: normal;
}

.filter-panel {
  flex-direction: column;
  padding: 34px 0 22px;
}

.filter-panel input {
  min-height: 54px;
  border-radius: 18px;
  background: var(--white);
}

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

.filter-buttons button,
.category-tabs a {
  border: 1px solid var(--sand-300);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--earth-700);
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-buttons button.is-active,
.filter-buttons button:hover,
.category-tabs a.is-active,
.category-tabs a:hover {
  color: var(--white);
  border-color: var(--desert-600);
  background: var(--desert-600);
}

.searchable-grid,
.rank-list {
  padding-bottom: 92px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 34px;
}

.local-filter-panel {
  padding-top: 22px;
}

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

.movie-card-horizontal .card-link {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 170px;
}

.movie-card-horizontal .card-cover {
  aspect-ratio: auto;
  height: 100%;
}

.movie-card-horizontal .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--earth-600);
  font-size: 0.92rem;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.86fr);
  gap: 28px;
  align-items: start;
}

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

.player-card {
  padding: 0;
  overflow: hidden;
  background: var(--black);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.player-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 999px;
  padding-left: 4px;
  color: var(--desert-600);
  background: var(--white);
  box-shadow: var(--shadow-2xl);
  font-size: 2rem;
}

.detail-card {
  padding: 30px;
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--sand-200);
}

.detail-meta span {
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--earth-700);
  background: var(--sand-100);
  font-size: 0.86rem;
  font-weight: 700;
}

.one-line {
  margin: 0 0 28px;
  color: var(--earth-700);
  font-size: 1.08rem;
  font-weight: 700;
}

.article-block {
  margin-top: 26px;
}

.article-block h2 {
  margin: 0 0 12px;
  color: var(--earth-900);
  font-size: 1.3rem;
}

.article-block p {
  margin: 0;
  color: var(--earth-700);
  line-height: 1.9;
}

.detail-tags a {
  min-height: 34px;
  padding: 6px 14px;
  transition: background 0.2s ease;
}

.detail-tags a:hover {
  background: var(--sand-200);
}

.detail-side {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 22px;
}

.side-card {
  padding: 22px;
}

.side-card h2 {
  margin: 0 0 18px;
  font-size: 1.35rem;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 18px;
}

.related-bottom {
  margin-bottom: 0;
}

.site-footer {
  color: var(--earth-100);
  background: var(--earth-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 54px 0 34px;
}

.footer-logo {
  margin-bottom: 14px;
  font-size: 1.6rem;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: var(--earth-300);
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

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

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--earth-300);
  font-size: 0.92rem;
}

.is-hidden-by-filter {
  display: none !important;
}

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

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

@media (max-width: 860px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 18px;
    border-top: 1px solid var(--sand-200);
    background: rgba(255, 255, 255, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .hero-slider {
    height: 68vh;
    min-height: 520px;
  }

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

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

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

  .card-grid-featured,
  .card-grid-compact,
  .card-grid-4,
  .card-grid-6,
  .rank-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-side {
    position: static;
  }

  .movie-card-horizontal .card-link {
    grid-template-columns: 220px 1fr;
  }

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

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

  .brand-text {
    font-size: 1.28rem;
  }

  .hero-slider {
    min-height: 560px;
  }

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

  .hero-content h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .search-jump {
    width: 100%;
    flex-direction: column;
  }

  .btn,
  .search-jump button {
    width: 100%;
  }

  .hero-arrow {
    display: none;
  }

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

  .quick-search-inner,
  .band-section,
  .discovery-section,
  .ranking-strip,
  .detail-card {
    padding: 22px;
    border-radius: 22px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-grid-featured,
  .card-grid-compact,
  .card-grid-4,
  .card-grid-6,
  .rank-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .scroll-row {
    grid-auto-columns: 82%;
  }

  .movie-card-horizontal .card-link {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal .card-cover {
    aspect-ratio: 16 / 9;
  }

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

  .mini-card img {
    width: 96px;
    height: 60px;
  }

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