:root {
  --blue-950: #172554;
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
  --sky-50: #eff6ff;
  --gray-950: #020617;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
  --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: #ffffff;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: 1200px;
  height: 76px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-900);
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), #38bdf8);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

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

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

.desktop-nav a {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-700);
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--blue-600);
}

.top-search {
  display: flex;
  align-items: center;
  width: 255px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

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

.top-search button {
  border: 0;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-600);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
}

.mobile-panel {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px 16px;
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
  font-weight: 700;
}

.hero {
  min-height: 680px;
  margin-top: 76px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800) 52%, var(--blue-600));
}

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(20px) saturate(110%);
  transform: scale(1.08);
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(96, 165, 250, 0.45), transparent 28%),
    linear-gradient(135deg, rgba(23, 37, 84, 0.92), rgba(30, 64, 175, 0.82) 55%, rgba(37, 99, 235, 0.72));
}

.hero-content {
  position: relative;
  max-width: 1200px;
  min-height: 680px;
  margin: 0 auto;
  padding: 72px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blue-100);
  background: rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.04em;
}

.hero h2 {
  margin: 16px 0 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
  color: #bfdbfe;
}

.hero p,
.page-hero p,
.detail-one-line {
  max-width: 740px;
  margin: 20px 0 0;
  color: #dbeafe;
  font-size: 19px;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span,
.detail-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--blue-950);
  background: var(--white);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-small {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}

.btn-small {
  min-height: 36px;
  padding: 8px 15px;
  font-size: 14px;
}

.hero-poster {
  position: relative;
  width: 100%;
  max-width: 390px;
  justify-self: end;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(2, 6, 23, 0.48);
  transform: rotate(2deg);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
}

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

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.hero-dot.is-active {
  width: 34px;
  background: var(--white);
}

.stats-strip {
  max-width: 1080px;
  margin: -42px auto 0;
  position: relative;
  z-index: 10;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats-strip div {
  text-align: center;
}

.stats-strip strong {
  display: block;
  color: var(--blue-600);
  font-size: 30px;
}

.stats-strip span {
  color: var(--gray-500);
  font-weight: 700;
}

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 22px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading .section-kicker {
  margin-right: auto;
  margin-left: auto;
  color: var(--blue-600);
  background: var(--blue-100);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.category-tile {
  position: relative;
  min-height: 250px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

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

.category-tile:hover img {
  transform: scale(1.08);
}

.tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.76));
}

.tile-title,
.tile-desc {
  position: absolute;
  left: 22px;
  color: var(--white);
}

.tile-title {
  bottom: 54px;
  font-size: 24px;
  font-weight: 900;
}

.tile-desc {
  bottom: 24px;
  color: #dbeafe;
}

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

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

.movie-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow);
}

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

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

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

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(37, 99, 235, 0.92);
  font-size: 12px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 52px;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  overflow: hidden;
}

.movie-title:hover {
  color: var(--blue-600);
}

.movie-card-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 48px;
  margin: 10px 0 14px;
  color: var(--gray-600);
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-meta span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 12px;
  font-weight: 700;
}

.section-more {
  margin-top: 34px;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.split-copy {
  padding: 38px;
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  box-shadow: var(--shadow);
}

.split-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.14;
}

.split-copy p {
  color: #dbeafe;
  font-size: 18px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.rank-panel,
.info-card,
.detail-article,
.detail-side {
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.rank-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--gray-200);
}

.rank-head h3 {
  margin: 0;
  font-size: 24px;
}

.rank-head a {
  color: var(--blue-600);
  font-weight: 800;
}

.rank-list {
  padding: 8px;
}

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

.rank-item:hover {
  background: var(--sky-50);
}

.rank-no {
  color: var(--blue-600);
  font-weight: 900;
}

.rank-item img {
  width: 58px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.rank-info em {
  color: var(--gray-500);
  font-style: normal;
  font-size: 13px;
}

.page-main {
  padding-top: 76px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.compact-hero {
  padding: 74px 22px;
}

.compact-hero > div {
  max-width: 1200px;
  margin: 0 auto;
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  height: 150px;
}

.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.category-card-large h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.category-card-large p {
  color: var(--gray-600);
}

.category-card-large span {
  color: var(--blue-600);
  font-weight: 900;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.toolbar input,
.toolbar select,
.search-page-form input {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 12px 14px;
  outline: none;
}

.toolbar input:focus,
.toolbar select:focus,
.search-page-form input:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.type-filter {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.type-filter button {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--gray-700);
  background: var(--white);
}

.type-filter button.is-active,
.type-filter button:hover {
  color: var(--white);
  border-color: var(--blue-600);
  background: var(--blue-600);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 72px 86px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.rank-row.top-rank {
  border-color: rgba(37, 99, 235, 0.35);
  background: linear-gradient(90deg, #eff6ff, #ffffff);
}

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

.rank-cover img {
  width: 86px;
  height: 112px;
  border-radius: 16px;
  object-fit: cover;
}

.rank-detail a {
  font-size: 20px;
  font-weight: 900;
}

.rank-detail p {
  margin: 8px 0 12px;
  color: var(--gray-600);
}

.search-section {
  max-width: 1100px;
}

.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 18px;
}

.search-summary {
  margin-bottom: 28px;
  color: var(--gray-600);
  font-weight: 800;
}

.detail-main {
  padding-top: 76px;
  background: linear-gradient(180deg, #eff6ff 0, #ffffff 380px);
}

.detail-hero {
  min-height: 600px;
}

.detail-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.8));
}

.detail-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 22px 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 10px 0 32px;
  color: #dbeafe;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--white);
  font-weight: 800;
}

.detail-head-grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  width: 290px;
  height: 400px;
  border: 6px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 35px 70px rgba(2, 6, 23, 0.45);
}

.detail-copy h1 {
  max-width: 820px;
}

.player-section {
  max-width: 1100px;
  margin: -82px auto 0;
  padding: 0 22px;
  position: relative;
  z-index: 5;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.play-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.25), rgba(30, 64, 175, 0.5));
  cursor: pointer;
  z-index: 3;
}

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

.play-ring {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
  font-size: 30px;
}

.play-cover strong {
  font-size: 20px;
}

.player-status {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 4;
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.72);
}

.detail-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 58px 22px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.detail-article {
  padding: 34px;
}

.detail-article h2 {
  margin: 0 0 16px;
  color: var(--gray-900);
  font-size: 28px;
}

.detail-article h2:not(:first-child) {
  margin-top: 36px;
}

.detail-article p {
  margin: 0 0 16px;
  color: var(--gray-700);
  font-size: 17px;
}

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

.info-card {
  padding: 24px;
  box-shadow: none;
}

.info-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.info-card dl {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.info-card dt {
  color: var(--gray-500);
  font-weight: 800;
}

.info-card dd {
  margin: 0;
  color: var(--gray-900);
}

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

.site-footer {
  margin-top: 50px;
  padding: 42px 22px;
  color: #dbeafe;
  background: var(--gray-950);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  color: var(--white);
}

.footer-inner p {
  max-width: 650px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #bfdbfe;
  font-weight: 800;
}

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

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

  .mobile-panel.is-open {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-poster {
    justify-self: start;
    max-width: 280px;
  }

  .hero-poster img {
    height: 360px;
  }

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

  .split-section,
  .detail-content,
  .category-large-grid {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    height: 68px;
  }

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

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

  .hero {
    margin-top: 68px;
  }

  .page-main,
  .detail-main {
    padding-top: 68px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 14px;
    border-radius: 22px;
  }

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

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

  .toolbar {
    grid-template-columns: 1fr;
  }

  .search-page-form {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 52px 76px minmax(0, 1fr);
  }

  .rank-row .btn {
    grid-column: 1 / -1;
  }

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

  .detail-poster {
    width: 220px;
    height: 310px;
  }

  .player-section {
    margin-top: -42px;
  }

  .detail-article {
    padding: 24px;
  }
}
