:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --border: rgba(59, 130, 246, 0.24);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --blue: #2563eb;
  --cyan: #22d3ee;
  --orange: #f97316;
  --yellow: #facc15;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 34rem),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 30rem),
    linear-gradient(135deg, #020617 0%, #0f172a 50%, #020617 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

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

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 64, 175, 0.92), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.48);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text,
.footer-logo span:last-child {
  font-size: 20px;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link {
  padding: 9px 13px;
  color: #cbd5e1;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(59, 130, 246, 0.22);
}

.header-search {
  position: relative;
  width: 260px;
}

.header-search input,
.mobile-search input,
.search-line input,
select {
  width: 100%;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  height: 40px;
  padding: 0 44px 0 16px;
}

.header-search button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 32px;
  height: 32px;
  color: #dbeafe;
  border: 0;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.8);
}

.header-search input:focus,
.mobile-search input:focus,
.search-line input:focus,
select:focus {
  border-color: rgba(34, 211, 238, 0.75);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
  background: rgba(15, 23, 42, 0.94);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #ffffff;
  border: 0;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

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

.mobile-panel a {
  padding: 10px 12px;
  color: #cbd5e1;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.52);
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mobile-search input {
  height: 40px;
  padding: 0 14px;
}

.mobile-search button,
.search-line button {
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.category-strip {
  background: rgba(2, 6, 23, 0.42);
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  overflow-x: auto;
}

.category-strip-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  gap: 18px;
  padding: 9px 0;
}

.category-strip a {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.2s ease;
}

.category-strip a:hover {
  color: #67e8f9;
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 5s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.62) 42%, rgba(2, 6, 23, 0.16) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.82), transparent 62%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: 86px;
  width: min(680px, calc(100% - 48px));
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.24);
}

.hero-content h1,
.page-hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-meta span,
.detail-meta span {
  color: #dbeafe;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(15, 23, 42, 0.62);
}

.hero-button,
.section-link,
.detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.24);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-button:hover,
.section-link:hover,
.detail-actions a:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.52);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(37, 99, 235, 0.72);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

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

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

.page-stack {
  padding: 54px 0 72px;
  display: grid;
  gap: 64px;
}

.content-section {
  display: grid;
  gap: 22px;
}

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

.section-heading h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.movie-row {
  display: flex;
  gap: 18px;
  padding: 4px 2px 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.movie-row .movie-card {
  width: 360px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(34, 211, 238, 0.32);
  background: rgba(15, 23, 42, 0.92);
  box-shadow: var(--shadow);
}

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

.card-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #0f172a;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.movie-card:hover .card-cover img {
  opacity: 0.82;
  transform: scale(1.06);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.58);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.duration-badge,
.rank-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #ffffff;
  font-size: 12px;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(2, 6, 23, 0.82);
}

.rank-badge {
  left: 10px;
  right: auto;
  top: 10px;
  bottom: auto;
  min-width: 34px;
  text-align: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.card-body {
  padding: 16px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  margin-bottom: 9px;
  color: #dbeafe;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.35);
}

.card-body h3 {
  margin: 0 0 8px;
  min-height: 44px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body p {
  margin: 0 0 12px;
  min-height: 43px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted-2);
  font-size: 12px;
}

.card-horizontal .card-link {
  grid-template-columns: 42% 1fr;
}

.card-horizontal .card-cover {
  height: 100%;
  aspect-ratio: auto;
}

.card-horizontal .card-body h3 {
  min-height: auto;
}

.hot-panel {
  padding: 28px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.22), rgba(8, 145, 178, 0.14));
}

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

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(2, 6, 23, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.32);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.category-card:hover img {
  opacity: 0.54;
  transform: scale(1.05);
}

.category-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.95), transparent);
}

.category-card span {
  color: #67e8f9;
  font-size: 13px;
  font-weight: 700;
}

.category-card h3 {
  margin: 8px 0;
  font-size: 24px;
}

.category-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.65;
}

.page-hero,
.detail-hero {
  padding: 68px 0 48px;
  background:
    linear-gradient(135deg, rgba(30, 64, 175, 0.46), rgba(8, 145, 178, 0.22)),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.20), transparent 28rem);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.compact-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #67e8f9;
}

.toolbar,
.search-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.70);
}

.toolbar label,
.filter-line label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.toolbar select,
.filter-line select {
  min-width: 170px;
  height: 42px;
  padding: 0 14px;
}

.toolbar-count {
  color: #dbeafe;
  font-weight: 700;
}

.search-panel {
  align-items: stretch;
  flex-direction: column;
}

.search-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-line input {
  height: 48px;
  padding: 0 18px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.86fr);
  gap: 28px;
  padding: 36px 0 72px;
}

.detail-main,
.detail-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 24px;
  background: #000000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000000;
  object-fit: contain;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 0;
  background:
    radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 30%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.20));
}

.play-overlay[hidden] {
  display: none;
}

.play-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 48px rgba(34, 211, 238, 0.30);
  transition: transform 0.22s ease;
}

.play-overlay:hover span {
  transform: scale(1.08);
}

.detail-panel,
.detail-side {
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  padding: 24px;
  background: rgba(15, 23, 42, 0.68);
}

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

.detail-title-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.detail-title-row h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.rating-box {
  min-width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.26), rgba(249, 115, 22, 0.18));
}

.rating-box strong {
  color: #fde68a;
  font-size: 28px;
  line-height: 1;
}

.rating-box span {
  color: #fed7aa;
  font-size: 12px;
}

.detail-meta,
.detail-actions,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-actions a {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
  background: rgba(37, 99, 235, 0.34);
  box-shadow: none;
}

.tag-cloud span {
  color: #cbd5e1;
  font-size: 13px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(2, 6, 23, 0.34);
}

.story-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.story-block h2,
.detail-side h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.story-block p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.9;
}

.story-block p + p {
  margin-top: 14px;
}

.lead-text {
  color: #e0f2fe !important;
  font-weight: 650;
}

.review-block {
  padding: 22px;
  border: 1px solid rgba(34, 211, 238, 0.13);
  border-radius: 20px;
  background: rgba(2, 6, 23, 0.32);
}

.related-list .card-horizontal .card-link {
  grid-template-columns: 132px 1fr;
}

.related-list .card-body p,
.related-list .card-meta span:nth-child(1) {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.80), rgba(2, 6, 23, 0.98));
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
}

.footer-inner h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.footer-inner p,
.footer-inner a,
.footer-bottom {
  color: var(--muted);
  line-height: 1.75;
}

.footer-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-inner a:hover {
  color: #67e8f9;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  font-size: 14px;
}

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

@media (max-width: 1100px) {
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-grid,
  .filter-line,
  .detail-layout,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .header-inner {
    gap: 12px;
  }

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

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

  .hero-carousel {
    height: 520px;
  }

  .hero-content {
    bottom: 74px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 38px;
  }

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

  .hero-arrow {
    display: none;
  }

  .section-heading,
  .toolbar,
  .detail-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .category-grid,
  .filter-line,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .card-horizontal .card-link,
  .related-list .card-horizontal .card-link {
    grid-template-columns: 42% 1fr;
  }
}

@media (max-width: 540px) {
  .container,
  .header-inner,
  .category-strip-inner,
  .footer-inner,
  .footer-bottom,
  .mobile-panel {
    width: min(100% - 24px, 1180px);
  }

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

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

  .hero-carousel {
    height: 500px;
  }

  .hero-content {
    left: 16px;
    bottom: 64px;
    width: calc(100% - 32px);
  }

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

  .page-stack {
    padding: 38px 0 52px;
    gap: 46px;
  }

  .movie-row .movie-card {
    width: 300px;
  }

  .card-horizontal .card-link,
  .related-list .card-horizontal .card-link {
    grid-template-columns: 1fr;
  }

  .detail-panel,
  .detail-side,
  .hot-panel {
    padding: 18px;
    border-radius: 20px;
  }

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

  .search-line button {
    min-height: 42px;
  }
}
