:root {
  color-scheme: light;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --orange-500: #f97316;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  line-height: 1.6;
  color: var(--slate-800);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 25px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  box-shadow: 0 12px 22px rgba(245, 158, 11, 0.24);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 25px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #fde68a, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  font-style: normal;
  font-size: 12px;
  color: var(--slate-300);
}

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

.desktop-nav a {
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--slate-200);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
  background: rgba(245, 158, 11, 0.92);
  transform: translateY(-1px);
}

.top-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-panel input,
.filter-bar input,
.filter-bar select {
  border: 1px solid rgba(148, 163, 184, 0.38);
  outline: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 10px 12px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search input {
  width: 170px;
}

.top-search input::placeholder,
.mobile-panel input::placeholder {
  color: var(--slate-300);
}

.top-search input:focus,
.mobile-panel input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.top-search button,
.mobile-panel button {
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--amber-500);
  padding: 10px 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.top-search button:hover,
.mobile-panel button:hover {
  background: var(--amber-600);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-panel {
  display: none;
  padding: 0 16px 16px;
  background: rgba(15, 23, 42, 0.98);
}

.mobile-panel a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--slate-200);
}

.mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-panel form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.mobile-panel input {
  flex: 1;
}

.hero-slider {
  position: relative;
  height: 74vh;
  min-height: 540px;
  overflow: hidden;
  background: var(--slate-900);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.54) 45%, rgba(2, 6, 23, 0.15) 100%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  color: var(--white);
}

.hero-kicker,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(245, 158, 11, 0.85);
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1,
.hero-content h2 {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.hero-title-link {
  max-width: 760px;
  margin: 0 0 14px;
  color: #fef3c7;
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 800;
}

.hero-summary {
  display: -webkit-box;
  max-width: 760px;
  margin: 0 0 28px;
  overflow: hidden;
  color: var(--slate-200);
  font-size: 17px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.hero-actions,
.center-more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.primary-button {
  color: var(--white);
  background: var(--amber-500);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.28);
}

.primary-button:hover {
  background: var(--amber-600);
  transform: translateY(-2px) scale(1.02);
}

.secondary-button {
  color: var(--white);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.secondary-button.light {
  color: var(--slate-800);
  background: var(--white);
  border-color: rgba(148, 163, 184, 0.32);
}

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

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(2, 6, 23, 0.54);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.78);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.25s ease, background 0.25s ease;
}

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

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

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

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
  font-weight: 900;
}

.section-heading h2 span {
  display: inline-block;
  width: 6px;
  height: 34px;
  border-radius: 999px;
  background: var(--amber-500);
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--slate-500);
}

.category-strip {
  padding-bottom: 20px;
}

.category-grid,
.overview-grid,
.movie-grid,
.featured-grid,
.rank-grid {
  display: grid;
  gap: 24px;
}

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

.category-card,
.overview-card,
.movie-card,
.rank-item,
.compact-card,
.copy-card {
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border 0.24s ease;
}

.category-card {
  min-height: 150px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
  position: relative;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -42px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.14);
}

.category-card strong,
.overview-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--slate-800);
  font-size: 22px;
  font-weight: 900;
}

.category-card span,
.overview-card em {
  color: var(--slate-500);
  font-style: normal;
}

.category-card:hover,
.overview-card:hover,
.movie-card:hover,
.rank-item:hover,
.compact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.18);
}

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.featured-grid .movie-card,
.movie-card-wide {
  position: relative;
  min-height: 320px;
  color: var(--white);
}

.featured-grid .poster-wrap,
.movie-card-wide .poster-wrap {
  aspect-ratio: 16 / 10;
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--slate-200);
}

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

.movie-card:hover .poster-wrap img,
.compact-card:hover img,
.rank-item:hover img,
.overview-card:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), transparent 56%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade,
.featured-grid .poster-shade,
.movie-card-wide .poster-shade {
  opacity: 1;
}

.poster-year,
.poster-region {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.poster-year {
  right: 12px;
  background: rgba(2, 6, 23, 0.76);
}

.poster-region {
  left: 12px;
  background: var(--amber-500);
}

.movie-info {
  display: block;
  padding: 16px;
}

.movie-info strong {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--slate-800);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-info strong {
  color: var(--amber-600);
}

.movie-info em {
  display: -webkit-box;
  min-height: 44px;
  margin-top: 8px;
  overflow: hidden;
  color: var(--slate-500);
  font-style: normal;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: block;
  margin-top: 10px;
  color: var(--slate-500);
  font-size: 13px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-row span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 8px;
  color: var(--slate-600);
  background: var(--slate-100);
  font-size: 12px;
  font-weight: 700;
}

.featured-grid .movie-info,
.movie-card-wide .movie-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 24px;
}

.featured-grid .movie-info strong,
.movie-card-wide .movie-info strong,
.featured-grid .movie-info em,
.movie-card-wide .movie-info em,
.featured-grid .card-meta,
.movie-card-wide .card-meta {
  color: var(--white);
}

.warm-panel {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.92), rgba(255, 237, 213, 0.78));
}

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

.compact-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 110px;
  padding: 12px;
  border-radius: 18px;
}

.compact-card img {
  width: 150px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.compact-card strong,
.rank-info strong {
  display: block;
  color: var(--slate-800);
  font-weight: 900;
}

.compact-card em,
.rank-info em {
  display: block;
  margin-top: 6px;
  color: var(--slate-500);
  font-style: normal;
  font-size: 14px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 52px 82px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 14px;
  border-radius: 18px;
}

.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  font-weight: 900;
}

.rank-item img {
  width: 82px;
  height: 82px;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.center-more {
  justify-content: center;
  margin-top: 26px;
}

.scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 4px 20px;
  scroll-snap-type: x proximity;
}

.scroll-row .movie-card {
  width: 230px;
  flex: 0 0 230px;
  scroll-snap-align: start;
}

.sub-hero,
.detail-hero {
  color: var(--white);
  background: radial-gradient(circle at 20% 10%, rgba(245, 158, 11, 0.28), transparent 30%), linear-gradient(135deg, var(--slate-900), var(--slate-700));
}

.sub-hero .container {
  padding: 54px 0;
}

.back-link,
.breadcrumb a {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--slate-300);
  transition: color 0.2s ease;
}

.back-link:hover,
.breadcrumb a:hover {
  color: var(--white);
}

.sub-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  font-weight: 900;
}

.sub-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--slate-200);
  font-size: 17px;
}

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

.overview-card {
  display: block;
  min-height: 260px;
  padding: 18px;
  border-radius: 24px;
}

.overview-posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.overview-posters img {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 150px 170px 170px;
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.filter-bar.large {
  grid-template-columns: minmax(260px, 1fr) 150px 190px 190px;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  color: var(--slate-800);
  background: var(--slate-100);
}

.empty-state {
  display: none;
  padding: 64px 16px;
  text-align: center;
  color: var(--slate-500);
  font-size: 20px;
  font-weight: 800;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  color: var(--slate-300);
  font-size: 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 42px;
  align-items: center;
  padding: 28px 0 58px;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 26px 54px rgba(2, 6, 23, 0.42);
}

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.detail-one-line {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--slate-200);
  font-size: 20px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.detail-tags span {
  color: #fef3c7;
  background: rgba(255, 255, 255, 0.12);
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.detail-meta div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.detail-meta dt {
  color: var(--slate-300);
  font-size: 12px;
}

.detail-meta dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 900;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: var(--slate-950);
  box-shadow: 0 24px 64px rgba(2, 6, 23, 0.28);
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--slate-950);
  object-fit: cover;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.18));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-500);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.32);
  font-size: 34px;
  text-indent: 5px;
  transition: transform 0.22s ease, background 0.22s ease;
}

.player-overlay:hover .play-circle {
  transform: scale(1.08);
  background: var(--amber-600);
}

.player-overlay strong {
  font-size: 22px;
}

.detail-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.copy-card {
  padding: 28px;
  border-radius: 24px;
}

.copy-card h2 {
  margin: 0 0 14px;
  color: var(--slate-800);
  font-size: 24px;
  font-weight: 900;
}

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

.site-footer {
  color: var(--slate-300);
  background: var(--slate-900);
}

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

.footer-brand {
  color: var(--amber-400);
  font-size: 24px;
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 18px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 6px 0;
  color: var(--slate-300);
}

.site-footer a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--slate-400);
}

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

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

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

  .category-grid.compact,
  .full-grid,
  .movie-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 820px) {
  .hero-slider {
    height: 72vh;
    min-height: 560px;
  }

  .hero-content {
    bottom: 66px;
  }

  .hero-summary {
    -webkit-line-clamp: 2;
  }

  .hero-arrow {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 10px;
  }

  .category-grid.compact,
  .overview-grid,
  .featured-grid,
  .movie-grid,
  .full-grid,
  .rank-grid,
  .detail-copy {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .detail-meta {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .header-inner {
    min-height: 68px;
  }

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

  .brand-text em {
    display: none;
  }

  .hero-slider {
    height: 78vh;
    min-height: 560px;
  }

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

  .hero-summary {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-button,
  .secondary-button,
  .ghost-button {
    width: 100%;
  }

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

  .category-grid.compact,
  .overview-grid,
  .featured-grid,
  .movie-grid,
  .full-grid,
  .rank-grid,
  .detail-copy {
    grid-template-columns: 1fr;
  }

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

  .compact-card {
    grid-template-columns: 112px 1fr;
  }

  .compact-card img {
    width: 112px;
    height: 78px;
  }

  .rank-item {
    grid-template-columns: 44px 72px 1fr;
    gap: 10px;
  }

  .rank-num {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .rank-item img {
    width: 72px;
    height: 72px;
  }

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

  .play-circle {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }
}
