:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.74);
  --panel-strong: rgba(15, 23, 42, 0.94);
  --line: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --amber: #f59e0b;
  --orange: #ea580c;
  --rose: #f43f5e;
  --blue: #38bdf8;
  --green: #10b981;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --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;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.15), transparent 34rem),
    radial-gradient(circle at 80% 15%, rgba(56, 189, 248, 0.11), transparent 30rem),
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 78%);
  z-index: -1;
}

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

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

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;
  background: rgba(2, 6, 23, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #fff;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.32);
}

.brand-text {
  font-size: 1.24rem;
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a,
.mobile-panel a {
  color: #cbd5e1;
  border-radius: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a {
  padding: 10px 14px;
}

.nav-links a:hover,
.mobile-panel a:hover {
  color: #fbbf24;
  background: rgba(30, 41, 59, 0.78);
}

.top-search {
  width: 280px;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.68);
}

.top-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  padding: 8px 10px 8px 14px;
}

.top-search button,
.filter-bar button,
.primary-btn {
  border: 0;
  color: white;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.26);
}

.top-search button {
  border-radius: 999px;
  padding: 8px 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #e2e8f0;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.96);
}

.mobile-panel.is-open {
  display: grid;
  gap: 6px;
}

.mobile-panel a {
  padding: 12px 14px;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 1.1s ease;
}

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.62);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.74) 44%, rgba(2, 6, 23, 0.22) 100%),
    linear-gradient(0deg, #020617 0%, transparent 42%, rgba(2, 6, 23, 0.55) 100%);
}

.hero-content {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  padding-top: 42px;
}

.hero-copy {
  width: min(680px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: white;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.9;
}

.hero-tags,
.detail-meta,
.tag-cloud,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags {
  margin-top: 28px;
}

.hero-tags span,
.detail-meta span,
.tag-cloud span,
.category-preview span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(251, 191, 36, 0.24);
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.primary-btn,
.ghost-btn,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.ghost-btn,
.section-more {
  border: 1px solid var(--line);
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.62);
}

.ghost-btn:hover,
.section-more:hover {
  border-color: rgba(251, 191, 36, 0.48);
  color: #fbbf24;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: white;
  background: rgba(2, 6, 23, 0.48);
  backdrop-filter: blur(14px);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 18px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 44px;
  background: var(--amber);
}

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

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

.section-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.24);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 4px 0 0;
  color: var(--muted);
}

.rail-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 22px;
  overflow-x: auto;
  padding: 2px 2px 20px;
  scroll-snap-type: x mandatory;
}

.rail-scroll .movie-card {
  scroll-snap-align: start;
}

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

.six-col {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.68);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 22px 70px rgba(245, 158, 11, 0.15);
  transform: translateY(-6px);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0f172a;
}

.poster-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent 55%);
  opacity: 0.64;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.68);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.score-mark,
.rank-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  color: white;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.score-mark {
  right: 12px;
  color: #fbbf24;
}

.rank-badge {
  left: 12px;
  min-width: 34px;
  text-align: center;
  background: linear-gradient(135deg, var(--rose), var(--orange));
}

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

.movie-card h3 {
  margin: 0;
  color: white;
  font-size: 1rem;
  line-height: 1.4;
}

.movie-card h3 a:hover {
  color: #fbbf24;
}

.movie-card p {
  min-height: 44px;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  gap: 8px;
  color: var(--muted-2);
  font-size: 0.78rem;
}

.card-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
}

.glass-panel {
  margin-top: 80px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.74));
  box-shadow: var(--shadow);
}

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

.channel-card,
.category-overview-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.channel-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.channel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transition: transform 0.5s ease;
}

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

.channel-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.2));
}

.channel-card strong,
.channel-card em {
  position: relative;
  z-index: 1;
}

.channel-card strong {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.channel-card em {
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.6;
}

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

.rank-panel {
  position: sticky;
  top: 98px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  padding: 22px;
}

.compact-heading {
  align-items: center;
  margin-bottom: 18px;
}

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

.mini-rank-item {
  display: grid;
  grid-template-columns: 30px 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.42);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mini-rank-item:hover {
  background: rgba(245, 158, 11, 0.1);
  transform: translateX(4px);
}

.mini-rank-item span {
  color: #fbbf24;
  font-weight: 900;
  text-align: center;
}

.mini-rank-item img {
  width: 58px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
}

.mini-rank-item strong,
.mini-rank-item em {
  display: block;
}

.mini-rank-item strong {
  color: white;
  line-height: 1.4;
}

.mini-rank-item em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.page-hero {
  position: relative;
  padding: 92px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 20%, rgba(245, 158, 11, 0.2), transparent 28rem),
    radial-gradient(circle at 80% 35%, rgba(56, 189, 248, 0.12), transparent 28rem);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 1.08rem;
  line-height: 1.9;
}

.small-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
}

.compact-actions {
  margin-top: 24px;
}

.category-overview-card {
  padding: 28px;
}

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

.category-overview-card h2 {
  margin: 48px 0 12px;
  font-size: 1.48rem;
}

.category-overview-card p {
  color: var(--muted);
  line-height: 1.75;
}

.category-orb {
  position: absolute;
  top: -32px;
  right: -32px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.8;
}

.category-orb.amber,
.category-orb.orange {
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.category-orb.rose,
.category-orb.pink {
  background: linear-gradient(135deg, #fb7185, #db2777);
}

.category-orb.blue,
.category-orb.cyan {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.category-orb.violet {
  background: linear-gradient(135deg, #8b5cf6, #c026d3);
}

.category-orb.emerald {
  background: linear-gradient(135deg, #10b981, #14b8a6);
}

.category-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.category-preview span {
  color: #e2e8f0;
  border-color: var(--line);
  background: rgba(148, 163, 184, 0.08);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 170px 170px 120px;
  gap: 12px;
  margin-bottom: 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid var(--line);
  outline: 0;
  border-radius: 16px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.66);
  padding: 12px 14px;
}

.filter-bar button {
  border-radius: 16px;
  font-weight: 800;
}

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

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

.detail-top {
  padding: 30px 0 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: #fbbf24;
}

.breadcrumb strong {
  color: #e2e8f0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(320px, 0.72fr);
  gap: 30px;
  padding-top: 34px;
  align-items: stretch;
}

.watch-column,
.detail-info,
.story-card,
.player-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.watch-column {
  padding: 14px;
}

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

.video-player,
.player-cover,
.player-cover img,
.player-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-player {
  object-fit: contain;
  background: #000;
}

.player-cover {
  z-index: 2;
  display: block;
  border: 0;
  padding: 0;
  color: white;
  background: #000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  object-fit: cover;
  filter: brightness(0.56) saturate(1.08);
}

.player-mask {
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.18), rgba(2, 6, 23, 0.45));
}

.player-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 22px 50px rgba(245, 158, 11, 0.32);
  font-size: 2rem;
  transform: translate(-50%, -50%);
}

.detail-info {
  padding: 30px;
}

.detail-info h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.detail-one-line {
  margin: 20px 0 0;
  color: #cbd5e1;
  font-size: 1.04rem;
  line-height: 1.85;
}

.detail-meta {
  margin-top: 24px;
}

.tag-cloud {
  margin-top: 24px;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
}

.story-card {
  padding: 28px;
}

.story-card h2 {
  margin: 0 0 16px;
  font-size: 1.45rem;
}

.story-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 2;
}

.compact-story {
  grid-column: 1 / -1;
}

.info-table {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px 18px;
}

.info-table span {
  color: var(--muted);
}

.info-table strong {
  color: #e2e8f0;
}

.pager-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.pager-strip a {
  flex: 1;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.72);
}

.pager-strip a:last-child {
  text-align: right;
}

.pager-strip a:hover {
  border-color: rgba(251, 191, 36, 0.42);
  color: #fbbf24;
}

.site-footer {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.98));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 14px;
}

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

.site-footer a:hover {
  color: #fbbf24;
}

.footer-bottom {
  padding: 18px 0 26px;
  color: var(--muted-2);
  text-align: center;
  border-top: 1px solid var(--line);
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .six-col,
  .rank-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .four-col,
  .channel-grid,
  .category-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }
}

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

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

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

  .hero-control {
    display: none;
  }

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

  .six-col,
  .four-col,
  .rank-grid,
  .channel-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .glass-panel {
    padding: 22px;
  }
}

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

  .brand-text {
    font-size: 1.06rem;
  }

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

  .hero-copy {
    padding-top: 26px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-actions,
  .pager-strip {
    flex-direction: column;
    align-items: stretch;
  }

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

  .six-col,
  .four-col,
  .rank-grid,
  .channel-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

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

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

  .movie-card p {
    min-height: 0;
    font-size: 0.84rem;
  }

  .detail-info,
  .story-card {
    padding: 20px;
  }

  .info-table {
    grid-template-columns: 72px 1fr;
  }
}
