:root {
  color-scheme: light;
  --bg: #fff7ed;
  --bg-soft: #fffbeb;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-solid: #ffffff;
  --text: #78350f;
  --muted: #b45309;
  --accent: #f59e0b;
  --accent-strong: #d97706;
  --accent-soft: #fef3c7;
  --line: rgba(245, 158, 11, 0.22);
  --shadow: 0 20px 45px rgba(146, 64, 14, 0.12);
  --shadow-strong: 0 28px 70px rgba(120, 53, 15, 0.24);
  --radius: 28px;
}

* {
  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.28), transparent 30rem),
    linear-gradient(180deg, #fffbeb 0%, #fff7ed 42%, #fef3c7 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #78350f;
  background: #fde68a;
}

::-webkit-scrollbar {
  width: 0.55rem;
  height: 0.55rem;
}

::-webkit-scrollbar-track {
  background: #fffbeb;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #fbbf24;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 235, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1280px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #d97706, #ea580c);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.28);
}

.brand-name {
  font-size: 1.45rem;
  background: linear-gradient(90deg, #d97706, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  font-weight: 700;
  color: #92400e;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #d97706;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.mobile-search input,
.filter-row input,
.filter-row select {
  width: 240px;
  color: #78350f;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  outline: none;
  padding: 12px 16px;
  box-shadow: 0 10px 24px rgba(146, 64, 14, 0.06);
  transition: 0.22s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.filter-row input:focus,
.filter-row select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.24);
}

.nav-search button,
.mobile-search button {
  color: #ffffff;
  background: #d97706;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #92400e;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 18px 20px 24px;
  background: rgba(255, 251, 235, 0.96);
  border-top: 1px solid var(--line);
}

.mobile-nav-link {
  display: block;
  margin-top: 12px;
  padding: 12px 14px;
  color: #92400e;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 800;
}

.hero {
  position: relative;
  margin-top: -1px;
}

.hero-stage {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #1c1006;
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s linear;
}

.hero-slide.active img {
  transform: scale(1.12);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.44) 45%, rgba(0, 0, 0, 0.14)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 58%);
}

.hero-content {
  position: absolute;
  bottom: 88px;
  left: max(32px, calc((100vw - 1280px) / 2));
  width: min(760px, calc(100% - 64px));
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #d97706, #ea580c);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(217, 119, 6, 0.35);
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p,
.detail-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.8;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.28);
}

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

.hero-tags {
  margin: 20px 0 0;
}

.hero-tags span,
.tag-row span,
.keyword-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.hero-actions,
.detail-copy .primary-btn {
  margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #d97706, #ea580c);
  padding: 14px 24px;
  box-shadow: 0 18px 36px rgba(217, 119, 6, 0.26);
}

.ghost-btn {
  margin-left: 10px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px 22px;
  backdrop-filter: blur(10px);
}

.ghost-btn.warm {
  margin-left: 0;
  color: #92400e;
  background: #fff7ed;
  border-color: var(--line);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 2rem;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

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

.hero-dot.active {
  width: 58px;
  background: #f59e0b;
}

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

.home-shell,
.inner-page {
  padding: 56px 0 80px;
}

.home-shell > section,
.inner-page > section {
  margin-top: 56px;
}

.home-shell > section:first-child,
.inner-page > section:first-child,
.inner-page > nav + section {
  margin-top: 0;
}

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

.section-head h2 {
  margin: 0;
  color: #78350f;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 8px 0 0;
  color: #b45309;
  line-height: 1.7;
}

.section-head a,
.text-link {
  color: #d97706;
  background: #fff7ed;
  border: 1px solid var(--line);
  padding: 10px 16px;
}

.category-grid,
.category-list-grid,
.movie-grid,
.rank-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

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

.category-tile,
.category-card,
.movie-card,
.rank-item,
.article-panel,
.filter-panel,
.page-hero,
.detail-hero,
.player-section,
.detail-nav {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.category-tile {
  min-height: 180px;
  padding: 20px;
  overflow: hidden;
}

.category-tile span,
.category-body h2,
.movie-info h2,
.rank-copy h2 {
  display: block;
  color: #78350f;
  font-weight: 900;
}

.category-tile span {
  font-size: 1.1rem;
}

.category-tile p,
.category-body p,
.movie-info p,
.rank-copy p,
.article-panel p {
  color: #b45309;
  line-height: 1.72;
}

.tile-thumbs,
.category-cover-row {
  display: flex;
  margin-top: 18px;
}

.tile-thumbs img,
.category-cover-row img {
  width: 46px;
  height: 66px;
  object-fit: cover;
  border: 3px solid #fff7ed;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(146, 64, 14, 0.15);
}

.tile-thumbs img + img,
.category-cover-row img + img {
  margin-left: -14px;
}

.movie-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover,
.category-tile:hover,
.category-card:hover,
.rank-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fde68a, #fed7aa);
}

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

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

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.62);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.movie-info {
  padding: 18px;
}

.movie-info h2,
.rank-copy h2 {
  margin: 12px 0 10px;
  font-size: 1.1rem;
  line-height: 1.32;
}

.movie-info p,
.rank-copy p {
  margin: 0;
  font-size: 0.94rem;
}

.movie-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: #d97706;
  font-size: 0.86rem;
  font-weight: 800;
}

.movie-meta a {
  color: #92400e;
}

.movie-card.large {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1fr;
}

.movie-card.large .movie-poster {
  aspect-ratio: auto;
  min-height: 280px;
}

.movie-card.horizontal {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 210px;
}

.movie-card.horizontal .movie-poster {
  aspect-ratio: auto;
}

.horizontal-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}

.scroll-item {
  width: 310px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.warm-panel,
.strong-panel {
  margin-right: calc((100vw - min(1280px, calc(100vw - 32px))) / -2);
  margin-left: calc((100vw - min(1280px, calc(100vw - 32px))) / -2);
  padding: 48px max(16px, calc((100vw - 1280px) / 2));
  border-radius: 34px;
}

.warm-panel {
  background: linear-gradient(135deg, #fef3c7, #ffedd5);
}

.strong-panel {
  background: linear-gradient(135deg, #fde68a, #fed7aa);
}

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

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

.rank-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.rank-cover {
  display: block;
  width: 88px;
  height: 116px;
  overflow: hidden;
  border-radius: 18px;
  background: #fde68a;
}

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

.rank-number {
  color: #d97706;
  font-size: 1.5rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

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

.masonry-grid {
  columns: 4 260px;
  column-gap: 20px;
}

.masonry-grid .movie-card {
  margin: 0 0 20px;
  break-inside: avoid;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 64px);
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.24), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 237, 0.82));
}

.page-hero.compact-hero,
.category-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.page-hero h1,
.detail-copy h1 {
  color: #78350f;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
}

.page-hero p,
.detail-copy p {
  color: #b45309;
  text-shadow: none;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  color: #b45309;
  font-weight: 700;
}

.breadcrumb strong {
  color: #78350f;
}

.category-card {
  overflow: hidden;
}

.category-cover-row {
  min-height: 130px;
  align-items: center;
  padding: 26px;
  margin: 0;
  background: linear-gradient(135deg, #fde68a, #fed7aa);
}

.category-cover-row img {
  width: 76px;
  height: 108px;
}

.category-body {
  padding: 24px;
}

.category-body h2 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.category-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.category-examples a {
  color: #92400e;
  background: #fff7ed;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.84rem;
  font-weight: 800;
}

.filter-panel {
  padding: 20px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-row input {
  width: min(480px, 100%);
}

.filter-row select {
  width: 180px;
}

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

.detail-hero {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
}

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

.detail-tags {
  margin-bottom: 14px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.detail-meta span {
  color: #92400e;
  background: #fff7ed;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 800;
}

.player-section {
  padding: 18px;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0c0702;
  border-radius: 22px;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(217, 119, 6, 0.24), rgba(0, 0, 0, 0.68)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 55%);
  transition: opacity 0.24s ease;
}

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

.player-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #d97706, #ea580c);
  border: 0;
  border-radius: 999px;
  padding: 18px 28px;
  font-weight: 950;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.player-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #d97706;
  background: #ffffff;
  border-radius: 999px;
}

.player-loader,
.player-error {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: none;
  color: #fff7ed;
  background: rgba(0, 0, 0, 0.68);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.86rem;
  font-weight: 800;
}

.player-box.is-loading .player-loader,
.player-box.has-error .player-error {
  display: block;
}

.article-panel {
  padding: clamp(24px, 4vw, 44px);
}

.article-panel h2 {
  margin: 0 0 14px;
  color: #78350f;
  font-size: 1.55rem;
}

.article-panel h2 + p {
  margin-bottom: 28px;
}

.keyword-row {
  margin-top: 12px;
}

.detail-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
}

.detail-nav a {
  display: block;
  flex: 1;
  color: #92400e;
  background: #fff7ed;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 850;
}

.site-footer {
  margin-top: 40px;
  color: #92400e;
  background: rgba(255, 251, 235, 0.8);
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 46px 0;
}

.footer-brand {
  margin-bottom: 14px;
  color: #d97706;
  font-size: 1.35rem;
}

.footer-grid p,
.footer-grid h2 {
  margin: 0;
}

.footer-grid p {
  max-width: 460px;
  line-height: 1.7;
}

.footer-grid h2 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

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

.footer-links a {
  width: fit-content;
  color: #b45309;
  font-weight: 700;
}

.compact-links {
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 16px;
}

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

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

  .nav-search {
    display: none;
  }
}

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

  .menu-toggle {
    display: flex;
  }

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

  .mobile-search input {
    width: 100%;
  }

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

  .hero-content {
    bottom: 92px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .hero-arrow {
    top: auto;
    bottom: 28px;
    transform: none;
  }

  .hero-arrow.prev {
    left: 20px;
  }

  .hero-arrow.next {
    left: 82px;
    right: auto;
  }

  .hero-dots {
    right: 20px;
    bottom: 48px;
  }

  .category-grid,
  .category-list-grid,
  .movie-grid.four-col,
  .movie-grid.three-col,
  .movie-grid.two-col,
  .rank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero.compact-hero,
  .category-hero,
  .detail-nav {
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

@media (max-width: 560px) {
  .nav-wrap,
  .page-shell,
  .footer-grid {
    width: min(100% - 22px, 1280px);
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .hero-stage {
    min-height: 610px;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-copy h1 {
    letter-spacing: -0.04em;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .ghost-btn {
    margin-left: 0;
  }

  .category-grid,
  .category-list-grid,
  .movie-grid.four-col,
  .movie-grid.three-col,
  .movie-grid.two-col,
  .rank-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.large,
  .movie-card.horizontal,
  .rank-item {
    grid-template-columns: 1fr;
  }

  .rank-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .rank-number {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #ffffff;
    background: rgba(217, 119, 6, 0.86);
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 1rem;
  }

  .filter-row input,
  .filter-row select {
    width: 100%;
  }

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

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