:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --orange: #f97316;
  --pink: #ec4899;
  --red: #ef4444;
  --shadow: 0 16px 40px rgba(17, 24, 39, 0.10);
  --shadow-strong: 0 24px 60px rgba(17, 24, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.28);
  font-size: 15px;
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

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

.nav-link {
  color: #374151;
  font-weight: 700;
  transition: color 0.25s ease;
}

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

.site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 310px;
}

.search-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
  background: #ffffff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.search-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.search-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.24);
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-height: 420px;
  overflow: auto;
}

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

.search-result {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.search-result:hover {
  background: #fff7ed;
}

.search-result img {
  width: 48px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: #f3f4f6;
}

.search-result strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.search-result span {
  color: var(--muted);
  font-size: 12px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff7ed;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--orange);
}

.mobile-menu {
  display: none;
  padding: 0 22px 18px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

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

.mobile-search {
  width: 100%;
  margin: 12px 0;
}

.mobile-link {
  display: block;
  padding: 12px 0;
  color: #374151;
  font-weight: 800;
  border-bottom: 1px solid #f3f4f6;
}

.main-wrap {
  min-height: 70vh;
}

.section {
  padding: 70px 22px;
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background: #f9fafb;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c 0%, #ec4899 48%, #ef4444 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.26), transparent 24%), radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.18), transparent 22%), radial-gradient(circle at 50% 88%, rgba(255, 255, 255, 0.12), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 82px 22px 112px;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.hero-slide.is-active {
  display: grid;
}

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

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero-kicker {
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
}

.section-kicker {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.hero h1 span {
  display: block;
  color: #fef3c7;
}

.hero-lead {
  max-width: 660px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}

.hero-tags span {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

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

.button-primary,
.button-ghost,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 16px 30px rgba(236, 72, 153, 0.24);
}

.button-light {
  color: var(--orange);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.12);
}

.button-ghost {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.78);
}

.button-primary:hover,
.button-light:hover,
.button-ghost:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 38px rgba(17, 24, 39, 0.16);
}

.button-ghost:hover {
  color: var(--orange);
  background: #ffffff;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-card {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  overflow: hidden;
  background-image: linear-gradient(to top, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.08) 58%), var(--hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-strong);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
}

.hero-card-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
}

.hero-card-content h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.2;
}

.hero-card-content p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-card-link {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  font-weight: 900;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

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

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

.section-title.centered {
  display: block;
  text-align: center;
}

.section-title h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 950;
}

.section-title p,
.page-hero p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.feature-card {
  padding: 28px 20px;
  border-radius: 26px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 28px;
  background: linear-gradient(135deg, #ffedd5, #fce7f3);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.category-tile {
  min-height: 170px;
  padding: 24px;
  border-radius: 28px;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -38px;
  bottom: -48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.category-tile:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.category-tile h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 24px;
}

.category-tile p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.category-tile span {
  position: relative;
  z-index: 1;
  font-weight: 900;
}

.tone-orange-pink {
  background: linear-gradient(135deg, #fb923c, #ec4899);
}

.tone-purple-blue {
  background: linear-gradient(135deg, #8b5cf6, #2563eb);
}

.tone-pink-red {
  background: linear-gradient(135deg, #f472b6, #ef4444);
}

.tone-red-orange {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.tone-amber-brown {
  background: linear-gradient(135deg, #f59e0b, #92400e);
}

.tone-cyan-blue {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.tone-green-teal {
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.tone-blue-indigo {
  background: linear-gradient(135deg, #38bdf8, #4f46e5);
}

.tone-rose-violet {
  background: linear-gradient(135deg, #fb7185, #7c3aed);
}

.tone-slate-purple {
  background: linear-gradient(135deg, #475569, #7c3aed);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f4f6;
}

.movie-card-wide .poster-link {
  aspect-ratio: 16 / 10;
}

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

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

.year-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.year-badge {
  right: 10px;
  background: rgba(249, 115, 22, 0.94);
}

.rank-badge {
  left: 10px;
  background: rgba(17, 24, 39, 0.80);
}

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

.movie-card h3 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--orange);
}

.movie-meta,
.movie-genre,
.movie-line {
  margin: 0;
}

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

.movie-genre {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-line {
  display: -webkit-box;
  min-height: 44px;
  margin-top: 8px;
  color: #4b5563;
  font-size: 13px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  padding: 76px 22px;
  text-align: center;
}

.page-hero .container {
  max-width: 900px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

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

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.filter-panel input,
.filter-panel select {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  background: #ffffff;
  outline: none;
}

.filter-panel input {
  min-width: 280px;
  flex: 1;
}

.filter-panel button {
  border: 0;
  border-radius: 999px;
  padding: 11px 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  cursor: pointer;
  font-weight: 900;
}

.cta-panel {
  border-radius: 34px;
  padding: 48px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
}

.cta-panel p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 68px 110px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ranking-number {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.ranking-poster {
  width: 110px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  background: #f3f4f6;
}

.ranking-copy h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.ranking-copy p {
  margin: 0;
  color: var(--muted);
}

.ranking-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--orange);
  background: #fff7ed;
  font-weight: 900;
}

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

.player-card,
.detail-card,
.related-panel {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.player-card {
  overflow: hidden;
  margin-bottom: 24px;
  background: #000000;
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.16));
}

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

.play-button-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: #ffffff;
  font-size: 34px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease;
}

.play-overlay:hover .play-button-circle {
  transform: scale(1.08);
}

.detail-card {
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #4b5563;
  background: #f3f4f6;
  font-size: 14px;
  font-weight: 800;
}

.detail-lead {
  color: #4b5563;
  font-size: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 28px;
}

.tag-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  color: #7c2d12;
  background: #ffedd5;
  font-size: 13px;
  font-weight: 800;
}

.content-block {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.content-block h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.content-block p {
  margin: 0 0 18px;
  color: #4b5563;
}

.related-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.related-panel h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.mini-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  transition: background 0.2s ease;
}

.mini-card:hover {
  background: #fff7ed;
}

.mini-card img {
  width: 96px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
  background: #f3f4f6;
  flex: 0 0 auto;
}

.mini-card strong {
  display: block;
  color: var(--text);
  line-height: 1.35;
}

.mini-card em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 22px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.footer-logo .brand-text {
  color: transparent;
}

.footer-brand p {
  max-width: 380px;
  color: #9ca3af;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 18px;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin: 8px 0;
  color: #9ca3af;
}

.footer-column a:hover {
  color: #fb923c;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 22px 30px;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

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

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

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

  .related-panel {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

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

@media (max-width: 640px) {
  .header-inner {
    padding: 12px 16px;
  }

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

  .hero-inner {
    padding: 58px 16px 94px;
  }

  .section {
    padding: 48px 16px;
  }

  .movie-grid,
  .movie-grid.featured,
  .movie-grid.wide,
  .category-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .movie-line {
    display: none;
  }

  .section-title {
    display: block;
  }

  .filter-panel input {
    min-width: 100%;
  }

  .ranking-item {
    grid-template-columns: 48px 86px minmax(0, 1fr);
  }

  .ranking-link {
    grid-column: 2 / 4;
    text-align: center;
  }

  .ranking-poster {
    width: 86px;
    height: 62px;
  }

  .detail-card {
    padding: 20px;
  }

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