:root {
  color-scheme: light;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --orange-50: #fff7ed;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --pink-50: #fdf2f8;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(244, 63, 94, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, var(--rose-50), var(--orange-50) 42%, var(--pink-50));
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 250, 0.92);
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.08);
}

.header-inner {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-400));
  box-shadow: 0 12px 24px rgba(244, 63, 94, 0.28);
  font-size: 14px;
}

.logo-text,
.footer-logo {
  font-size: 24px;
  background: linear-gradient(90deg, var(--rose-500), var(--orange-500));
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4b5563;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--rose-600);
  background: rgba(244, 63, 94, 0.08);
}

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

.header-search input,
.mobile-search input,
.large-search input,
.filter-bar input {
  border: 1px solid rgba(244, 63, 94, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.filter-bar input:focus {
  border-color: var(--rose-500);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.header-search input {
  width: 230px;
  padding: 11px 16px;
}

.mobile-search input,
.large-search input,
.filter-bar input {
  width: 100%;
  padding: 14px 18px;
}

.header-search button,
.mobile-search button,
.large-search button {
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(90deg, var(--rose-500), var(--orange-500));
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.22);
}

.menu-button {
  display: none;
  border: none;
  background: rgba(244, 63, 94, 0.1);
  color: var(--rose-600);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 18px;
}

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

.mobile-search {
  margin-bottom: 14px;
}

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

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #111827;
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 32%, rgba(249, 115, 22, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.58) 46%, rgba(17, 24, 39, 0.2) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.1));
}

.hero-content {
  position: relative;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 72px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 56px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-600);
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 800;
}

.hero .eyebrow {
  color: #ffe4e6;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.8;
}

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

.hero-tags {
  margin: 24px 0;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-tags span,
.tag-row span {
  color: var(--rose-600);
  background: var(--rose-50);
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(90deg, var(--rose-500), var(--orange-500));
  box-shadow: 0 16px 32px rgba(244, 63, 94, 0.34);
}

.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  text-align: center;
  padding: 12px 16px;
  color: #fff;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.62);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  font-size: 32px;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dots button.active {
  width: 34px;
  background: #fff;
}

.section-wrap,
.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px;
}

.no-padding-top {
  padding-top: 0;
}

.section-title,
.section-heading-line,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-title {
  align-items: flex-start;
  justify-content: flex-start;
}

.title-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
  box-shadow: 0 12px 26px rgba(244, 63, 94, 0.25);
}

.section-title h2,
.section-heading-line h2,
.panel-title h2,
.detail-side h2,
.detail-main h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-title p,
.section-heading-line p,
.page-hero p,
.category-card span,
.detail-line {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading-line a,
.panel-title a {
  color: var(--rose-600);
  font-weight: 800;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-chips a {
  padding: 12px 18px;
  border-radius: 999px;
  color: #4b5563;
  background: #fff;
  border: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 10px 25px rgba(244, 63, 94, 0.08);
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease;
}

.category-chips a:hover {
  color: var(--rose-600);
  transform: translateY(-2px);
}

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

.featured-grid,
.latest-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

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

.movie-card {
  overflow: hidden;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(244, 63, 94, 0.1);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(244, 63, 94, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.46));
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

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

.year-badge {
  top: 10px;
  left: 10px;
  color: #fff;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
}

.play-chip {
  right: 10px;
  bottom: 10px;
  color: #fff;
  background: linear-gradient(90deg, var(--rose-500), var(--orange-500));
  box-shadow: 0 10px 20px rgba(244, 63, 94, 0.28);
}

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

.movie-card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.movie-card-body h3 a:hover {
  color: var(--rose-600);
}

.movie-card-body p {
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 12px;
}

.movie-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f9fafb;
}

.tag-row {
  min-height: 27px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.ranking-panel,
.category-panel,
.detail-main,
.detail-side,
.page-hero,
.ranking-wide {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(244, 63, 94, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.ranking-panel,
.category-panel,
.detail-main,
.detail-side,
.ranking-wide {
  padding: 24px;
}

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

.mini-card,
.rank-row {
  display: grid;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mini-card {
  grid-template-columns: auto 78px 1fr;
  padding: 10px;
}

.mini-card:hover,
.rank-row:hover {
  background: var(--rose-50);
  transform: translateX(3px);
}

.rank-num,
.rank-row-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
  font-weight: 900;
}

.mini-card img {
  width: 78px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.mini-card span,
.rank-row-copy {
  min-width: 0;
}

.mini-card strong,
.rank-row strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card em,
.rank-row em,
.rank-row small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

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

.category-card {
  min-height: 132px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff, rgba(255, 241, 242, 0.9));
  border: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: 0 14px 35px rgba(244, 63, 94, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(244, 63, 94, 0.15);
}

.category-card strong {
  display: block;
  color: var(--rose-600);
  font-size: 20px;
}

.page-shell {
  min-height: 70vh;
}

.page-hero {
  padding: 36px;
  margin-bottom: 28px;
}

.page-hero h1 {
  margin: 16px 0 0;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.06em;
}

.filter-bar,
.large-search {
  max-width: 680px;
  margin-top: 24px;
}

.empty-state {
  display: none;
  text-align: center;
  color: var(--muted);
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
}

.empty-state.show {
  display: block;
}

.ranking-wide {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.rank-row {
  grid-template-columns: 48px 126px 1fr;
  padding: 12px;
}

.rank-row img {
  width: 126px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-page {
  padding-bottom: 56px;
}

.player-section {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 0 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.22);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111827;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: none;
  color: #fff;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(244, 63, 94, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.72));
  transition: opacity 0.2s ease;
}

.play-circle {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
  box-shadow: 0 18px 40px rgba(244, 63, 94, 0.35);
  font-size: 28px;
  padding-left: 4px;
}

.player-overlay strong {
  font-size: 24px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.player-shell.is-playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.detail-layout {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.detail-title-row {
  display: grid;
  grid-template-columns: 174px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 24px;
}

.detail-title-row img {
  width: 174px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.16);
}

.detail-title-row h1 {
  margin: 16px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.detail-meta-grid span {
  padding: 14px;
  border-radius: 16px;
  background: #f9fafb;
  color: var(--muted);
  font-size: 14px;
}

.detail-meta-grid strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.detail-main p {
  color: #4b5563;
  line-height: 1.95;
  font-size: 16px;
}

.detail-main h2 {
  margin: 30px 0 12px;
  font-size: 24px;
}

.detail-side {
  position: sticky;
  top: 92px;
}

.related-list {
  margin-top: 18px;
}

.detail-neighbor {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.detail-neighbor a {
  color: var(--rose-600);
  font-weight: 800;
}

.detail-more {
  padding-top: 36px;
}

.search-grid:empty + .empty-state,
[data-empty-state].show,
[data-search-empty].show {
  display: block;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(244, 63, 94, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

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

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

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

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

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

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

  .menu-button {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .hero {
    height: auto;
    min-height: 640px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 48px;
  }

  .hero-poster {
    max-width: 280px;
    transform: none;
  }

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

  .detail-side {
    position: static;
  }

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

@media (max-width: 720px) {
  .header-inner,
  .mobile-panel,
  .section-wrap,
  .page-shell,
  .player-section,
  .detail-layout,
  .breadcrumb {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo-text {
    font-size: 20px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-arrow {
    display: none;
  }

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

  .section-title,
  .section-heading-line,
  .panel-title,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .category-cards,
  .compact-categories {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .ranking-panel,
  .category-panel,
  .detail-main,
  .detail-side,
  .ranking-wide {
    padding: 20px;
    border-radius: 20px;
  }

  .rank-row {
    grid-template-columns: 42px 92px 1fr;
  }

  .rank-row img {
    width: 92px;
  }

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

  .detail-title-row img {
    width: 150px;
  }

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

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

  .mini-card .rank-num {
    display: none;
  }

  .mini-card img {
    width: 64px;
  }
}

@media (max-width: 430px) {
  .movie-grid,
  .featured-grid,
  .latest-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

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