:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-50: #fdf2f8;
  --pink-400: #f472b6;
  --amber-400: #fbbf24;
  --slate-900: #111827;
  --slate-700: #374151;
  --slate-600: #4b5563;
  --slate-500: #6b7280;
  --line: rgba(244, 63, 94, 0.16);
  --shadow-soft: 0 18px 50px rgba(244, 63, 94, 0.14);
  --shadow-card: 0 12px 34px rgba(17, 24, 39, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: linear-gradient(135deg, var(--rose-50) 0%, #ffffff 42%, var(--pink-50) 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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: 60;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.08);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  width: min(100%, var(--container));
  min-height: 74px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-400));
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.28);
}

.brand-text {
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1 1 auto;
  white-space: nowrap;
}

.main-nav a {
  color: var(--slate-700);
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--rose-500);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-controls input,
.search-page-form input {
  width: 248px;
  border: 1px solid var(--rose-200);
  outline: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-controls input:focus,
.search-page-form input:focus {
  border-color: var(--rose-400);
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.16);
}

.header-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-400));
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.22);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 13px;
  background: var(--rose-50);
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  padding: 16px 22px 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-panel a {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--slate-700);
  background: rgba(255, 241, 242, 0.7);
}

.hero-carousel {
  width: min(100% - 28px, var(--container));
  margin: 28px auto 26px;
  position: relative;
  min-height: 560px;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.18);
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 38px;
  align-items: center;
  padding: 72px;
  color: #ffffff;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.56), rgba(244, 63, 94, 0.22)), var(--hero-image);
  background-position: center;
  background-size: cover;
  transition: opacity 0.55s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(244, 114, 182, 0.42), transparent 32%), linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.62));
}

.hero-content,
.hero-cover {
  position: relative;
  z-index: 1;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  color: var(--rose-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: var(--rose-50);
}

.eyebrow.light,
.hero-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

.hero-content h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

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

.hero-tags,
.detail-tags,
.tag-row,
.genre-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span,
.detail-tags span,
.genre-row span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

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

.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-400));
  box-shadow: 0 16px 34px rgba(244, 63, 94, 0.32);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(12px);
}

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

.hero-cover {
  justify-self: end;
  width: min(360px, 100%);
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

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

.hero-dots {
  position: absolute;
  left: 72px;
  bottom: 34px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

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

.hero-dot.is-active {
  width: 48px;
  background: #ffffff;
}

.stats-strip {
  width: min(100% - 28px, var(--container));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats-strip div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.stats-strip strong {
  display: block;
  color: var(--rose-500);
  font-size: 34px;
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--slate-600);
}

.content-section,
.detail-wrap {
  width: min(100% - 28px, var(--container));
  margin: 0 auto 64px;
}

.tinted-section {
  width: 100%;
  padding: 54px max(14px, calc((100% - var(--container)) / 2));
  background: linear-gradient(90deg, rgba(255, 241, 242, 0.82), rgba(253, 242, 248, 0.9));
}

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

.section-head h2,
.filter-panel h2,
.story-card h2,
.watch-side h2 {
  margin: 0;
  color: var(--slate-900);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.16;
}

.section-head p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--slate-600);
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-500);
  font-weight: 800;
}

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

.channel-card,
.category-overview-card,
.search-hero-panel,
.filter-panel,
.story-card,
.watch-side {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.channel-card,
.category-overview-card {
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.channel-card:hover,
.category-overview-card:hover,
.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 63, 94, 0.38);
  box-shadow: var(--shadow-soft);
}

.channel-card span,
.category-title {
  display: block;
  color: var(--rose-500);
  font-weight: 900;
  font-size: 20px;
}

.channel-card strong,
.category-overview-card strong {
  display: block;
  margin: 8px 0;
  color: var(--slate-900);
  font-size: 28px;
}

.channel-card p,
.category-overview-card p {
  margin: 0;
  color: var(--slate-600);
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card.is-hidden {
  display: none;
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), var(--pink-50));
}

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

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

.poster-shade {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.72));
}

.duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 800;
}

.duration {
  right: 12px;
  bottom: 12px;
  padding: 5px 10px;
  background: rgba(17, 24, 39, 0.72);
}

.rank-badge {
  left: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber-400), var(--rose-500));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.movie-info {
  padding: 18px;
}

.movie-meta-line,
.card-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--slate-500);
  font-size: 13px;
}

.movie-meta-line a {
  color: var(--rose-500);
  font-weight: 800;
}

.movie-info h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.28;
}

.movie-info h3 a:hover {
  color: var(--rose-500);
}

.movie-info p {
  margin: 0 0 14px;
  color: var(--slate-600);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row span,
.tag-cloud a,
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--rose-600);
  background: var(--rose-50);
  font-size: 13px;
  font-weight: 700;
}

.card-stats {
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(244, 63, 94, 0.12);
}

.page-banner {
  margin-bottom: 48px;
  padding: 72px 14px;
  color: #ffffff;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.28), transparent 26%), linear-gradient(135deg, var(--rose-500), var(--pink-400));
}

.page-banner-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.page-banner h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.08;
}

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

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

.mini-links {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.mini-links a {
  color: var(--slate-600);
}

.mini-links a:hover {
  color: var(--rose-500);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a span {
  color: var(--slate-500);
}

.tag-cloud.small {
  margin-top: 14px;
}

.filter-panel {
  margin-bottom: 24px;
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-controls input {
  width: min(420px, 100%);
}

.filter-chip {
  border: 1px solid rgba(244, 63, 94, 0.2);
  cursor: pointer;
}

.filter-chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-400));
}

.rank-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.rank-row {
  display: grid;
  grid-template-columns: 58px 72px 1fr 130px 140px 70px;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
}

.rank-row:last-child {
  border-bottom: 0;
}

.rank-row:hover {
  background: var(--rose-50);
}

.rank-number {
  color: var(--rose-500);
  font-size: 24px;
  font-weight: 900;
}

.rank-row img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-title {
  font-weight: 900;
}

.rank-title small {
  display: block;
  color: var(--slate-500);
  font-weight: 500;
}

.search-hero-panel {
  margin-bottom: 24px;
  padding: 24px;
}

.search-page-form {
  display: flex;
  gap: 12px;
}

.search-page-form input {
  width: 100%;
}

.search-count {
  margin: 14px 0 0;
  color: var(--slate-600);
}

.detail-hero {
  position: relative;
  margin-bottom: 42px;
  color: #ffffff;
  overflow: hidden;
  background: #111827;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.72), rgba(244, 63, 94, 0.44)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(3px) saturate(1.1);
  transform: scale(1.04);
}

.detail-hero .detail-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding: 34px 0 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
}

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

.detail-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: center;
}

.detail-cover {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

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

.detail-info-panel h1 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.05;
}

.lead {
  max-width: 860px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.watch-section {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #111827;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.18);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #ffffff;
  border: 0;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.28), rgba(17, 24, 39, 0.62));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.play-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-400));
  box-shadow: 0 20px 48px rgba(244, 63, 94, 0.35);
}

.play-icon::before {
  content: "";
  display: block;
  margin-left: 5px;
  border-left: 22px solid #ffffff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

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

.watch-side {
  padding: 22px;
}

.watch-side dl {
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.watch-side dl div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(244, 63, 94, 0.12);
}

.watch-side dt {
  color: var(--slate-500);
}

.watch-side dd {
  margin: 0;
  color: var(--slate-900);
  font-weight: 700;
}

.detail-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.story-card {
  padding: 26px;
}

.story-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.story-card p {
  margin: 0;
  color: var(--slate-700);
  font-size: 17px;
}

.site-footer {
  margin-top: 76px;
  padding: 50px 14px 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 241, 242, 0.94), rgba(255, 255, 255, 0.96));
}

.footer-grid,
.footer-bottom {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  color: var(--slate-600);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--slate-900);
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: var(--slate-600);
}

.site-footer a:hover {
  color: var(--rose-500);
}

.footer-links {
  columns: 2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 20px;
  color: var(--slate-500);
  border-top: 1px solid rgba(244, 63, 94, 0.14);
}

@media (max-width: 1080px) {
  .main-nav,
  .header-search {
    display: none;
  }

  .site-header-inner {
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 52px;
  }

  .hero-cover {
    display: none;
  }

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

  .watch-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero-carousel,
  .hero-stage {
    min-height: 560px;
  }

  .hero-slide {
    padding: 38px 24px 70px;
  }

  .hero-dots {
    left: 28px;
    bottom: 24px;
  }

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

  .movie-grid,
  .featured-grid,
  .ranking-grid,
  .channel-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .filter-panel,
  .footer-bottom,
  .search-page-form {
    display: grid;
    align-items: stretch;
  }

  .filter-controls {
    justify-content: flex-start;
  }

  .rank-row {
    grid-template-columns: 44px 62px 1fr;
  }

  .rank-row > span:nth-last-child(-n + 3),
  .rank-row strong {
    display: none;
  }

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

  .detail-cover {
    width: 220px;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 19px;
  }

  .mobile-search {
    display: grid;
  }

  .mobile-search input {
    width: 100%;
  }

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

  .hero-content h1,
  .detail-info-panel h1,
  .page-banner h1 {
    font-size: 38px;
  }

  .stats-strip,
  .movie-grid,
  .featured-grid,
  .ranking-grid,
  .channel-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-banner {
    padding: 54px 14px;
  }

  .movie-poster {
    aspect-ratio: 16 / 9;
  }

  .watch-side dl div {
    grid-template-columns: 1fr;
  }
}
