:root {
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-500: #78716c;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-card: 0 18px 45px rgba(41, 37, 36, 0.13);
  --shadow-soft: 0 10px 25px rgba(41, 37, 36, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stone-800);
  background: linear-gradient(180deg, var(--stone-50), #ffffff 44%, var(--stone-100));
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(214, 211, 209, 0.7);
  box-shadow: 0 10px 30px rgba(41, 37, 36, 0.06);
  backdrop-filter: blur(16px);
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.25);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-copy em {
  margin-top: 4px;
  color: var(--stone-500);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

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

.nav-link {
  position: relative;
  color: var(--stone-700);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--amber-600);
  transition: width 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.global-search {
  display: flex;
  min-width: 260px;
}

.search-box,
.inline-search {
  display: flex;
  width: 100%;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--stone-300);
  border-radius: 999px;
  background: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.search-box input,
.inline-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 16px;
  background: transparent;
  color: var(--stone-800);
}

.search-box button,
.inline-search button {
  margin-right: 5px;
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  color: white;
  background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--stone-100);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 3px;
  background: var(--stone-700);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--stone-200);
  background: rgba(255, 255, 255, 0.98);
}

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

.mobile-panel nav,
.mobile-cats {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0;
}

.mobile-panel nav,
.mobile-cats {
  display: grid;
  gap: 8px;
}

.mobile-panel a,
.mobile-cats a {
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--stone-700);
  background: var(--stone-50);
  font-weight: 700;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: white;
  background: var(--stone-900);
}

.hero-track {
  position: relative;
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 58px;
  width: 100%;
  padding: 78px max(32px, calc((100vw - 1180px) / 2)) 120px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 0.8s ease;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(28, 25, 23, 0.92), rgba(28, 25, 23, 0.68), rgba(28, 25, 23, 0.38)), var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.92);
}

.hero-slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--stone-50));
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  left: 8%;
  top: 18%;
  width: 36vw;
  height: 36vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.34), transparent 64%);
  filter: blur(10px);
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--amber-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--amber-100);
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 800px;
  margin: 0;
  color: white;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-copy h2 + h2,
.hero-copy h1 + h2 {
  margin-top: 16px;
  color: var(--amber-100);
  font-size: clamp(28px, 4vw, 52px);
}

.hero-copy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.hero-meta {
  margin-top: 22px;
}

.hero-meta span,
.tag-row span,
.tag-cloud span {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.hero-meta span {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 16px 30px rgba(217, 119, 6, 0.28);
}

.btn-secondary {
  color: var(--stone-900);
  background: white;
}

.btn-ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.hero-poster {
  justify-self: center;
  width: min(360px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--stone-800), var(--amber-700));
}

.hero-thumbs {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  width: min(880px, calc(100% - 32px));
  transform: translateX(-50%);
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 8px;
  color: white;
  background: rgba(28, 25, 23, 0.52);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-thumb.is-active,
.hero-thumb:hover {
  border-color: rgba(245, 158, 11, 0.8);
  background: rgba(180, 83, 9, 0.72);
}

.hero-thumb img {
  width: 44px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--stone-800);
}

.hero-thumb span {
  overflow: hidden;
  min-width: 0;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-section {
  padding: 72px 0;
}

.intro-strip {
  padding-top: 40px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
  gap: 32px;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.intro-grid h2,
.section-heading h2,
.sub-hero h1,
.detail-copy h1,
.text-panel h2,
.filter-panel h2 {
  margin: 0;
  color: var(--stone-900);
  letter-spacing: -0.04em;
}

.intro-grid h2,
.section-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.intro-grid p,
.sub-hero p,
.rank-copy p,
.text-panel p,
.category-overview-card p {
  color: var(--stone-500);
  line-height: 1.8;
}

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

.section-more,
.text-link {
  color: var(--amber-700);
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(231, 229, 228, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(41, 37, 36, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--stone-800), var(--amber-700));
}

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

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

.rank-badge,
.heat-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.rank-badge {
  left: 10px;
  top: 10px;
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #ef4444, var(--amber-600));
}

.heat-badge {
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  background: rgba(28, 25, 23, 0.72);
  backdrop-filter: blur(8px);
  font-size: 12px;
}

.card-body {
  padding: 16px;
}

.card-meta {
  color: var(--stone-500);
  font-size: 12px;
  font-weight: 800;
}

.card-meta span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--stone-300);
}

.card-body h2 {
  display: -webkit-box;
  min-height: 48px;
  margin: 10px 0 8px;
  overflow: hidden;
  color: var(--stone-900);
  font-size: 18px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body p {
  display: -webkit-box;
  min-height: 64px;
  margin: 0;
  overflow: hidden;
  color: var(--stone-500);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tag-row,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span,
.tag-cloud span {
  color: var(--amber-700);
  background: var(--amber-50);
}

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

.category-card,
.category-overview-card,
.text-panel,
.filter-panel,
.player-card {
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.category-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span {
  color: var(--amber-700);
  font-size: 22px;
  font-weight: 900;
}

.category-card strong {
  color: var(--stone-700);
  line-height: 1.65;
}

.category-card em {
  overflow: hidden;
  color: var(--stone-500);
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-section {
  color: white;
  background: linear-gradient(135deg, var(--stone-900), var(--stone-800));
}

.rank-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  align-items: center;
}

.rank-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: -0.05em;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.rank-row span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  font-weight: 900;
}

.rank-row strong,
.rank-row em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row strong {
  font-size: 16px;
}

.rank-row em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-style: normal;
}

.sub-hero {
  padding: 82px 0;
  color: white;
  background: radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.32), transparent 28%), linear-gradient(135deg, var(--stone-900), var(--stone-800));
}

.sub-hero h1 {
  max-width: 900px;
  color: white;
  font-size: clamp(38px, 6vw, 68px);
}

.sub-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.category-hero,
.ranking-hero {
  background-image: linear-gradient(135deg, rgba(28, 25, 23, 0.92), rgba(68, 64, 60, 0.74)), var(--hero-image, none);
  background-position: center;
  background-size: cover;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
}

.cat-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  font-weight: 900;
}

.category-overview-card h2 {
  margin: 0;
  font-size: 24px;
}

.category-overview-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.category-overview-card li a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--stone-700);
  font-weight: 700;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
  padding: 22px;
}

.filter-controls {
  display: flex;
  gap: 12px;
  width: min(520px, 100%);
}

.filter-controls input,
.filter-controls select {
  min-height: 46px;
  border: 1px solid var(--stone-300);
  border-radius: 999px;
  padding: 0 16px;
  outline: 0;
  background: white;
}

.filter-controls input {
  flex: 1;
  min-width: 0;
}

.filter-empty {
  margin: 24px 0;
  padding: 22px;
  border-radius: var(--radius-md);
  color: var(--stone-500);
  background: white;
  text-align: center;
  font-weight: 800;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: white;
  background: var(--stone-900);
}

.detail-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(28, 25, 23, 0.96), rgba(28, 25, 23, 0.76), rgba(28, 25, 23, 0.46)), var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: blur(8px) saturate(0.9);
  transform: scale(1.08);
}

.detail-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--stone-800), var(--amber-700));
}

.detail-copy h1 {
  max-width: 880px;
  color: white;
  font-size: clamp(38px, 6vw, 72px);
}

.detail-one-line {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.8;
}

.player-card {
  padding: 18px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: white;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
  cursor: pointer;
}

.play-overlay.is-hidden {
  display: none;
}

.play-symbol {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-500), var(--amber-700));
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.42);
  font-size: 34px;
}

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

.text-panel {
  padding: 28px;
}

.text-panel p {
  font-size: 17px;
}

.site-footer {
  color: var(--stone-300);
  background: linear-gradient(180deg, var(--stone-800), var(--stone-900));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand {
  color: white;
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 18px;
}

.site-footer p {
  max-width: 480px;
  color: var(--stone-300);
  line-height: 1.8;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  color: var(--stone-300);
  font-size: 14px;
}

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

  .menu-button {
    display: block;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 60px;
  }

  .hero-poster {
    display: none;
  }

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

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

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
  }

  .brand-copy em {
    display: none;
  }

  .hero-shell,
  .hero-track {
    min-height: 720px;
  }

  .hero-slide {
    padding-bottom: 168px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-thumbs {
    grid-template-columns: 1fr;
    bottom: 20px;
  }

  .hero-thumb:not(.is-active) {
    display: none;
  }

  .intro-grid,
  .rank-layout,
  .overview-grid,
  .detail-layout,
  .detail-text-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-controls {
    flex-direction: column;
  }

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

  .detail-cover {
    max-width: 260px;
  }
}

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

  .brand-copy strong {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .movie-grid,
  .page-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero,
  .site-section,
  .detail-hero {
    padding: 48px 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}
