:root {
  color-scheme: light;
  --amber-50: #fff7ed;
  --amber-100: #ffedd5;
  --amber-200: #fed7aa;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --ink: #141414;
  --muted: #6b7280;
  --line: rgba(20, 20, 20, 0.08);
  --panel: #ffffff;
  --soft-shadow: 0 16px 45px rgba(120, 53, 15, 0.14);
  --hard-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
  --radius: 24px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 42%, #fff7ed 100%);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(120, 53, 15, 0.97), rgba(194, 65, 12, 0.97), rgba(146, 64, 14, 0.97));
  color: #fff;
  box-shadow: 0 18px 45px rgba(120, 53, 15, 0.24);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-block,
.section-inner,
.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-text strong {
  display: block;
  font-size: 21px;
  letter-spacing: 0.03em;
}

.brand-text small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 237, 213, 0.88);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #251205;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 44px;
  padding: 96px max(32px, calc((100vw - 1200px) / 2)) 80px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
  background-image: linear-gradient(90deg, rgba(45, 18, 6, 0.96) 0%, rgba(120, 53, 15, 0.7) 42%, rgba(17, 24, 39, 0.45) 100%), var(--cover-image);
  background-size: cover;
  background-position: center;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 26% 24%, rgba(245, 158, 11, 0.36), transparent 34%), linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 100%);
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffedd5;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(254, 215, 170, 0.22);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.02;
  max-width: 820px;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 237, 213, 0.92);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.75;
}

.hero-tags,
.detail-meta,
.card-meta,
.tag-row,
.channel-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span,
.channel-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  color: #78350f;
  background: #ffedd5;
}

.hero-tags span {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 16px 36px rgba(217, 119, 6, 0.35);
}

.ghost-button {
  color: #fff7ed;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(120, 53, 15, 0.25);
}

.hero-card {
  display: block;
  overflow: hidden;
  border-radius: 32px;
  min-height: 500px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--hard-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-cover,
.rank-cover,
.detail-poster,
.card-poster {
  background-image: linear-gradient(160deg, rgba(251, 191, 36, 0.18), rgba(17, 24, 39, 0.72)), var(--cover-image);
  background-size: cover;
  background-position: center;
}

.hero-card-cover {
  display: block;
  min-height: 400px;
}

.hero-card-text {
  display: block;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
}

.hero-card-text strong,
.hero-card-text em {
  display: block;
}

.hero-card-text strong {
  font-size: 22px;
}

.hero-card-text em {
  margin-top: 8px;
  color: rgba(255, 237, 213, 0.86);
  font-style: normal;
}

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

.hero-dot {
  width: 42px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #f59e0b;
}

.search-band {
  padding: 26px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.search-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.search-inner h2,
.search-inner p {
  margin: 0;
}

.search-inner p {
  margin-top: 5px;
  color: var(--muted);
}

.search-box,
.filter-bar {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-box input,
.filter-bar input,
.filter-bar select {
  width: min(380px, 70vw);
  height: 46px;
  border: 1px solid rgba(120, 53, 15, 0.16);
  border-radius: 999px;
  padding: 0 17px;
  outline: none;
  background: #fffaf2;
}

.filter-bar select {
  width: 160px;
}

.search-box input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.search-box button,
.filter-bar button {
  height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: #92400e;
  cursor: pointer;
}

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

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

.section-head.compact {
  margin-bottom: 20px;
}

.section-head h2,
.rank-panel h2,
.side-card h2,
.content-card h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  color: #1f2937;
}

.section-head a {
  color: #b45309;
  font-weight: 700;
}

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

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

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

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

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

.movie-card {
  background: var(--panel);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(120, 53, 15, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(120, 53, 15, 0.18);
}

.card-link {
  display: block;
  height: 100%;
}

.card-poster {
  position: relative;
  min-height: 245px;
  overflow: hidden;
}

.card-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.42));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.movie-card:hover .card-poster::after {
  opacity: 1;
}

.card-badge,
.card-score {
  position: absolute;
  z-index: 1;
  top: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.card-badge {
  left: 13px;
  background: #d97706;
}

.card-score {
  right: 13px;
  background: rgba(17, 24, 39, 0.74);
}

.card-play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.82);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(217, 119, 6, 0.88);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.card-body {
  padding: 18px;
}

.card-body h3 {
  min-height: 52px;
  margin: 0 0 10px;
  color: #111827;
  font-size: 18px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body p {
  min-height: 45px;
  margin: 0 0 14px;
  color: #6b7280;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  color: #6b7280;
  font-size: 13px;
}

.card-meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 10px;
  border-radius: 50%;
  background: #fed7aa;
  vertical-align: middle;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  min-height: 26px;
  font-size: 12px;
}

.tag-row.large span {
  min-height: 32px;
  font-size: 14px;
}

.channel-section {
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.7), rgba(255, 247, 237, 0.2));
  border-radius: 36px;
  padding-left: 28px;
  padding-right: 28px;
}

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

.channel-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border-radius: 22px;
  color: #fff;
  background-image: linear-gradient(135deg, rgba(120, 53, 15, 0.9), rgba(194, 65, 12, 0.52)), var(--cover-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--soft-shadow);
}

.channel-card span,
.channel-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.channel-card span {
  font-size: 22px;
  font-weight: 800;
}

.channel-card strong {
  margin-top: 14px;
  color: rgba(255, 237, 213, 0.9);
  line-height: 1.6;
}

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

.rank-panel,
.side-card,
.content-card,
.player-card {
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(120, 53, 15, 0.08);
}

.rank-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.rank-panel-head {
  margin-bottom: 18px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: auto 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: #fff7ed;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
  transform: translateX(3px);
  background: #ffedd5;
}

.rank-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #d97706;
  font-weight: 800;
}

.rank-cover {
  width: 72px;
  height: 48px;
  border-radius: 12px;
}

.rank-content {
  min-width: 0;
}

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

.rank-content strong {
  color: #1f2937;
}

.rank-content em {
  margin-top: 4px;
  color: #6b7280;
  font-style: normal;
  font-size: 12px;
}

.rank-hot {
  color: #b45309;
  font-weight: 800;
  font-size: 13px;
}

.page-hero,
.detail-hero {
  color: #fff;
  background-image: linear-gradient(115deg, rgba(69, 26, 3, 0.96), rgba(154, 52, 18, 0.72)), var(--cover-image);
  background-size: cover;
  background-position: center;
}

.page-hero-inner,
.detail-hero-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.1;
}

.page-hero p,
.detail-info p {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(255, 237, 213, 0.92);
  font-size: 19px;
  line-height: 1.75;
}

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

.category-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 250px;
  color: #fff;
  background-image: linear-gradient(140deg, rgba(69, 26, 3, 0.9), rgba(194, 65, 12, 0.56)), var(--cover-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--soft-shadow);
}

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

.category-overview-card h2,
.category-overview-card p,
.category-samples {
  position: relative;
  z-index: 1;
}

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

.category-overview-card p {
  max-width: 620px;
  color: rgba(255, 237, 213, 0.9);
  line-height: 1.7;
}

.category-samples {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.category-samples a {
  min-height: auto;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.category-glow {
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.36);
  filter: blur(18px);
}

.filter-bar {
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.empty-state {
  display: none;
  margin-top: 24px;
  padding: 22px;
  border-radius: 18px;
  color: #92400e;
  background: #ffedd5;
  text-align: center;
  font-weight: 700;
}

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

.full-rank-list .rank-item {
  grid-template-columns: 42px 100px minmax(0, 1fr) auto;
}

.full-rank-list .rank-cover {
  width: 100px;
  height: 66px;
}

.detail-hero-inner {
  padding-top: 44px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  color: rgba(255, 237, 213, 0.85);
}

.breadcrumb em {
  font-style: normal;
  color: #fff;
}

.detail-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.detail-poster {
  min-height: 430px;
  border-radius: 30px;
  box-shadow: var(--hard-shadow);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.detail-meta span {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #0b0b0b;
}

.movie-video {
  display: block;
  width: 100%;
  height: min(62vw, 640px);
  min-height: 520px;
  background: #050505;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  align-content: center;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(217, 119, 6, 0.34), rgba(0, 0, 0, 0.76));
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.big-play {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.32);
  font-size: 36px;
}

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

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  padding: 13px 16px;
  border-radius: 14px;
  color: #fff7ed;
  background: rgba(15, 23, 42, 0.78);
}

.player-message.is-visible {
  display: block;
}

.content-card {
  padding: 28px;
}

.content-card h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.content-card p {
  margin: 0;
  color: #374151;
  line-height: 2;
  font-size: 16px;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
}

.side-card {
  padding: 22px;
}

.side-card h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.compact-rank .rank-item {
  grid-template-columns: auto 66px minmax(0, 1fr);
}

.compact-rank .rank-hot {
  display: none;
}

.compact-rank .rank-cover {
  width: 66px;
  height: 46px;
}

.site-footer {
  margin-top: 48px;
  color: #d1d5db;
  background: linear-gradient(90deg, #111827, #1f2937, #111827);
}

.footer-inner {
  padding: 46px 0;
}

.footer-brand {
  max-width: 740px;
}

.footer-logo {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.footer-brand p {
  color: #9ca3af;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffedd5;
  background: rgba(255, 255, 255, 0.06);
}

.footer-copy {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
}

@media (max-width: 1060px) {
  .hero-slide {
    grid-template-columns: 1fr;
    min-height: 720px;
  }

  .hero-card {
    display: none;
  }

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

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

  .rank-panel,
  .detail-sidebar {
    position: static;
  }

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

@media (max-width: 820px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: 14px;
    border-radius: 18px;
    background: rgba(120, 53, 15, 0.98);
    box-shadow: var(--hard-shadow);
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 640px;
  }

  .hero-slide {
    padding: 86px 22px 74px;
    min-height: 640px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .search-inner,
  .section-head,
  .filter-bar,
  .detail-layout {
    align-items: stretch;
    flex-direction: column;
    display: flex;
  }

  .filter-bar select,
  .filter-bar input,
  .search-box input {
    width: 100%;
  }

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

  .detail-poster {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-block,
  .section-inner,
  .footer-inner,
  .page-hero-inner,
  .detail-hero-inner {
    width: min(100% - 22px, 1200px);
  }

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

  .brand-text small {
    display: none;
  }

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

  .hero-content p,
  .page-hero p,
  .detail-info p {
    font-size: 16px;
  }

  .movie-grid,
  .featured-grid,
  .latest-grid,
  .category-grid,
  .related-grid,
  .channel-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .card-poster {
    min-height: 280px;
  }

  .rank-item,
  .full-rank-list .rank-item {
    grid-template-columns: auto 72px minmax(0, 1fr);
  }

  .rank-hot {
    display: none;
  }

  .player-card,
  .movie-video {
    min-height: 300px;
  }
}
