:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #142033;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-500: #78716c;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --teal-900: #134e4a;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.18);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: var(--stone-50);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  border-bottom: 1px solid rgba(217, 119, 6, 0.25);
  box-shadow: 0 16px 35px rgba(2, 6, 23, 0.28);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--slate-900);
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-300), var(--amber-600));
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

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

.brand-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--stone-300);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  color: var(--stone-200);
  transition: color 0.25s ease;
}

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

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

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

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

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a {
  display: block;
  padding: 11px 14px;
  color: var(--stone-200);
  border-radius: 12px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--amber-300);
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--slate-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.18));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  max-width: 760px;
}

.hero-kicker,
.section-heading span,
.page-hero span {
  display: inline-block;
  padding: 7px 14px;
  color: #fff;
  font-size: 14px;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.9);
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--stone-200);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-tags,
.detail-meta,
.movie-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-tags span,
.detail-meta span,
.rank-meta span {
  padding: 6px 10px;
  color: var(--stone-100);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
}

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

.primary-btn,
.ghost-btn,
.text-link,
.row-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-weight: 700;
  border-radius: 12px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.primary-btn {
  color: #fff;
  background: var(--amber-600);
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.28);
}

.primary-btn:hover {
  transform: translateY(-2px);
  background: var(--amber-700);
  box-shadow: 0 18px 34px rgba(217, 119, 6, 0.34);
}

.ghost-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.ghost-btn:hover {
  color: var(--amber-300);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.5);
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

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

.home-search-block {
  color: #fff;
  background: linear-gradient(135deg, var(--slate-900), var(--teal-900));
  padding: 54px 0;
}

.home-search-block h2,
.home-search-block p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-search-block h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.home-search-block p {
  color: var(--stone-300);
  line-height: 1.8;
}

.filter-panel {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.home-search-block .filter-panel,
.dark-section .filter-panel {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
}

.filter-search {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 14px;
  background: #fff;
}

.filter-search input {
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  color: var(--slate-900);
  background: transparent;
}

.filter-search span {
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--amber-600);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-chips button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--slate-700);
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.filter-chips button.active,
.filter-chips button:hover {
  color: #fff;
  border-color: var(--amber-600);
  background: var(--amber-600);
}

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

.muted-section {
  background: var(--stone-100);
}

.dark-section {
  color: #fff;
  background: var(--slate-900);
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 16px 0 0;
  color: var(--slate-900);
  font-size: clamp(28px, 4vw, 42px);
}

.section-heading.light h2 {
  color: #fff;
}

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

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

.compact-grid,
.category-movie-grid,
.search-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--slate-800);
}

.movie-card.featured .poster-wrap {
  aspect-ratio: 16 / 11;
}

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

.movie-card:hover .poster-wrap img,
.category-tile:hover img,
.category-cover:hover img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.52));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.badge,
.rank-number {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  color: #fff;
  font-size: 12px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
}

.badge-left {
  top: 10px;
  left: 10px;
}

.badge-right {
  top: 10px;
  right: 10px;
}

.rank-number {
  left: 10px;
  bottom: 10px;
  min-width: 38px;
  text-align: center;
  font-weight: 900;
  background: var(--amber-600);
}

.rank-number-wide {
  min-width: 48px;
}

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

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.4;
}

.movie-card h3 a:hover,
.rank-body h2 a:hover,
.text-link:hover,
.mini-links a:hover,
.side-links a:hover {
  color: var(--amber-700);
}

.movie-card p {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.65;
}

.movie-meta {
  justify-content: space-between;
  color: var(--stone-500);
  font-size: 12px;
}

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

.category-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius-xl);
  background: var(--slate-800);
  box-shadow: var(--shadow-lg);
}

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

.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.88));
}

.tile-content {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
}

.tile-content strong {
  display: block;
  font-size: 24px;
}

.tile-content em {
  display: block;
  margin-top: 8px;
  color: var(--stone-300);
  font-style: normal;
  line-height: 1.6;
}

.tile-links,
.mini-links,
.side-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tile-links {
  margin-top: 14px;
}

.tile-links a,
.mini-links a,
.side-links a {
  padding: 6px 9px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.rank-preview,
.ranking-list {
  display: grid;
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: auto 96px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.dark-section .rank-row {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(30, 41, 59, 0.72);
}

.list-rank {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  font-weight: 900;
  border-radius: 12px;
  background: var(--amber-600);
}

.rank-thumb {
  display: block;
  width: 96px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 14px;
  background: var(--slate-800);
}

.rank-thumb img {
  height: 100%;
  object-fit: cover;
}

.rank-body h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.rank-body p {
  margin: 0 0 10px;
  color: var(--slate-600);
  line-height: 1.7;
}

.dark-section .rank-body p {
  color: var(--stone-300);
}

.rank-meta span {
  color: var(--slate-700);
  border-color: rgba(148, 163, 184, 0.3);
  background: var(--stone-100);
}

.dark-section .rank-meta span {
  color: var(--stone-200);
  background: rgba(15, 23, 42, 0.45);
}

.row-action {
  color: #fff;
  background: var(--amber-600);
}

.center-link {
  margin-top: 32px;
  text-align: center;
}

.page-hero {
  padding: 76px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
}

.page-hero h1 {
  margin: 18px 0;
  font-size: clamp(34px, 5vw, 58px);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--stone-300);
  font-size: 18px;
  line-height: 1.85;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--stone-300);
  font-size: 14px;
}

.crumbs a:hover {
  color: var(--amber-300);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.category-cover {
  overflow: hidden;
  border-radius: 18px;
  background: var(--slate-800);
}

.category-cover img {
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-overview-card h2 {
  margin: 2px 0 10px;
}

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

.mini-links {
  margin: 16px 0;
}

.mini-links a,
.side-links a {
  color: var(--slate-700);
  background: var(--stone-100);
}

.text-link {
  color: var(--amber-700);
  padding: 0;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: #fff;
  background: var(--slate-900);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  height: 100%;
  object-fit: cover;
  filter: blur(6px) saturate(1.05);
  transform: scale(1.04);
  opacity: 0.5;
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.42));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 44px;
  padding: 58px 0 72px;
}

.detail-hero-inner .crumbs {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.detail-poster img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-info {
  align-self: center;
}

.detail-info h1 {
  margin: 18px 0;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.08;
}

.detail-info p {
  max-width: 760px;
  color: var(--stone-200);
  font-size: 20px;
  line-height: 1.85;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
}

.tag-cloud span {
  padding: 7px 11px;
  color: var(--amber-100, #fef3c7);
  font-size: 13px;
  border: 1px solid rgba(217, 119, 6, 0.35);
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.18);
}

.player-section {
  padding-top: 54px;
  background: var(--slate-950);
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: #fff;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.82));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  display: inline-grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding-left: 6px;
  font-size: 38px;
  border-radius: 999px;
  background: var(--amber-600);
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.32);
}

.player-cover strong {
  font-size: clamp(24px, 4vw, 42px);
}

.player-cover em {
  color: var(--stone-300);
  font-style: normal;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 30px;
}

.detail-article,
.detail-side {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.detail-article p {
  color: var(--slate-700);
  font-size: 17px;
  line-height: 2;
}

.detail-side {
  align-self: start;
  position: sticky;
  top: 100px;
}

.side-links {
  margin-bottom: 18px;
}

.site-footer {
  color: var(--stone-300);
  background: linear-gradient(90deg, var(--slate-950), var(--slate-900));
  border-top: 1px solid rgba(217, 119, 6, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 32px;
  padding: 46px 0;
}

.footer-brand {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.site-footer p {
  max-width: 520px;
  color: var(--stone-400, #a8a29e);
  line-height: 1.8;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--stone-300);
}

.footer-links a {
  display: inline-block;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

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

.footer-bottom {
  padding: 16px;
  color: var(--stone-500);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.is-hidden-card {
  display: none !important;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
    font-size: 13px;
  }

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

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

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

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: block;
  }

  .hero {
    height: 560px;
  }

  .hero-arrow {
    display: none;
  }

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-movie-grid,
  .search-grid,
  .category-grid,
  .category-overview-grid,
  .footer-grid,
  .detail-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-row {
    grid-template-columns: auto 78px 1fr;
  }

  .row-action {
    grid-column: 3;
    justify-self: start;
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .detail-hero-inner {
    grid-template-columns: 220px 1fr;
    gap: 24px;
  }

  .detail-side {
    position: static;
  }
}

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

  .brand-mark {
    width: 38px;
    height: 38px;
  }

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

  .hero {
    height: 620px;
  }

  .hero-content {
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 72px;
  }

  .hero-tags span,
  .detail-meta span {
    font-size: 12px;
  }

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

  .movie-grid,
  .featured-grid,
  .compact-grid,
  .category-movie-grid,
  .search-grid,
  .category-grid,
  .category-overview-grid,
  .footer-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .list-rank {
    grid-row: span 2;
  }

  .rank-thumb {
    display: none;
  }

  .row-action {
    grid-column: 2;
  }

  .page-hero {
    padding: 48px 0;
  }

  .detail-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .detail-poster {
    max-width: 240px;
  }

  .detail-info p {
    font-size: 17px;
  }

  .player-cover strong {
    padding: 0 20px;
    text-align: center;
  }
}
