:root {
  --rose: #f43f5e;
  --pink: #ec4899;
  --orange: #fb923c;
  --deep: #881337;
  --ink: #111827;
  --muted: #6b7280;
  --line: #f3d6de;
  --soft: #fff1f2;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(136, 19, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7f8 0%, #ffffff 28%, #fff7ed 100%);
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(136, 19, 55, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--orange));
  box-shadow: 0 12px 22px rgba(244, 63, 94, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, var(--rose), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: #374151;
}

.main-nav > a,
.nav-dropdown > a {
  position: relative;
  padding: 22px 0;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown:hover > a {
  color: var(--rose);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: -18px;
  width: 180px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid #ffe0e8;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: 12px;
  color: #4b5563;
}

.dropdown-panel a:hover {
  background: var(--soft);
}

.nav-search {
  display: flex;
  min-width: 285px;
}

.nav-search input,
.inline-filter input,
.big-search input {
  border: 1px solid #fecdd3;
  background: #ffffff;
  outline: none;
  color: var(--ink);
}

.nav-search input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 999px 0 0 999px;
}

.nav-search button,
.inline-filter button,
.big-search button {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(90deg, var(--rose), var(--pink));
}

.nav-search button {
  padding: 10px 16px;
  border-radius: 0 999px 999px 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--deep);
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid #ffe4e6;
  background: #ffffff;
}

.mobile-menu a {
  display: block;
  padding: 11px 0;
  color: #374151;
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: #4c0519;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.02);
}

.hero-overlay,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 28%, rgba(251, 146, 60, 0.38), transparent 30%),
    linear-gradient(90deg, rgba(76, 5, 25, 0.96) 0%, rgba(136, 19, 55, 0.78) 42%, rgba(17, 24, 39, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.1fr 360px;
  gap: 64px;
  align-items: center;
}

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

.hero-copy p {
  max-width: 720px;
  margin: 0 0 30px;
  color: #ffe4e6;
  font-size: 20px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--rose);
  background: #fff1f2;
  border-color: #fecdd3;
}

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

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

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

.btn.primary {
  color: var(--rose);
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(255, 255, 255, 0.18);
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  border: 5px solid rgba(255, 255, 255, 0.2);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

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

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

.hero-controls button.active {
  width: 34px;
  background: #ffffff;
}

.quick-search-panel {
  margin-top: -44px;
  position: relative;
  z-index: 8;
}

.quick-search-inner {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  align-items: center;
  gap: 28px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  border: 1px solid #ffe4e6;
}

.quick-search-inner h2 {
  margin: 0 0 5px;
  font-size: 28px;
}

.quick-search-inner p {
  margin: 0;
  color: var(--muted);
}

.big-search,
.inline-filter {
  display: flex;
}

.big-search input,
.inline-filter input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px 0 0 999px;
}

.big-search button,
.inline-filter button {
  padding: 14px 24px;
  border-radius: 0 999px 999px 0;
}

.section {
  padding: 70px 0;
}

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

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.more-link {
  color: var(--rose);
  font-weight: 900;
}

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

.category-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  padding: 22px;
  border-radius: 24px;
  color: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  position: relative;
}

.category-card::before {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: -26px;
  top: -26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.category-card:hover,
.movie-card:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(136, 19, 55, 0.18);
}

.category-card span {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.22);
}

.category-card strong,
.category-card em {
  position: relative;
}

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

.category-card em {
  font-size: 13px;
  opacity: 0.86;
  font-style: normal;
}

.color-1 { background: linear-gradient(135deg, #f43f5e, #ec4899); }
.color-2 { background: linear-gradient(135deg, #a855f7, #6366f1); }
.color-3 { background: linear-gradient(135deg, #fb923c, #f59e0b); }
.color-4 { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.color-5 { background: linear-gradient(135deg, #334155, #111827); }
.color-6 { background: linear-gradient(135deg, #14b8a6, #22c55e); }
.color-7 { background: linear-gradient(135deg, #ef4444, #f97316); }
.color-8 { background: linear-gradient(135deg, #8b5cf6, #d946ef); }

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

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

.movie-card {
  background: var(--card);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(136, 19, 55, 0.10);
  border: 1px solid #ffe4e6;
  transition: 0.2s ease;
}

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

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

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

.poster-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(90deg, var(--rose), var(--pink));
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

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

.movie-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 52px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.movie-title:hover {
  color: var(--rose);
}

.movie-card-body p {
  min-height: 50px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
}

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

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

.tag-row span,
.detail-tags a {
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--rose);
  background: #fff1f2;
  font-size: 12px;
  font-weight: 800;
}

.feature-band {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #881337, #be185d, #ea580c);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.two-column h2 {
  margin: 14px 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.two-column p {
  color: #ffe4e6;
  font-size: 18px;
}

.rank-panel,
.side-card,
.prose-block,
.category-overview-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid #ffe4e6;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.rank-panel {
  padding: 24px;
}

.rank-panel h3 {
  margin: 0 0 18px;
  font-size: 26px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 56px 86px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #ffe4e6;
  box-shadow: 0 10px 24px rgba(136, 19, 55, 0.08);
}

.rank-number {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose), var(--pink));
}

.rank-cover img {
  width: 86px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.rank-body a {
  font-size: 18px;
  font-weight: 900;
}

.rank-body a:hover {
  color: var(--rose);
}

.rank-body p {
  margin: 4px 0 10px;
  color: var(--muted);
}

.sub-hero {
  color: #ffffff;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 80% 18%, rgba(251, 146, 60, 0.34), transparent 24%),
    linear-gradient(135deg, #881337, #be185d, #f97316);
}

.sub-hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
}

.sub-hero p {
  max-width: 760px;
  color: #ffe4e6;
  font-size: 19px;
}

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

.breadcrumb a:hover {
  color: #ffffff;
}

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

.category-overview-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  align-items: center;
  transition: 0.2s ease;
}

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

.overview-thumbs img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.category-overview-card h2 {
  margin: 8px 0;
}

.category-overview-card p {
  color: var(--muted);
}

.inline-filter {
  max-width: 560px;
  margin-top: 24px;
}

.empty-state {
  display: none;
  width: min(680px, calc(100% - 32px));
  margin: 30px auto 70px;
  padding: 32px;
  border-radius: 26px;
  color: var(--muted);
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow);
}

.search-status {
  min-height: 26px;
}

.detail-hero {
  position: relative;
  min-height: 640px;
  color: #ffffff;
  overflow: hidden;
  background: #4c0519;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) saturate(1.1);
  transform: scale(1.04);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: end;
}

.detail-poster {
  width: 300px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.detail-info h1 {
  margin: 14px 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
}

.detail-info p {
  max-width: 820px;
  color: #ffe4e6;
  font-size: 20px;
}

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

.detail-meta span {
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.player-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.28);
  aspect-ratio: 16 / 9;
}

.player-card video,
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player-card video {
  z-index: 1;
  background: #000000;
}

.player-cover {
  z-index: 3;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #020617;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.player-cover span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.95);
  font-size: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

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

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.prose-block {
  padding: 30px;
}

.prose-block h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.prose-block p {
  color: #4b5563;
  font-size: 17px;
}

.side-card {
  padding: 24px;
  position: sticky;
  top: 88px;
}

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

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

.side-card dd {
  margin: 0;
  font-weight: 800;
}

.prev-next {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-top: 0;
  padding-bottom: 0;
}

.prev-next a {
  padding: 18px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #ffe4e6;
  color: var(--deep);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(136, 19, 55, 0.08);
}

.site-footer {
  color: #ffffff;
  background: linear-gradient(135deg, #881337, #9f1239, #c2410c);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-grid p {
  color: #ffe4e6;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

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

.footer-links a {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.footer-bottom {
  text-align: center;
  padding: 18px;
  color: #ffe4e6;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  display: none;
  place-items: center;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: var(--shadow);
}

.back-top.visible {
  display: grid;
}

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

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

  .hero-content,
  .two-column,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

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

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

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

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .hero-carousel,
  .hero-content {
    min-height: 560px;
  }

  .hero-copy p,
  .detail-info p,
  .sub-hero p {
    font-size: 16px;
  }

  .quick-search-panel {
    margin-top: 0;
  }

  .quick-search-inner {
    grid-template-columns: 1fr;
    border-radius: 0;
    width: calc(100% + 24px);
    margin-left: -12px;
  }

  .section {
    padding: 48px 0;
  }

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

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

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

  .movie-title {
    font-size: 16px;
    min-height: 46px;
  }

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

  .detail-poster {
    width: 210px;
  }

  .detail-content,
  .prev-next {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

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

  .rank-item {
    grid-template-columns: 44px 70px 1fr;
    gap: 10px;
  }

  .rank-number {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .rank-cover img {
    width: 70px;
  }

  .rank-body p {
    display: none;
  }
}

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

  .big-search,
  .inline-filter {
    display: grid;
    gap: 10px;
  }

  .big-search input,
  .inline-filter input,
  .big-search button,
  .inline-filter button {
    border-radius: 999px;
  }
}
