:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: rgba(15, 23, 42, 0.76);
  --panel-line: rgba(148, 163, 184, 0.14);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 158, 11, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.1), transparent 30rem),
    var(--bg);
  color: var(--text);
}

body.no-scroll {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
  z-index: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  backdrop-filter: blur(16px);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #111827;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.34);
}

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

.desktop-nav a,
.desktop-nav button,
.mobile-nav a,
.mobile-nav button {
  border: 0;
  color: #d1d5db;
  background: transparent;
  border-radius: 12px;
  transition: 0.2s ease;
}

.desktop-nav a,
.desktop-nav button {
  padding: 10px 14px;
}

.desktop-nav a:hover,
.desktop-nav button:hover,
.mobile-nav a:hover,
.mobile-nav button:hover {
  color: #ffffff;
  background: rgba(30, 41, 59, 0.86);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 180px;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}

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

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
}

.mobile-menu-button {
  display: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.85);
  color: #ffffff;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 12px;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.98);
}

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

.mobile-nav a,
.mobile-nav button {
  width: 100%;
  padding: 12px;
  text-align: left;
}

main {
  position: relative;
  z-index: 1;
}

.page-offset {
  padding-top: 92px;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, var(--bg), transparent 38%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
  padding-top: 44px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 0;
  color: #d1d5db;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 26px 0 32px;
  color: #cbd5e1;
}

.hero-year {
  color: var(--accent);
  font-size: 26px;
  font-weight: 900;
}

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

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #111827;
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.28);
}

.button-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.34);
}

.button-ghost {
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(245, 158, 11, 0.42);
  color: #fbbf24;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.74);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

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

.hero-dot.is-active {
  width: 44px;
  background: var(--accent);
}

.section {
  padding: 54px 0 0;
}

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

.section-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.section-desc {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.movie-card {
  display: block;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.56);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.34);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3);
}

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

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

.movie-card:hover .poster-wrap img,
.category-tile:hover img,
.wide-card:hover img,
.ranking-card:hover img,
.compact-card:hover img {
  transform: scale(1.05);
}

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), transparent);
}

.quality-badge,
.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.quality-badge {
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  background: var(--accent);
  color: #111827;
}

.year-badge {
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  background: rgba(15, 23, 42, 0.84);
  color: #f8fafc;
}

.card-body {
  padding: 14px;
}

.card-body h3,
.wide-body h3,
.ranking-body h3,
.compact-card h3 {
  margin: 0;
  color: #ffffff;
  line-height: 1.32;
}

.card-body h3 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
}

.card-body p,
.wide-body p,
.ranking-body p,
.compact-card p {
  color: var(--muted);
  line-height: 1.6;
}

.card-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 8px 0 10px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 13px;
}

.card-meta,
.tag-row,
.breadcrumb,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.card-meta {
  color: #64748b;
  font-size: 12px;
}

.movie-card-large .card-body h3 {
  font-size: 20px;
}

.movie-card-large .card-body p {
  font-size: 14px;
}

.category-tile {
  position: relative;
  display: block;
  min-height: 240px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: #0f172a;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.08));
}

.category-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.category-info span {
  display: inline-block;
  margin-bottom: 8px;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 800;
}

.category-info h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.category-info p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.5;
  font-size: 14px;
}

.wide-list,
.ranking-list,
.compact-list {
  display: grid;
  gap: 14px;
}

.wide-card,
.ranking-card,
.compact-card {
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.68);
  transition: 0.22s ease;
}

.wide-card:hover,
.ranking-card:hover,
.compact-card:hover {
  border-color: rgba(245, 158, 11, 0.32);
  background: rgba(15, 23, 42, 0.9);
}

.wide-card {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 18px;
  padding: 14px;
  border-radius: 18px;
}

.wide-card img {
  width: 138px;
  height: 194px;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.wide-body h3 {
  font-size: 22px;
}

.wide-body p {
  margin: 10px 0;
}

.ranking-panel,
.detail-panel,
.list-panel {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.56);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.ranking-panel {
  padding: 18px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 54px 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #111827;
  background: linear-gradient(135deg, var(--accent), #f97316);
  font-size: 18px;
  font-weight: 900;
}

.ranking-card img {
  width: 74px;
  height: 104px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.ranking-body h3 {
  font-size: 17px;
}

.ranking-body p {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 13px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0 28px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.52);
}

.filter-bar input {
  width: min(460px, 100%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  outline: none;
  border-radius: 14px;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.62);
}

.filter-bar input:focus {
  border-color: rgba(245, 158, 11, 0.5);
}

.page-hero {
  padding: 92px 0 36px;
  background:
    radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(15, 23, 42, 0.5), transparent);
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.7;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

.player-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 22px;
  background: #000000;
  box-shadow: var(--shadow);
}

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

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.64));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #f97316);
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(245, 158, 11, 0.32);
}

.detail-panel {
  padding: 24px;
  margin-top: 20px;
}

.detail-panel h1,
.detail-panel h2,
.sidebar-card h2 {
  margin: 0 0 14px;
}

.detail-panel h1 {
  font-size: clamp(28px, 4vw, 42px);
}

.detail-meta {
  margin: 0 0 18px;
  color: var(--soft);
}

.tag-row {
  margin: 18px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.92);
  color: #cbd5e1;
  font-size: 13px;
}

.detail-text {
  color: #d1d5db;
  line-height: 1.9;
}

.detail-text p {
  margin: 0 0 14px;
}

.sidebar-card {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.58);
  padding: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.sidebar-card + .sidebar-card {
  margin-top: 18px;
}

.sidebar-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  object-fit: cover;
}

.compact-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
}

.compact-card img {
  width: 68px;
  height: 96px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.compact-card h3 {
  font-size: 14px;
}

.compact-card p {
  display: -webkit-box;
  margin: 6px 0 0;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 12px;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 16px 24px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.search-panel {
  width: min(720px, 100%);
  max-height: calc(100vh - 120px);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.search-box input {
  flex: 1;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  font-size: 18px;
}

.search-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.9);
}

.search-results {
  max-height: 62vh;
  overflow-y: auto;
  padding: 14px;
}

.search-empty {
  padding: 34px 18px;
  color: var(--muted);
  text-align: center;
}

.search-result {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  transition: 0.18s ease;
}

.search-result:hover {
  background: rgba(30, 41, 59, 0.84);
}

.search-result img {
  width: 56px;
  height: 78px;
  border-radius: 10px;
  object-fit: cover;
}

.search-result h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.search-result p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 13px;
}

.search-result span {
  display: inline-block;
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
}

.site-footer {
  margin-top: 64px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  padding: 42px 0;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding: 18px 0 28px;
  color: #64748b;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  font-size: 14px;
}

.is-filtered-out {
  display: none !important;
}

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

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

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

  .sidebar-card {
    max-width: 520px;
  }
}

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

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

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    max-width: 100%;
    padding-inline: 6px;
  }

  .hero-arrow {
    display: none;
  }

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

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

  .wide-card {
    grid-template-columns: 104px 1fr;
  }

  .wide-card img {
    width: 104px;
    height: 146px;
  }

  .wide-body h3 {
    font-size: 18px;
  }

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

@media (max-width: 520px) {
  .header-inner,
  .container,
  .mobile-nav {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    height: 76vh;
    min-height: 560px;
  }

  .hero-meta {
    gap: 10px;
  }

  .grid-six,
  .grid-four,
  .grid-three,
  .grid-category {
    gap: 12px;
  }

  .card-body {
    padding: 12px;
  }

  .card-body h3 {
    font-size: 14px;
  }

  .card-body p {
    font-size: 12px;
  }

  .ranking-card {
    grid-template-columns: 44px 60px 1fr;
    gap: 10px;
  }

  .ranking-card img {
    width: 60px;
    height: 84px;
  }

  .rank-number {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 15px;
  }

  .filter-bar input {
    width: 100%;
  }
}
