:root {
  --color-primary: #0ea5e9;
  --color-primary-dark: #0284c7;
  --color-blue: #2563eb;
  --color-text: #1f2937;
  --color-muted: #64748b;
  --color-border: #e5e7eb;
  --color-soft: #f0f9ff;
  --color-card: #ffffff;
  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.18);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.55), #ffffff 420px);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.narrow-container {
  width: min(880px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.35);
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-blue));
  -webkit-background-clip: text;
  color: transparent;
}

.brand-copy small,
.footer-brand small {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 12px;
}

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

.nav-link {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 12px;
  color: #475569;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0369a1;
  background: #e0f2fe;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #f0f9ff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #0369a1;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: #475569;
}

.mobile-nav-link:hover {
  color: #0369a1;
  background: #e0f2fe;
}

.page-main {
  padding: 32px 0 16px;
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  margin-bottom: 64px;
  background: #020617;
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.52) 48%, rgba(2, 6, 23, 0.12));
}

.hero-content {
  position: absolute;
  left: clamp(24px, 6vw, 80px);
  top: 50%;
  width: min(620px, calc(100% - 48px));
  transform: translateY(-50%);
  color: #ffffff;
}

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

.pill-row span,
.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.pill-row span:first-child {
  color: #ffffff;
  background: var(--color-primary);
}

.pill-row span:not(:first-child) {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 700px;
  margin: 0 0 20px;
  color: #e2e8f0;
  font-size: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #cbd5e1;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.35);
}

.primary-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  background: rgba(2, 6, 23, 0.5);
  backdrop-filter: blur(12px);
  transition: 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.75);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

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

.hero-dot.active {
  width: 32px;
  background: #ffffff;
}

.section {
  margin-bottom: 64px;
}

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

.section-head h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

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

.text-link {
  color: #0284c7;
  font-weight: 700;
}

.text-link:hover {
  color: #0369a1;
}

.horizontal-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x proximity;
}

.scroll-card {
  width: 240px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.movie-card {
  transition: opacity 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card.is-hidden {
  display: none !important;
}

.poster-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-card);
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.06);
}

.poster-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #e2e8f0;
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.poster-card:hover .poster-wrap img {
  transform: scale(1.08);
}

.poster-type {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 12px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.poster-info {
  padding: 14px;
}

.poster-info h3,
.list-content h3,
.wide-overlay h3 {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poster-info h3 {
  font-size: 16px;
}

.poster-card:hover h3,
.movie-card-list:hover h3 {
  color: #0284c7;
}

.poster-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0 10px;
  color: var(--color-muted);
  font-size: 13px;
}

.tag-row span {
  color: #0284c7;
  background: #e0f2fe;
  font-size: 12px;
  padding: 3px 8px;
}

.movie-card-list {
  display: flex;
  gap: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.06);
}

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

.list-poster {
  width: 156px;
  min-height: 210px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #e2e8f0;
}

.list-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 18px 18px 0;
}

.list-content p {
  display: -webkit-box;
  margin: 8px 0 12px;
  overflow: hidden;
  color: var(--color-muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.movie-card-wide {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: var(--shadow-soft);
}

.movie-card-wide img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.wide-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.9));
}

.wide-overlay p {
  display: -webkit-box;
  margin: 8px 0;
  overflow: hidden;
  color: #e2e8f0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.category-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  color: #ffffff;
  background: #020617;
  box-shadow: var(--shadow-soft);
}

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

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

.category-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.86));
}

.category-tile strong,
.category-tile small,
.category-tile p {
  position: relative;
  z-index: 1;
  display: block;
}

.category-tile strong {
  margin-top: 96px;
  font-size: 24px;
}

.category-tile small {
  color: #bae6fd;
  font-weight: 700;
}

.category-tile p {
  margin: 12px 0 0;
  color: #e2e8f0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
}

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

.rank-list.compact {
  position: sticky;
  top: 96px;
}

.rank-item {
  display: grid;
  grid-template-columns: 54px 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
}

.rank-item:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-soft);
}

.rank-number {
  color: #0284c7;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

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

.rank-copy strong,
.rank-copy small {
  display: block;
}

.rank-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy small {
  margin-top: 4px;
  color: var(--color-muted);
}

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

.page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(14, 165, 233, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(240, 249, 255, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  margin: 6px 0 10px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
}

.eyebrow {
  color: #0284c7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb a {
  color: #0284c7;
  font-weight: 700;
}

.filter-panel {
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.filter-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.filter-title span {
  color: #0284c7;
  font-weight: 700;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(4, minmax(120px, 1fr));
  gap: 12px;
}

.filter-grid label {
  display: grid;
  gap: 6px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

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

.category-overview-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.category-cover-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 180px;
  overflow: hidden;
  background: #e2e8f0;
}

.category-cover-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-overview-body {
  padding: 22px;
}

.category-overview-body h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-overview-body p {
  margin: 0 0 16px;
  color: var(--color-muted);
}

.top-three {
  margin-bottom: 32px;
}

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

.detail-main {
  background: linear-gradient(180deg, #f8fafc, #ffffff 560px);
}

.player-shell {
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 28px;
  background: #020617;
  box-shadow: var(--shadow-strong);
}

.video-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  text-align: center;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(14, 165, 233, 0.22), rgba(2, 6, 23, 0.45));
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.player-overlay.is-hidden {
  opacity: 0;
}

.player-play-button {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 28px;
  background: var(--color-primary);
  box-shadow: 0 18px 50px rgba(14, 165, 233, 0.38);
  pointer-events: auto;
}

.player-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: #cbd5e1;
  background: #020617;
}

.player-toolbar button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.player-toolbar button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.player-toolbar span {
  margin-left: auto;
  font-size: 13px;
}

.detail-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-poster img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.detail-info h1 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.1;
}

.lead {
  margin: 0 0 24px;
  color: #475569;
  font-size: 18px;
}

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

.detail-meta-grid div {
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
}

.detail-meta-grid dt {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.detail-meta-grid dd {
  margin: 4px 0 0;
  color: #0f172a;
  font-weight: 700;
}

.detail-meta-grid a {
  color: #0284c7;
}

.detail-tags span {
  font-size: 13px;
}

.article-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.article-card {
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.article-card p {
  margin: 0 0 14px;
  color: #475569;
}

.static-article p {
  font-size: 17px;
}

.site-footer {
  margin-top: 64px;
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc, #eef6ff);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: 44px 0 32px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: #64748b;
}

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

.footer-grid a:hover {
  color: #0284c7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 28px;
  border-top: 1px solid #dbeafe;
  font-size: 14px;
}

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

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

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

  .filter-search {
    grid-column: 1 / -1;
  }
}

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-carousel {
    height: 520px;
    border-radius: 22px;
  }

  .hero-content {
    left: 22px;
    width: calc(100% - 44px);
  }

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

  .hero-arrow {
    display: none;
  }

  .poster-grid,
  .category-grid,
  .wide-grid,
  .category-overview-grid,
  .split-section,
  .article-section,
  .footer-grid,
  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-card {
    padding: 18px;
  }

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

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

  .page-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .rank-list.compact {
    position: static;
  }

  .player-toolbar span {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow-container {
    width: min(100% - 24px, 1280px);
  }

  .page-main {
    padding-top: 18px;
  }

  .hero-carousel {
    height: 480px;
    margin-bottom: 42px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-actions a {
    width: 100%;
  }

  .section {
    margin-bottom: 42px;
  }

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

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

  .poster-info {
    padding: 12px;
  }

  .poster-info h3 {
    font-size: 14px;
  }

  .movie-card-list {
    gap: 12px;
  }

  .list-poster {
    width: 116px;
    min-height: 160px;
  }

  .list-content {
    padding: 12px 12px 12px 0;
  }

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

  .rank-item {
    grid-template-columns: 42px 48px 1fr;
  }

  .rank-item img {
    width: 48px;
    height: 66px;
  }

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