:root {
  --blue-900: #0f2f68;
  --blue-800: #17408f;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --sky-100: #dbeafe;
  --slate-950: #06111f;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 44%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

main {
  min-height: 70vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.site-header-inner {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-logo-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  background: var(--white);
  border-radius: 12px;
  font-size: 24px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.site-logo-text {
  font-size: 22px;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 300px;
}

.header-search input,
.mobile-search input,
.filter-input,
.filter-select,
.search-large input {
  width: 100%;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.94);
  color: var(--slate-900);
  padding: 12px 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search input:focus,
.mobile-search input:focus,
.filter-input:focus,
.filter-select:focus,
.search-large input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
}

.header-search button,
.mobile-search button,
.search-large button,
.button,
.pagination-link {
  border: none;
  border-radius: 14px;
  color: var(--white);
  background: var(--blue-600);
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.header-search button:hover,
.mobile-search button:hover,
.search-large button:hover,
.button:hover,
.pagination-link:hover {
  transform: translateY(-1px);
  background: var(--blue-700);
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.28);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.button.light {
  color: var(--blue-700);
  background: var(--white);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
}

.mobile-panel {
  display: none;
  padding: 14px 24px 22px;
  background: var(--white);
  color: var(--slate-900);
  border-top: 1px solid var(--slate-200);
}

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

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-link {
  color: var(--slate-700);
  background: var(--slate-100);
}

.hero-slider {
  position: relative;
  min-height: 650px;
  margin-top: 68px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 45%, rgba(37, 99, 235, 0.08), transparent 36%),
    linear-gradient(90deg, rgba(3, 7, 18, 0.92) 0%, rgba(15, 23, 42, 0.72) 45%, rgba(15, 23, 42, 0.18) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 92px 24px 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow,
.section-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue-600);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: var(--white);
  background: var(--blue-600);
}

.hero-content h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-summary {
  max-width: 680px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-tags {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 34px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%) scale(1.04);
}

.hero-control.prev {
  left: 28px;
}

.hero-control.next {
  right: 28px;
}

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

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

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

.page-hero,
.detail-hero {
  margin-top: 68px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.45), transparent 32%),
    linear-gradient(135deg, var(--slate-950), var(--blue-900));
}

.page-hero-inner,
.detail-hero-inner,
.content-section,
.archive-section,
.detail-content,
.search-section {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-hero-inner {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-hero h1,
.detail-title h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.page-hero p,
.detail-title p {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.content-section,
.archive-section,
.search-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.section-heading p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.section-more {
  display: inline-flex;
  align-items: center;
  color: var(--blue-700);
  font-weight: 800;
}

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

.movie-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

.movie-card.compact {
  grid-template-columns: 128px 1fr;
}

.movie-poster {
  position: relative;
  display: block;
  min-height: 236px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--blue-900), var(--slate-900));
}

.movie-card.compact .movie-poster {
  min-height: 188px;
}

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

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

.poster-badge,
.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(37, 99, 235, 0.9);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.movie-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

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

.movie-card-meta span,
.detail-meta span,
.breadcrumbs a,
.breadcrumbs span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--slate-100);
  padding: 6px 10px;
}

.breadcrumbs {
  margin-bottom: 22px;
}

.breadcrumbs a {
  color: var(--blue-700);
  background: rgba(219, 234, 254, 0.85);
}

.movie-card h2,
.movie-card h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 21px;
  line-height: 1.32;
}

.movie-card h2 a:hover,
.movie-card h3 a:hover {
  color: var(--blue-700);
}

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

.movie-card-tags,
.tag-cloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-card-tags a,
.movie-card-tags span,
.tag-cloud a,
.tag-cloud span {
  display: inline-flex;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue-700);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(145deg, var(--blue-700), var(--blue-900));
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-card h2,
.category-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.category-card .mini-list {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.filter-panel,
.search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 14px;
  margin-bottom: 26px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.archive-count {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.rank-item {
  display: grid;
  grid-template-columns: 64px 110px 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.rank-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(145deg, #f97316, #dc2626);
  font-weight: 900;
}

.rank-cover {
  width: 110px;
  height: 78px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--slate-900);
}

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

.rank-main h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.rank-main p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.65;
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  padding-top: 92px;
  padding-bottom: 70px;
}

.detail-cover {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--slate-900);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

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

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

.detail-meta {
  margin: 20px 0;
}

.detail-meta span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.detail-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  padding-top: 50px;
  padding-bottom: 70px;
}

.detail-main,
.detail-side-card {
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-main {
  overflow: hidden;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  background: #000;
  cursor: pointer;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
}

.player-play {
  position: absolute;
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(37, 99, 235, 0.92);
  font-size: 38px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, background 0.2s ease;
}

.player-cover:hover .player-play {
  transform: scale(1.06);
  background: var(--blue-700);
}

.detail-article {
  padding: 30px;
}

.detail-article h2,
.detail-side-card h2 {
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.detail-article p {
  margin: 0 0 20px;
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.9;
}

.detail-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.detail-side-card {
  padding: 22px;
}

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

.info-list div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 12px;
}

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

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

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

.related-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
}

.related-item img {
  width: 74px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--slate-900);
}

.related-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--slate-900);
}

.related-item span {
  color: var(--slate-500);
  font-size: 13px;
}

.search-large {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  max-width: 780px;
  margin-top: 28px;
}

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

.search-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.search-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: var(--slate-900);
}

.search-card-body {
  padding: 16px;
}

.search-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.search-card p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.65;
}

.empty-state {
  border: 1px dashed rgba(37, 99, 235, 0.36);
  border-radius: var(--radius-lg);
  background: rgba(239, 246, 255, 0.8);
  padding: 34px;
  color: var(--slate-600);
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: var(--slate-950);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}

.footer-logo {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
  line-height: 1.8;
}

.footer-links h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 20px;
}

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

.footer-grid a {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-align: center;
}

.footer-grid a:hover {
  color: var(--white);
  background: rgba(37, 99, 235, 0.42);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1180px) {
  .movie-grid,
  .search-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .site-nav,
  .header-search {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 900px) {
  .hero-slider {
    min-height: 560px;
  }

  .hero-control {
    display: none;
  }

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

  .filter-panel,
  .search-panel,
  .detail-hero-inner,
  .detail-content,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    max-width: 280px;
  }

  .rank-item {
    grid-template-columns: 48px 86px 1fr;
  }

  .rank-item .button {
    grid-column: 1 / -1;
    text-align: center;
  }

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

@media (max-width: 640px) {
  .site-header-inner {
    height: 64px;
    padding: 0 16px;
  }

  .site-logo-mark {
    width: 38px;
    height: 38px;
  }

  .site-logo-text {
    font-size: 19px;
  }

  .hero-slider,
  .page-hero,
  .detail-hero {
    margin-top: 64px;
  }

  .hero-slider {
    min-height: 560px;
  }

  .hero-content {
    padding: 60px 18px 74px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .page-hero-inner,
  .content-section,
  .archive-section,
  .search-section,
  .detail-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .movie-grid,
  .search-result-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card,
  .movie-card.compact {
    grid-template-columns: 120px 1fr;
  }

  .movie-poster,
  .movie-card.compact .movie-poster {
    min-height: 182px;
  }

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

  .movie-card h2,
  .movie-card h3 {
    font-size: 18px;
  }

  .detail-hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .detail-article {
    padding: 22px;
  }

  .player-play {
    width: 74px;
    height: 74px;
    font-size: 30px;
  }

  .search-large,
  .mobile-search {
    grid-template-columns: 1fr;
  }
}
