:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
  --soft-shadow: 0 10px 28px rgba(219, 39, 119, 0.14);
  --radius-xl: 24px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--gray-50), var(--white));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(253, 242, 248, 0.96), rgba(255, 255, 255, 0.96), rgba(250, 245, 255, 0.96));
  border-bottom: 1px solid var(--pink-100);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(12px);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
  color: transparent;
  background: linear-gradient(90deg, var(--pink-600), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-600), var(--purple-600));
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  -webkit-background-clip: initial;
  background-clip: initial;
}

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

.desktop-nav a,
.mobile-panel a {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--pink-700);
  background: var(--pink-100);
}

.header-search {
  display: flex;
  align-items: center;
  width: min(300px, 26vw);
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--pink-200);
  border-radius: 999px;
}

.header-search input,
.mobile-search input,
.tools-bar input,
.tools-bar select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--gray-700);
  background: transparent;
}

.header-search input {
  padding: 10px 12px;
}

.header-search button,
.mobile-search button {
  flex: 0 0 auto;
  border: 0;
  padding: 9px 16px;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-600), var(--purple-600));
  border-radius: 999px;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--pink-100);
  border-radius: 12px;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--pink-700);
  border-radius: 4px;
}

.mobile-panel {
  display: none;
  padding: 14px 22px 22px;
  border-top: 1px solid var(--pink-100);
  background: var(--white);
}

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

.mobile-panel nav {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.mobile-search {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--pink-200);
  border-radius: 18px;
}

.mobile-search input {
  padding: 10px 12px;
}

.hero-section {
  padding: 28px 20px 0;
}

.hero-shell {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: var(--gray-900);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 72px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.01);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-copy {
  max-width: 680px;
  color: var(--white);
}

.hero-kicker,
.detail-channel,
.page-hero p,
.section-heading p,
.panel-title p {
  display: inline-flex;
  width: max-content;
  margin: 0 0 14px;
  padding: 6px 12px;
  color: var(--pink-700);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-tags span,
.tag-row span {
  padding: 6px 10px;
  color: var(--pink-700);
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

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

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

.primary-button {
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-600), var(--purple-600));
  box-shadow: 0 14px 28px rgba(219, 39, 119, 0.25);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.text-button {
  min-height: 38px;
  padding: 0 16px;
  color: var(--pink-700);
  background: var(--pink-50);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.hero-poster {
  display: block;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(3deg);
}

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

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-controls button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.42) !important;
}

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

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 22px;
}

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

.section-heading h1,
.section-heading h2,
.panel-title h2,
.page-hero h1 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 900;
}

.section-heading > a,
.compact-heading > a {
  color: var(--pink-700);
  font-weight: 800;
}

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

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

.movie-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-50), var(--purple-50));
}

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

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

.poster-year {
  position: absolute;
  top: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink-600), var(--purple-600));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 700;
}

.movie-card h3 {
  margin: 0 0 10px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.movie-card h3 a:hover {
  color: var(--pink-700);
}

.movie-card p {
  display: -webkit-box;
  min-height: 52px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.soft-panel {
  max-width: 1236px;
  margin-top: 22px;
  padding: 42px;
  background: linear-gradient(135deg, var(--pink-50), var(--purple-50));
  border-radius: 32px;
}

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

.category-card,
.category-overview-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
}

.category-card > a span {
  display: block;
  margin-bottom: 10px;
  color: var(--pink-700);
  font-size: 22px;
  font-weight: 900;
}

.category-card strong {
  display: block;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.category-samples a {
  color: var(--gray-600);
  font-size: 13px;
}

.category-samples a:hover {
  color: var(--pink-700);
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.ranking-panel,
.side-recommend,
.article-panel,
.player-card {
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.ranking-panel {
  position: sticky;
  top: 100px;
  padding: 24px;
}

.rank-list,
.ranking-list-large {
  display: grid;
  gap: 12px;
}

.rank-item {
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--pink-50);
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  background: var(--purple-50);
}

.rank-no {
  color: var(--pink-700);
  font-size: 18px;
  font-weight: 900;
}

.rank-item img {
  width: 58px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-info {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--gray-900);
}

.rank-info em,
.rank-views {
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.rank-views {
  font-weight: 800;
}

.page-hero {
  position: relative;
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 70px 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-600), var(--purple-600));
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.page-hero > div {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero span {
  display: block;
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.8;
}

.tools-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 16px;
  margin-bottom: 28px;
}

.tools-bar label {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
}

.tools-bar span {
  color: var(--pink-700);
  font-size: 13px;
  font-weight: 900;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.mini-posters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-posters img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

.category-overview-card h2 {
  margin: 0 0 10px;
  color: var(--gray-900);
  font-size: 26px;
}

.category-overview-card p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}

.ranking-list-large .rank-item {
  grid-template-columns: 58px 74px minmax(0, 1fr) auto;
  background: var(--white);
  border: 1px solid var(--pink-100);
}

.side-recommend {
  position: sticky;
  top: 100px;
  padding: 22px;
}

.side-recommend h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

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

.side-grid .movie-card-body {
  padding: 12px;
}

.side-grid .movie-card h3 {
  font-size: 15px;
}

.side-grid .movie-card p,
.side-grid .tag-row,
.side-grid .movie-meta {
  display: none;
}

.detail-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 32%), linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.92));
}

.detail-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 22px 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

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

.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
}

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

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

.detail-meta span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 700;
}

.large-tags {
  margin-bottom: 28px;
}

.detail-content {
  margin-top: -88px;
  position: relative;
  z-index: 3;
}

.player-card {
  padding: 16px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 22px;
}

.movie-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 24px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.big-play {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 0;
  color: var(--pink-700);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 32px;
}

.player-cover strong {
  max-width: 80%;
  text-align: center;
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.25;
}

.article-panel {
  margin-top: 28px;
  padding: 32px;
}

.article-panel h2 {
  margin: 0 0 14px;
  color: var(--gray-900);
  font-size: 28px;
}

.article-panel p {
  margin: 0 0 26px;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 2;
}

.related-section {
  margin-top: 34px;
}

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

.site-footer {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--pink-50), var(--purple-50));
  border-top: 1px solid var(--pink-100);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 34px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 22px;
}

.footer-inner p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-content: start;
}

.footer-links a {
  padding: 9px 13px;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--pink-100);
  border-radius: 999px;
  font-weight: 700;
}

.footer-bottom {
  padding: 18px 22px;
  color: var(--gray-500);
  text-align: center;
  border-top: 1px solid var(--pink-100);
}

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

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

  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 54px 34px 86px;
  }

  .hero-poster {
    display: none;
  }

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

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

  .two-column-section,
  .rank-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .header-inner {
    height: 66px;
    padding: 0 16px;
  }

  .site-logo,
  .footer-logo {
    font-size: 20px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
  }

  .hero-section {
    padding: 16px 12px 0;
  }

  .hero-shell,
  .page-hero {
    border-radius: 24px;
  }

  .hero-slider,
  .hero-slide {
    min-height: 500px;
  }

  .hero-slide {
    padding: 42px 22px 86px;
  }

  .hero-copy p,
  .page-hero span,
  .detail-line {
    font-size: 16px;
  }

  .section-wrap {
    padding: 42px 16px;
  }

  .soft-panel {
    margin: 16px;
    padding: 24px 16px;
  }

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

  .movie-grid,
  .movie-grid-home,
  .movie-grid-latest,
  .related-grid,
  .side-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

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

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

  .mini-posters {
    grid-template-columns: repeat(4, 1fr);
  }

  .tools-bar {
    grid-template-columns: 1fr;
  }

  .rank-item,
  .ranking-list-large .rank-item {
    grid-template-columns: 38px 52px minmax(0, 1fr);
  }

  .rank-views {
    display: none;
  }

  .page-hero {
    margin: 16px 12px 0;
    padding: 48px 24px;
  }

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

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

  .detail-inner {
    padding: 22px 16px 70px;
  }

  .detail-content {
    margin-top: -58px;
  }

  .article-panel {
    padding: 24px 18px;
  }

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

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

@media (max-width: 460px) {
  .movie-grid,
  .movie-grid-home,
  .movie-grid-latest,
  .related-grid,
  .side-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .ghost-button {
    width: 100%;
  }
}
