:root {
  --bg: #0a0a0a;
  --bg-soft: #101010;
  --surface: #171717;
  --surface-light: #242424;
  --border: #333333;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --muted-dark: #737373;
  --accent: #ea580c;
  --accent-light: #fb923c;
  --accent-dark: #9a3412;
  --primary: #172554;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  --radius: 18px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(234, 88, 12, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(30, 64, 175, 0.18), transparent 38rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #ffffff;
  font-size: 18px;
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.32);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

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

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

.nav-link {
  color: #d4d4d4;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent-light);
}

.nav-link-sub {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}

.header-search {
  display: flex;
  align-items: center;
  width: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 10px 14px;
}

.header-search input::placeholder {
  color: #858585;
}

.header-search button {
  border: 0;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--accent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #ffffff;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mobile-nav {
  display: grid;
  gap: 12px;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: 18px 0;
}

.mobile-label {
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mobile-sub-link {
  padding-left: 10px;
  color: var(--muted);
}

.hero-slider {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #000000;
}

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

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 38%, rgba(0, 0, 0, 0.30) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(0, 0, 0, 0.00) 28%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 46px;
  align-items: center;
  min-height: 72vh;
  padding: 90px 0 86px;
}

.hero-copy {
  max-width: 760px;
}

.hero-eyebrow,
.movie-kicker,
.category-overview-body span,
.category-card span {
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 14px 0;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  max-width: 760px;
  color: #d4d4d4;
  font-size: 18px;
  line-height: 1.8;
}

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

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

.hero-tags span,
.tag-row span,
.rank-tags span,
.detail-meta span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(251, 146, 60, 0.26);
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(234, 88, 12, 0.15);
  font-size: 12px;
}

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

.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, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 14px 38px rgba(234, 88, 12, 0.28);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(30, 64, 175, 0.15));
  box-shadow: var(--shadow);
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

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

.quick-search-panel {
  position: relative;
  z-index: 5;
  margin-top: -40px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: rgba(23, 23, 23, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.big-search,
.search-panel {
  display: flex;
  gap: 12px;
}

.big-search input,
.search-panel input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  outline: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
}

.big-search button,
.search-panel button {
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: var(--accent);
  padding: 0 22px;
  font-weight: 800;
}

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

.quick-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #d4d4d4;
  background: rgba(255, 255, 255, 0.07);
}

.page-section {
  padding: 66px 0;
}

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

.section-line {
  display: inline-block;
  width: 5px;
  height: 28px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
}

.section-heading h2,
.rank-panel-head h2,
.content-card h2 {
  display: inline;
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
}

.section-heading p,
.rank-panel-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-action {
  color: var(--accent-light);
  font-weight: 700;
}

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

.category-card,
.category-overview-card a {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover,
.category-overview-card a:hover,
.movie-card:hover,
.rank-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 146, 60, 0.42);
}

.category-card img,
.category-overview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.category-card::after,
.category-overview-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.14));
}

.category-card div,
.category-overview-body {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  z-index: 2;
}

.category-card h3,
.category-overview-body h2 {
  margin: 8px 0;
  color: #ffffff;
  font-size: 24px;
}

.category-card p,
.category-overview-body p {
  margin: 0;
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.6;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(36, 36, 36, 0.95), rgba(18, 18, 18, 0.95));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

.movie-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.poster-shell {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.18), rgba(30, 64, 175, 0.16));
}

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

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

.quality-badge,
.year-badge {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.quality-badge {
  left: 10px;
  background: rgba(234, 88, 12, 0.86);
}

.year-badge {
  right: 10px;
}

.movie-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 16px;
}

.movie-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

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

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

.is-compact p {
  -webkit-line-clamp: 2;
}

.rank-panel,
.content-card,
.filter-bar,
.search-panel,
.search-result-card {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: rgba(23, 23, 23, 0.82);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

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

.rank-list a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.rank-number {
  grid-row: span 2;
  color: var(--accent-light);
  font-size: 20px;
  font-weight: 900;
}

.rank-title {
  color: #ffffff;
  font-weight: 800;
}

.rank-meta {
  color: var(--muted);
  font-size: 12px;
}

.rank-more {
  width: 100%;
}

.page-top {
  padding-top: 42px;
}

.page-hero,
.detail-hero {
  padding: 48px 0 34px;
}

.compact-hero,
.category-hero {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(234, 88, 12, 0.20), rgba(30, 64, 175, 0.14)),
    rgba(23, 23, 23, 0.72);
  padding: 42px;
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #d4d4d4;
}

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

.filter-bar {
  display: grid;
  grid-template-columns: 1.5fr 220px 220px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 26px;
  padding: 18px;
}

.filter-bar label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-count {
  padding: 14px 16px;
  color: var(--muted);
  white-space: nowrap;
}

.filter-count strong {
  color: var(--accent-light);
}

.no-results {
  margin: 28px 0 0;
  color: var(--muted);
  text-align: center;
}

.pager-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.pager-links a {
  color: var(--accent-light);
  font-weight: 700;
}

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

.category-overview-card a {
  min-height: 280px;
}

.category-covers img:nth-child(2) {
  transform: translateX(32%);
}

.category-covers img:nth-child(3) {
  transform: translateX(64%);
}

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

.rank-card {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.rank-card a {
  display: grid;
  grid-template-columns: 86px 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.rank-large {
  color: var(--accent-light);
  font-size: 30px;
  font-weight: 900;
  text-align: center;
}

.rank-card img {
  width: 96px;
  height: 128px;
  border-radius: 14px;
  object-fit: cover;
}

.rank-card h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
}

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

.search-page {
  max-width: 960px;
}

.search-panel {
  padding: 18px;
}

.search-hint {
  margin: 16px 0;
  color: var(--muted);
}

.search-results {
  display: grid;
  gap: 14px;
}

.search-result-card a {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 14px;
}

.search-result-card img {
  width: 92px;
  height: 124px;
  border-radius: 14px;
  object-fit: cover;
}

.search-result-card h2 {
  margin: 0 0 8px;
  color: #ffffff;
}

.search-result-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

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

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.detail-info h1 {
  font-size: clamp(34px, 4.8vw, 62px);
}

.detail-meta {
  margin-top: 22px;
}

.player-section {
  padding-top: 10px;
  padding-bottom: 34px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: #000000;
  box-shadow: var(--shadow);
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.48);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.play-overlay.is-hidden {
  display: none;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-inline: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 16px 40px rgba(234, 88, 12, 0.35);
  font-size: 30px;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  color: #ffffff;
  font-size: 13px;
  text-shadow: 0 1px 6px #000000;
}

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

.content-card {
  padding: 28px;
}

.prose-card p {
  color: #d4d4d4;
  font-size: 16px;
  line-height: 1.9;
}

.prose-card h2:not(:first-child),
.side-card h2:not(:first-child) {
  margin-top: 28px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
}

.info-list dt {
  color: var(--muted-dark);
}

.info-list dd {
  margin: 0;
  color: #ffffff;
}

.info-list a {
  color: var(--accent-light);
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.34);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 46px 0;
}

.footer-brand {
  font-size: 20px;
  font-weight: 900;
}

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

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
}

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

.site-footer a:hover {
  color: var(--accent-light);
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

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

  .rank-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .hero-content,
  .detail-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    max-width: 320px;
  }

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

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

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

  .rank-card img {
    width: 82px;
    height: 112px;
  }
}

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

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

  .brand-text small {
    display: none;
  }

  .hero-slider,
  .hero-content {
    min-height: 640px;
  }

  .hero-content {
    padding: 82px 0 80px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 34px;
  }

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

  .hero-control {
    display: none;
  }

  .quick-search-panel,
  .compact-hero,
  .category-hero,
  .content-card {
    padding: 18px;
  }

  .big-search,
  .search-panel,
  .pager-links {
    flex-direction: column;
  }

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

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

  .rank-card a,
  .search-result-card a {
    grid-template-columns: 1fr;
  }

  .rank-large {
    text-align: left;
  }

  .rank-card img,
  .search-result-card img {
    width: 120px;
    height: 160px;
  }

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