:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-solid: #0f172a;
  --panel-soft: rgba(30, 41, 59, 0.68);
  --border: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --accent: #fbbf24;
  --accent-strong: #f59e0b;
  --danger: #f97316;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.14), transparent 34rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #111827;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(251, 191, 36, 0.24);
}

.brand-text,
.footer-brand {
  font-size: 20px;
  background: linear-gradient(135deg, #fcd34d, #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: var(--muted);
  font-weight: 700;
}

.desktop-nav a,
.mobile-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--accent);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 290px;
  background: rgba(51, 65, 85, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.header-search input,
.mobile-nav input,
.page-search-form input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
}

.header-search input {
  padding: 10px 14px 10px 18px;
}

.header-search button,
.page-search-form button,
.filter-panel button,
.mobile-nav button {
  color: #111827;
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-search button {
  padding: 8px 14px;
  margin-right: 4px;
}

.header-search button:hover,
.page-search-form button:hover,
.filter-panel button:hover,
.mobile-nav button:hover {
  background: #fde68a;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  color: #fff;
  background: rgba(51, 65, 85, 0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 12px;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  color: var(--muted);
}

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

.mobile-nav form {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: rgba(51, 65, 85, 0.68);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.mobile-nav input {
  padding: 8px;
}

.mobile-nav button {
  padding: 8px 14px;
}

.hero-carousel {
  position: relative;
  height: 70vh;
  min-height: 540px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(251, 191, 36, 0.18), transparent 20rem),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0.28)),
    linear-gradient(0deg, #020617 0%, transparent 48%);
}

.hero-content {
  position: absolute;
  inset: 0;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: end;
  padding: 88px 0 68px;
}

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

.hero-eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 13px;
  color: #111827;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.hero-summary {
  max-width: 760px;
  margin: 0 0 24px;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-meta span,
.detail-meta span {
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid var(--border);
  border-radius: 999px;
}

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

.primary-button,
.ghost-button,
.intro-actions a,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-button,
.intro-actions a:first-child {
  color: #111827;
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.25);
}

.ghost-button,
.intro-actions a:last-child,
.section-link {
  color: #fff;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(251, 191, 36, 0.32);
}

.primary-button:hover,
.ghost-button:hover,
.intro-actions a:hover,
.section-link:hover {
  transform: translateY(-2px);
}

.hero-poster {
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.26);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

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

.hero-poster span {
  display: block;
  padding: 14px 18px;
  color: var(--accent);
  font-weight: 900;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-control:hover {
  color: #111827;
  background: var(--accent);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: rgba(226, 232, 240, 0.45);
  border: 0;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.content-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  margin-top: -32px;
  position: relative;
  z-index: 8;
}

.intro-card,
.quick-search-card,
.side-panel,
.detail-info-card,
.side-info-card,
.category-overview-card a,
.player-card,
.search-status {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.intro-card,
.quick-search-card,
.side-panel,
.detail-info-card,
.side-info-card,
.search-status {
  padding: 30px;
}

.intro-card h1,
.page-hero h1,
.detail-info-card h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.intro-card p,
.page-hero p,
.quick-search-card p,
.section-heading p,
.detail-info-card p,
.category-overview-card p,
.search-status {
  color: var(--muted);
  line-height: 1.85;
}

.quick-search-card h2,
.side-panel h2,
.side-info-card h2,
.detail-info-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.quick-search-card form,
.page-search-form {
  display: flex;
  gap: 12px;
  padding: 8px;
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.quick-search-card input,
.page-search-form input {
  padding: 10px 14px;
}

.quick-search-card button,
.page-search-form button {
  padding: 10px 20px;
  border: 0;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-tags a,
.tag {
  display: inline-flex;
  color: var(--accent);
  background: rgba(251, 191, 36, 0.11);
  border: 1px solid rgba(251, 191, 36, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 800;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

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

.featured-grid,
.latest-grid,
.category-movie-grid,
.related-grid,
.search-results {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.movie-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--border);
  border-radius: 22px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.44);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

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

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

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

.score-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  background: var(--accent);
  border-radius: 999px;
  font-weight: 900;
}

.score-badge {
  right: 10px;
  top: 10px;
  min-width: 44px;
  min-height: 28px;
  padding: 0 9px;
}

.rank-badge {
  left: 10px;
  top: 10px;
  width: 32px;
  height: 32px;
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: var(--accent);
}

.card-meta {
  margin: 0 0 10px;
  color: var(--soft);
  font-size: 13px;
}

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

.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 28px;
  align-items: start;
}

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

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: stretch;
}

.movie-card-horizontal .poster-link img {
  height: 100%;
  aspect-ratio: auto;
}

.movie-card-horizontal .card-body {
  align-self: center;
}

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

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

.category-tile,
.category-overview-card a {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover,
.category-overview-card a:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.44);
}

.category-tile span,
.category-overview-card h2 {
  color: #fff;
  font-weight: 900;
}

.category-tile small,
.category-overview-card p {
  color: var(--soft);
  line-height: 1.65;
}

.page-hero {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  margin: 36px auto 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 10%, rgba(251, 191, 36, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.78));
  box-shadow: var(--shadow);
}

.page-hero > div {
  max-width: 860px;
  padding: 58px;
}

.small-hero {
  margin-top: 46px;
}

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

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

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

.category-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #111827;
  background: var(--accent);
  border-radius: 16px;
  font-weight: 900;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 170px 170px 170px auto;
  gap: 12px;
  margin-bottom: 28px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.filter-panel input,
.filter-panel select {
  min-height: 44px;
  padding: 0 14px;
  background: rgba(30, 41, 59, 0.86);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.filter-panel select {
  color: var(--muted);
}

.filter-panel button {
  min-height: 44px;
  padding: 0 18px;
}

.empty-state {
  margin: 30px 0 0;
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--border);
  border-radius: 20px;
}

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

.top-rank-item {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

.top-rank-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 0.3s ease;
}

.top-rank-item:hover img {
  transform: scale(1.06);
}

.top-rank-item span,
.top-rank-item strong,
.top-rank-item em {
  position: absolute;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.top-rank-item span {
  top: 16px;
  color: #111827;
  background: var(--accent);
  border-radius: 999px;
  width: fit-content;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 900;
}

.top-rank-item strong {
  bottom: 46px;
  font-size: 18px;
}

.top-rank-item em {
  bottom: 18px;
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.full-ranking .movie-card-horizontal {
  grid-template-columns: 98px minmax(0, 1fr);
}

.detail-backdrop {
  height: 48vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
}

.detail-backdrop-shade {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.72) 58%, rgba(2, 6, 23, 0.44) 100%),
    radial-gradient(circle at 70% 20%, rgba(251, 191, 36, 0.18), transparent 24rem);
}

.detail-shell {
  width: min(1240px, calc(100% - 32px));
  margin: -220px auto 0;
  position: relative;
  z-index: 2;
}

.detail-breadcrumb {
  margin-bottom: 20px;
  padding: 12px 16px;
  width: fit-content;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.6fr);
  gap: 28px;
  align-items: start;
}

.player-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 26px;
  background: #000;
}

.movie-player {
  width: 100%;
  height: 100%;
  background: #000;
  display: block;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 0;
  color: #fff;
  background: rgba(2, 6, 23, 0.4);
  border: 0;
  overflow: hidden;
}

.player-overlay img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) saturate(1.05);
}

.player-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.16), rgba(2, 6, 23, 0.72));
}

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

.play-circle {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: #111827;
  background: var(--accent);
  border-radius: 50%;
  font-size: 34px;
  box-shadow: 0 18px 45px rgba(251, 191, 36, 0.28);
}

.player-overlay strong {
  font-size: 22px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.detail-info-card h2 {
  margin-top: 28px;
}

.detail-info-card p {
  margin: 0;
  font-size: 16px;
}

.detail-poster {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.side-info-card {
  margin-top: 20px;
}

.side-info-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.side-info-card dt {
  color: var(--soft);
  font-size: 13px;
}

.side-info-card dd {
  margin: -8px 0 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.55;
}

.related-section {
  padding-top: 38px;
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.86);
}

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 42px 0;
}

.footer-inner p {
  max-width: 680px;
  color: var(--soft);
  line-height: 1.8;
}

.footer-inner nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  gap: 12px 24px;
  color: var(--muted);
}

.footer-inner nav a:hover {
  color: var(--accent);
}

.copyright {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--soft);
}

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

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-content,
  .intro-panel,
  .split-section,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

  .movie-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

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

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

@media (max-width: 720px) {
  .header-inner {
    height: 62px;
  }

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

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

  .hero-content {
    padding: 72px 0 64px;
  }

  .hero-control {
    display: none;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 38px;
  }

  .content-section {
    padding: 40px 0;
  }

  .intro-card,
  .quick-search-card,
  .side-panel,
  .detail-info-card,
  .side-info-card,
  .page-hero > div {
    padding: 24px;
  }

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

  .movie-grid {
    gap: 16px;
  }

  .movie-card-horizontal,
  .full-ranking .movie-card-horizontal {
    grid-template-columns: 88px minmax(0, 1fr);
  }

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

  .top-rank-strip {
    grid-template-columns: 1fr;
  }

  .detail-shell {
    margin-top: -180px;
  }

  .detail-poster {
    display: none;
  }

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