:root {
  --pink: #ec4899;
  --pink-dark: #db2777;
  --purple: #9333ea;
  --purple-dark: #6d28d9;
  --yellow: #fde047;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #f3d6e8;
  --card: #ffffff;
  --soft: #fdf2f8;
  --dark: #111827;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, #fff7fb 0%, #ffffff 45%, #f6f0ff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.18);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-dark);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.brand-text {
  font-size: 22px;
}

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

.nav-link {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--yellow);
  opacity: 1;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.hero-search-panel input,
.page-filter input,
.advanced-search input,
.advanced-search select {
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(236, 72, 153, 0.15);
}

.header-search button,
.mobile-search button,
.hero-search-panel button,
.page-filter button,
.advanced-search button {
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(236, 72, 153, 0.22);
}

.header-search button {
  color: var(--pink-dark);
  background: #fff;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

.mobile-nav {
  display: none;
  padding: 14px 20px 18px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(236, 72, 153, 0.18);
}

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

.mobile-link {
  display: block;
  padding: 12px 0;
  color: var(--text);
  font-weight: 700;
}

.mobile-link.active {
  color: var(--pink);
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.mobile-search input {
  flex: 1;
  border: 1px solid var(--line);
}

main {
  min-height: 70vh;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(236, 72, 153, 0.42), transparent 32%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.65) 46%, rgba(17, 24, 39, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.88), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 110px 24px 170px;
  margin-left: max(24px, calc((100vw - 1280px) / 2 + 20px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(236, 72, 153, 0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions,
.hero-tags,
.detail-tags,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.primary-btn,
.ghost-btn,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  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(--pink) 0%, var(--purple) 100%);
  box-shadow: 0 14px 28px rgba(236, 72, 153, 0.35);
}

.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

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

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

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffe4f2;
  background: rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 700;
}

.hero-search-panel {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 32px;
  width: min(1180px, calc(100vw - 40px));
  transform: translateX(-50%);
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.hero-search-panel form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.hero-search-panel input {
  height: 50px;
}

.hero-search-panel button {
  height: 50px;
  min-width: 130px;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero-quick-links a {
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 700;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: max(24px, calc((100vw - 1280px) / 2 + 20px));
  width: 260px;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.hero-dot {
  border: 0;
  border-radius: 18px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-dot.active,
.hero-dot:hover {
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.94), rgba(147, 51, 234, 0.94));
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 20px;
}

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

.section-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more {
  color: var(--pink-dark);
  background: #fff;
  box-shadow: 0 10px 26px rgba(236, 72, 153, 0.16), inset 0 0 0 1px rgba(236, 72, 153, 0.16);
}

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

.category-tile {
  position: relative;
  min-height: 180px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  background: var(--dark);
  box-shadow: 0 18px 35px rgba(17, 24, 39, 0.14);
}

.category-tile img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.45s ease;
}

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

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.12));
}

.category-tile span,
.category-tile em {
  position: relative;
  z-index: 1;
}

.category-tile span {
  font-size: 23px;
  font-weight: 900;
}

.category-tile em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
}

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

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

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

.movie-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(236, 72, 153, 0.18);
}

.poster-frame {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #201026;
}

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

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

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(236, 72, 153, 0.92);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(236, 72, 153, 0.25);
}

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

.card-content h3 {
  margin: 0;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

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

.card-meta {
  margin-top: auto;
  color: #8b5cf6;
  font-size: 12px;
  font-weight: 800;
}

.card-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f5f3ff;
}

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

.rank-card a {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 15px;
  min-height: 128px;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(236, 72, 153, 0.16);
}

.rank-card img {
  width: 88px;
  height: 116px;
  border-radius: 14px;
  object-fit: cover;
  background: #201026;
}

.rank-card strong {
  display: block;
  margin-bottom: 7px;
  color: #111827;
  font-size: 17px;
  font-weight: 900;
}

.rank-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
}

.rank-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero,
.detail-hero {
  max-width: 1280px;
  margin: 34px auto 0;
  padding: 0 20px;
}

.page-hero > div,
.detail-hero {
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(253, 224, 71, 0.34), transparent 24%),
    linear-gradient(135deg, var(--pink) 0%, var(--purple) 55%, #111827 100%);
  box-shadow: 0 26px 58px rgba(147, 51, 234, 0.24);
}

.page-hero > div {
  padding: 62px;
}

.page-hero h1,
.detail-info h1 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.page-hero p,
.detail-one-line {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.85;
}

.page-filter,
.advanced-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.page-filter input,
.advanced-search input {
  min-width: min(520px, 100%);
  height: 50px;
}

.advanced-search select {
  min-width: 180px;
  height: 50px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  padding: 16px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}

.category-cover {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background: #201026;
}

.category-cover img {
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.category-cover span {
  position: absolute;
  left: 15px;
  bottom: 15px;
  font-size: 24px;
  font-weight: 900;
}

.category-overview-content h2 {
  margin: 4px 0 10px;
  font-size: 25px;
  font-weight: 900;
}

.category-overview-content p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.category-overview-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-overview-content a:hover {
  color: var(--pink);
}

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

.breadcrumb a {
  color: var(--pink-dark);
  font-weight: 800;
}

.detail-hero {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 34px;
  padding: 32px;
}

.detail-poster img {
  height: 460px;
  border-radius: 24px;
  object-fit: cover;
  background: #201026;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.26);
}

.detail-info {
  align-self: center;
}

.detail-meta {
  margin: 22px 0 18px;
}

.detail-meta span {
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.detail-tags {
  margin-bottom: 24px;
}

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

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000;
  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.24);
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

.play-layer {
  position: absolute;
  inset: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.22), rgba(0, 0, 0, 0.38));
  cursor: pointer;
}

.play-layer.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.play-layer span {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  color: var(--pink-dark);
  background: #fff;
  font-size: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.article-panel {
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}

.article-panel h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 900;
}

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

.article-panel p {
  margin: 0;
  color: #374151;
  font-size: 16px;
  line-height: 2;
}

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

.ranking-item a {
  display: grid;
  grid-template-columns: 58px 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.rank-number {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  font-size: 20px;
  font-weight: 900;
}

.ranking-item img {
  width: 110px;
  height: 148px;
  border-radius: 16px;
  object-fit: cover;
  background: #201026;
}

.ranking-item h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
}

.ranking-item p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.empty-state {
  margin: 26px 0 0;
  padding: 24px;
  border-radius: 20px;
  color: var(--muted);
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08);
}

.site-footer {
  margin-top: 40px;
  padding: 54px 20px 24px;
  color: #d1d5db;
  background: linear-gradient(90deg, #1f2937 0%, #111827 45%, #030712 100%);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.footer-brand span {
  color: var(--pink);
}

.site-footer p {
  margin: 0;
  max-width: 360px;
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #f9a8d4;
}

.footer-copy {
  max-width: 1280px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .header-search {
    display: none;
  }

  .hero-dots {
    display: none;
  }

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

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

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-inner {
    gap: 14px;
  }

  .brand-text {
    font-size: 19px;
  }

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

  .hero-content {
    margin-left: 0;
    padding: 86px 20px 250px;
  }

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

  .content-section {
    padding: 38px 16px;
  }

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

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

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

  .page-hero,
  .detail-hero {
    margin-top: 22px;
  }

  .page-hero > div,
  .detail-hero {
    padding: 30px;
    border-radius: 26px;
  }

  .detail-poster img {
    height: auto;
    max-height: 540px;
  }

  .ranking-item a {
    grid-template-columns: 48px 88px 1fr;
    gap: 12px;
  }

  .ranking-item img {
    width: 88px;
    height: 120px;
  }

  .ranking-item h2 {
    font-size: 19px;
  }

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

@media (max-width: 560px) {
  .header-inner {
    height: 62px;
    padding: 0 14px;
  }

  .mobile-search {
    flex-direction: column;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 36px;
  }

  .hero-content p,
  .page-hero p,
  .detail-one-line {
    font-size: 15px;
  }

  .hero-actions,
  .page-filter,
  .advanced-search {
    flex-direction: column;
    align-items: stretch;
  }

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

  .poster-frame {
    height: 330px;
  }

  .rank-card a {
    grid-template-columns: 82px 1fr;
  }

  .page-filter input,
  .advanced-search input,
  .advanced-search select {
    min-width: 0;
    width: 100%;
  }

  .ranking-item a {
    grid-template-columns: 1fr;
  }

  .rank-number {
    width: 44px;
    height: 44px;
  }

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