:root {
  --bg: #fff7ed;
  --bg-soft: #fff1f2;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(244, 63, 94, 0.18);
  --brand: #e11d48;
  --brand-dark: #be123c;
  --accent: #f59e0b;
  --accent-soft: #fef3c7;
  --shadow: 0 18px 45px rgba(190, 18, 60, 0.15);
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.08);
  --radius: 24px;
  --font: -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;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(251, 113, 133, 0.22), transparent 30rem),
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.2), transparent 28rem),
    linear-gradient(135deg, #f8fafc 0%, #fff1f2 48%, #fffbeb 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.25);
}

.brand-text {
  font-size: 21px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.desktop-nav a,
.mobile-panel a {
  padding: 10px 14px;
  border-radius: 14px;
  color: #4b5563;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: var(--brand);
  background: rgba(255, 241, 242, 0.9);
  transform: translateY(-1px);
}

.nav-search {
  position: relative;
  width: min(260px, 28vw);
}

.nav-search input,
.mobile-search input,
.page-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  padding: 11px 18px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.page-search input:focus {
  border-color: rgba(225, 29, 72, 0.4);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: rgba(255, 241, 242, 0.9);
  color: var(--brand-dark);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 18px;
  border-top: 1px solid rgba(244, 63, 94, 0.12);
}

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

.mobile-links {
  display: grid;
  gap: 6px;
}

main {
  min-height: 60vh;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 670px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  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;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.12);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(136, 19, 55, 0.58) 42%, rgba(255, 247, 237, 0.1) 100%),
    linear-gradient(0deg, rgba(255, 247, 237, 0.98) 0%, rgba(255, 247, 237, 0.1) 28%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 92px 20px 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(290px, 0.58fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  color: #ffffff;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #ffe4e6;
  font-size: 14px;
  font-weight: 700;
}

.hero h1,
.hero h2 {
  margin: 18px 0 18px;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.hero-copy p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.9;
}

.hero-tags,
.detail-tags,
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 13px;
  color: var(--brand-dark);
  background: rgba(255, 241, 242, 0.92);
  border: 1px solid rgba(244, 63, 94, 0.12);
}

.hero .tag {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
}

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

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 18px 36px rgba(225, 29, 72, 0.28);
}

.btn-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-ghost {
  color: var(--brand-dark);
  background: #fff1f2;
}

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

.hero-poster-card {
  position: relative;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(14px);
}

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

.hero-mini {
  position: absolute;
  left: -22px;
  right: 22px;
  bottom: 30px;
  padding: 16px;
  border-radius: 20px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-mini strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.hero-mini span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

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

.hero-dot.is-active {
  width: 54px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.section,
.page-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 20px;
}

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

.section-heading h2,
.section-heading h1,
.content-block h2 {
  margin: 0;
  color: #1f2937;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.03em;
}

.section-heading p,
.page-lead,
.content-block p {
  color: var(--muted);
  line-height: 1.9;
}

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

.channel-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(244, 63, 94, 0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.channel-card::before {
  content: "";
  position: absolute;
  inset: auto -24px -60px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.22), rgba(245, 158, 11, 0.22));
}

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

.channel-card h3 {
  position: relative;
  margin: 0 0 10px;
  font-size: 22px;
}

.channel-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(244, 63, 94, 0.13);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(190, 18, 60, 0.18);
}

.poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.18), rgba(245, 158, 11, 0.18));
}

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

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

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.78) 100%);
  opacity: 0.78;
}

.badge-row {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.badge {
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(8px);
}

.play-badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  transform: translate(-50%, -50%) scale(0.84);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.26);
}

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

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

.movie-card h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
}

.movie-card p {
  margin: 0 0 14px;
  min-height: 50px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9f1239;
  font-size: 13px;
  font-weight: 700;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.ranking-panel {
  position: sticky;
  top: 92px;
  border-radius: 28px;
  padding: 22px;
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.ranking-panel h2,
.ranking-panel h3 {
  margin: 0 0 18px;
  color: #ffffff;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(3px);
}

.rank-no {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

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

.rank-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.page-hero {
  max-width: 1280px;
  margin: 26px auto 0;
  padding: 62px 20px 34px;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(32px, 6vw, 70px);
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 15%, rgba(251, 191, 36, 0.44), transparent 24rem),
    linear-gradient(135deg, #881337, #be123c 48%, #f59e0b 100%);
  box-shadow: var(--shadow);
}

.page-hero-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.page-hero h1 {
  position: relative;
  margin: 14px 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.page-hero p {
  position: relative;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.9;
  font-size: 17px;
}

.toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(244, 63, 94, 0.14);
  box-shadow: var(--shadow-soft);
}

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

.filter-button {
  border: 1px solid rgba(244, 63, 94, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: #9f1239;
  background: #fff7ed;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  transform: translateY(-1px);
}

.no-results {
  display: none;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(244, 63, 94, 0.12);
}

.no-results.is-visible {
  display: block;
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 20px 0;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand-dark);
  font-weight: 700;
}

.detail-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 20px 68px;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.watch-main,
.detail-card,
.content-block {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(244, 63, 94, 0.14);
  box-shadow: var(--shadow-soft);
}

.watch-main {
  overflow: hidden;
}

.watch-title {
  padding: 24px 24px 0;
}

.watch-title h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.watch-title p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.9;
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #020617;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(1.08);
  transform: scale(1.03);
}

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

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 30px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
}

.play-button::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.32);
  animation: pulse 1.6s ease infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.82;
  }

  100% {
    transform: scale(1.16);
    opacity: 0;
  }
}

.detail-card {
  overflow: hidden;
  position: sticky;
  top: 92px;
}

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

.detail-info {
  padding: 20px;
}

.detail-info h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.info-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(244, 63, 94, 0.16);
  color: var(--muted);
}

.info-list strong {
  color: var(--text);
}

.content-grid {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.content-block {
  padding: 26px;
}

.content-block h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

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

.related-card {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(244, 63, 94, 0.12);
  box-shadow: var(--shadow-soft);
}

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

.related-card strong {
  display: block;
  padding: 12px 12px 4px;
  line-height: 1.35;
}

.related-card span {
  display: block;
  padding: 0 12px 12px;
  color: var(--muted);
  font-size: 13px;
}

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

.ranking-page-item {
  display: grid;
  grid-template-columns: 70px 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(244, 63, 94, 0.14);
  box-shadow: var(--shadow-soft);
}

.ranking-page-item img {
  width: 110px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  object-fit: cover;
}

.ranking-page-item h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.ranking-page-item p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.82);
  background: #111827;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 20px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-inner h2,
.footer-inner h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.footer-inner p {
  margin: 0;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #fb7185;
}

[hidden] {
  display: none !important;
}

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

  .feature-layout,
  .watch-layout {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .detail-card {
    position: static;
  }
}

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 76px;
    gap: 28px;
  }

  .hero-poster-card {
    max-width: 320px;
  }

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

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

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

  .ranking-page-item {
    grid-template-columns: 46px 84px minmax(0, 1fr);
    gap: 12px;
  }

  .ranking-page-item img {
    width: 84px;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    padding: 12px 14px;
  }

  .brand-text {
    font-size: 18px;
  }

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

  .hero-inner,
  .section,
  .page-section,
  .detail-shell,
  .breadcrumb,
  .page-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

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

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

  .hero-mini {
    left: 10px;
    right: 10px;
  }

  .movie-grid,
  .related-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .movie-card p {
    min-height: auto;
  }

  .watch-title {
    padding: 20px 18px 0;
  }

  .content-block {
    padding: 20px;
  }

  .ranking-page-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .ranking-page-item img {
    display: none;
  }
}
