@charset "UTF-8";

:root {
  --orange: #f97316;
  --pink: #ec4899;
  --rose: #f43f5e;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  --soft-shadow: 0 14px 35px rgba(15, 23, 42, 0.11);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(110deg, rgba(249, 115, 22, 0.96), rgba(236, 72, 153, 0.96), rgba(244, 63, 94, 0.96));
  color: var(--white);
  box-shadow: 0 10px 35px rgba(236, 72, 153, 0.25);
  backdrop-filter: blur(14px);
}

.header-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--pink);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

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

.desktop-nav a,
.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.nav-link.is-active {
  color: var(--orange);
  background: var(--white);
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: var(--white);
}

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

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-carousel {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(1.12) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(236, 72, 153, 0.42), transparent 34%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.78) 44%, rgba(15, 23, 42, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 690px;
  margin: 0 auto;
  padding: 72px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 420px;
  align-items: center;
  gap: 56px;
}

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

.hero-kicker,
.page-hero span,
.section-heading span,
.detail-title-block > span,
.category-panel-copy span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-tags,
.filter-row,
.detail-poster-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff7ed;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(236, 72, 153, 0.9));
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(236, 72, 153, 0.18);
}

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

.primary-button,
.ghost-button,
.load-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 18px 34px rgba(236, 72, 153, 0.32);
}

.primary-button.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.ghost-button.dark {
  color: var(--slate-900);
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.primary-button:hover,
.ghost-button:hover,
.load-more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.18);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  aspect-ratio: 3 / 4;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.46);
  transform: rotate(2deg);
}

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

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

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

.hero-dot {
  width: 36px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

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

.soft-bg {
  position: relative;
}

.soft-bg::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fff7ed, #fdf2f8, #fff1f2);
}

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

.section-heading span {
  color: var(--rose);
  background: #ffe4e6;
}

.section-heading h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-heading p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--slate-600);
  font-size: 17px;
}

.section-more {
  flex: 0 0 auto;
  color: var(--orange);
  font-weight: 900;
}

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

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

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

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

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

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

.movie-card,
.category-card,
.ranking-board,
.library-tools,
.category-panel,
.detail-poster,
.detail-main,
.player-card,
.story-section,
.detail-info-grid,
.page-hero {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

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

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

.movie-card-link {
  display: block;
  height: 100%;
}

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

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

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

.movie-duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(8px);
}

.movie-duration {
  right: 10px;
  bottom: 10px;
  padding: 5px 9px;
}

.rank-badge {
  left: 10px;
  top: 10px;
  min-width: 34px;
  padding: 5px 9px;
  text-align: center;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

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

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

.movie-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 9px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 3em;
  margin: 0;
  overflow: hidden;
  color: var(--slate-900);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.movie-card p {
  display: -webkit-box;
  min-height: 3.15em;
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  color: var(--white);
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.86));
}

.category-card span {
  display: block;
  margin-top: 92px;
  font-size: 24px;
  font-weight: 900;
}

.category-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.ranking-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-item:hover {
  background: #fff7ed;
  transform: translateX(3px);
}

.ranking-number {
  grid-row: span 2;
  color: var(--slate-400);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.ranking-number.top {
  color: var(--orange);
}

.ranking-title {
  overflow: hidden;
  color: var(--slate-900);
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-meta {
  overflow: hidden;
  color: var(--slate-500);
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.library-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
}

.library-tools h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.library-tools p {
  margin: 8px 0 0;
  color: var(--slate-600);
}

.search-box input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  color: var(--slate-900);
  background: var(--white);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.search-box input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.filter-row {
  grid-column: 1 / -1;
  margin-top: 0;
}

.filter-chip {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--slate-700);
  background: #f1f5f9;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.empty-state {
  display: none;
  margin-top: 20px;
  padding: 28px;
  border-radius: var(--radius-md);
  color: var(--slate-600);
  background: var(--white);
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.empty-state.is-visible {
  display: block;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.load-more-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.load-more-button.is-hidden {
  display: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  margin: 40px auto 0;
  padding: 70px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.page-hero.compact-hero {
  min-height: 310px;
  display: flex;
  align-items: center;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.category-hero {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  color: var(--slate-900);
  background: linear-gradient(135deg, #fff7ed, #fdf2f8, #fff1f2);
}

.category-hero > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.category-hero span {
  color: var(--rose);
  background: #ffe4e6;
}

.category-hero p {
  color: var(--slate-600);
}

.rank-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.42), transparent 34%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.category-panel {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 28px;
  padding: 24px;
}

.category-panel-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.category-panel-copy span {
  color: var(--rose);
  background: #ffe4e6;
}

.category-panel-copy h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
}

.category-panel-copy p {
  margin: 14px 0 22px;
  color: var(--slate-600);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  color: var(--slate-500);
  font-size: 14px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 30px;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  align-items: start;
}

.detail-poster {
  position: sticky;
  top: 96px;
  overflow: hidden;
  padding: 18px;
}

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

.detail-poster-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--rose);
  background: #ffe4e6;
  font-size: 13px;
  font-weight: 900;
}

.detail-main {
  padding: 28px;
}

.detail-title-block > span {
  color: var(--rose);
  background: #ffe4e6;
}

.detail-title-block h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-title-block p {
  margin: 18px 0 0;
  color: var(--slate-600);
  font-size: 18px;
}

.player-card {
  overflow: hidden;
  margin-top: 30px;
  padding: 0;
  background: var(--slate-950);
}

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

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.15), rgba(2, 6, 23, 0.55));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 22px 52px rgba(236, 72, 153, 0.35);
  font-size: 34px;
}

.play-layer span:last-child {
  font-size: 18px;
  font-weight: 900;
}

.story-section {
  margin-top: 24px;
  padding: 24px;
}

.story-section h2 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.story-section p {
  margin: 0;
  color: var(--slate-600);
  font-size: 16px;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
}

.detail-info-grid div {
  padding: 14px;
  border-radius: 14px;
  background: #fff7ed;
}

.detail-info-grid strong,
.detail-info-grid span {
  display: block;
}

.detail-info-grid strong {
  color: var(--rose);
  font-size: 13px;
}

.detail-info-grid span {
  margin-top: 5px;
  color: var(--slate-900);
  font-weight: 900;
}

.prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.prev-next a {
  overflow: hidden;
  padding: 16px;
  border-radius: 14px;
  color: var(--slate-700);
  background: #f8fafc;
  font-weight: 800;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.prev-next a:hover {
  color: var(--rose);
  background: #fff1f2;
}

.site-footer {
  margin-top: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

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

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
}

.footer-grid h2 {
  font-size: 28px;
  background: linear-gradient(90deg, #fb923c, #f472b6);
  background-clip: text;
  color: transparent;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

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

  .mobile-menu-button {
    display: block;
  }

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

  .hero-content,
  .detail-layout,
  .category-hero,
  .category-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .detail-poster {
    position: relative;
    top: auto;
    max-width: 360px;
  }

  .movie-grid,
  .featured-grid,
  .all-library-grid,
  .mini-grid,
  .category-grid,
  .ranking-board,
  .ranking-board.wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .library-tools {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-shell {
    min-height: 64px;
  }

  .site-logo {
    font-size: 20px;
  }

  .hero-carousel,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 48px;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p,
  .page-hero p,
  .detail-title-block p {
    font-size: 16px;
  }

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

  .section-heading,
  .hero-actions,
  .prev-next {
    display: block;
  }

  .section-more,
  .hero-actions a,
  .prev-next a {
    margin-top: 12px;
  }

  .movie-grid,
  .featured-grid,
  .all-library-grid,
  .mini-grid,
  .category-grid,
  .ranking-board,
  .ranking-board.wide,
  .detail-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .page-hero,
  .detail-main {
    padding: 24px;
  }

  .category-hero > img {
    max-width: 280px;
  }

  .story-section {
    padding: 18px;
  }

  .footer-grid {
    padding: 38px 0;
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .featured-grid,
  .all-library-grid,
  .mini-grid,
  .category-grid,
  .ranking-board,
  .ranking-board.wide,
  .detail-info-grid {
    grid-template-columns: 1fr;
  }

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

  .play-icon {
    width: 66px;
    height: 66px;
    font-size: 28px;
  }
}
