:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --red-600: #dc2626;
  --pink-500: #ec4899;
  --purple-500: #8b5cf6;
  --teal-500: #14b8a6;
  --blue-500: #3b82f6;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #111827;
  background: linear-gradient(135deg, var(--slate-50), #eef2ff);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--orange-500);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: #e5e7eb;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding-left: 2px;
  color: #fff;
  font-size: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.25);
}

.brand-text,
.footer-logo div {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong,
.footer-logo strong {
  font-size: 20px;
  color: transparent;
  background: linear-gradient(90deg, #fb923c, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
}

.brand small,
.footer-logo small {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.desktop-nav a,
.mobile-nav a {
  color: #cbd5e1;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: #fb923c;
}

.search-form,
.mobile-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-form input,
.mobile-search input {
  width: 220px;
  padding: 10px 12px;
  color: #fff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  outline: none;
  background: rgba(51, 65, 85, 0.85);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-form input:focus,
.mobile-search input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.22);
}

.search-form button,
.mobile-search button {
  padding: 10px 14px;
  color: #fff;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 14px;
}

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

.hero-carousel {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  background: var(--slate-900);
}

.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-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(249, 115, 22, 0.30), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: absolute;
  left: clamp(24px, 5vw, 56px);
  bottom: clamp(28px, 7vw, 72px);
  width: min(720px, calc(100% - 64px));
  color: #fff;
}

.hero-badge,
.eyebrow,
.movie-type,
.movie-type-inline {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--red-600));
}

.hero-badge {
  padding: 8px 14px;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
}

.hero-content p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #e5e7eb;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

.hero-tags,
.movie-meta-row,
.detail-meta,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.hero-tags span,
.tag-cloud span {
  padding: 7px 12px;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
}

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

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

.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.28);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.primary-button.small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.ghost-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-arrow-left {
  left: 18px;
}

.hero-arrow-right {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  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.55);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.content-section,
.panel-section {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.panel-section.gradient-blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
}

.panel-section.gradient-purple {
  color: #fff;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
}

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

.section-heading h1,
.section-heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.18;
}

.panel-section.gradient-blue .section-heading h2,
.panel-section.gradient-purple .section-heading h2,
.panel-section.gradient-blue .section-heading p,
.panel-section.gradient-purple .section-heading p {
  color: #fff;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-500);
}

.section-heading a {
  flex: 0 0 auto;
  color: var(--orange-600);
  font-weight: 800;
}

.panel-section .section-heading a {
  color: #fff;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

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

.movie-poster {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
}

.movie-poster-wide {
  aspect-ratio: 16 / 9;
}

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

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

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.44);
  transition: opacity 0.25s ease;
}

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

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding-left: 3px;
  color: #fff;
  border-radius: 50%;
  background: var(--orange-500);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-year,
.movie-type,
.rank-mark {
  position: absolute;
  z-index: 3;
}

.movie-year {
  right: 10px;
  bottom: 10px;
  padding: 5px 9px;
  color: #fff;
  font-size: 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.65);
}

.movie-type {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.rank-mark {
  left: 10px;
  top: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
}

.movie-info {
  padding: 16px;
}

.movie-info h3 {
  display: -webkit-box;
  min-height: 45px;
  margin: 8px 0 8px;
  overflow: hidden;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--orange-600);
}

.movie-one-line {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.movie-type-inline {
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
}

.movie-meta-row {
  margin-top: 12px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.movie-tags span {
  padding: 4px 8px;
  color: #475569;
  border-radius: 8px;
  background: #f1f5f9;
  font-size: 12px;
}

.movie-card-large .movie-info {
  padding: 20px;
}

.movie-card-large .movie-info h3 {
  font-size: 21px;
}

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

.movie-card-horizontal .movie-card-link {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0;
}

.movie-card-horizontal .movie-poster {
  min-height: 150px;
  height: 100%;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.category-chips a,
.category-chips span {
  padding: 10px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}

.category-chips a:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.page-hero {
  padding: 34px;
  color: #fff;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.36), transparent 34%),
    linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
}

.page-hero p {
  max-width: 780px;
  margin: 14px 0 0;
  color: #cbd5e1;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--orange-600);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.pagination a,
.pagination strong,
.pagination span {
  min-width: 38px;
  padding: 10px 13px;
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.pagination strong {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
}

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

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

.player-card,
.detail-content-card,
.side-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.player-card {
  position: relative;
  background: #000;
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  color: #fff;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.08));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding-left: 5px;
  border-radius: 50%;
  font-size: 32px;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.32);
}

.player-card.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
}

.player-status {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 5;
  color: #fff;
  font-size: 13px;
}

.detail-content-card {
  padding: 28px;
}

.detail-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.eyebrow {
  padding: 6px 12px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
}

.detail-content-card h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}

.detail-one-line {
  margin: 18px 0 0;
  color: #374151;
  font-size: 18px;
  line-height: 1.8;
}

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

.detail-meta div {
  padding: 14px;
  border-radius: 14px;
  background: #f8fafc;
}

.detail-meta dt {
  color: #64748b;
  font-size: 13px;
}

.detail-meta dd {
  margin: 6px 0 0;
  color: #111827;
  font-weight: 800;
}

.detail-content-card h2,
.side-card h2 {
  margin: 28px 0 12px;
  color: #111827;
  font-size: 22px;
}

.detail-content-card p {
  color: #374151;
  line-height: 1.9;
}

.tag-cloud span {
  color: #c2410c;
  border-color: #fed7aa;
  background: #fff7ed;
}

.tag-cloud.compact span {
  font-size: 13px;
}

.poster-card {
  position: relative;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.poster-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent);
}

.poster-card-info strong,
.poster-card-info span {
  display: block;
}

.side-card {
  padding: 20px;
}

.side-card h2 {
  margin-top: 0;
}

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

.side-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.side-list span {
  color: #1f2937;
  font-weight: 700;
}

.side-list em {
  color: #64748b;
  font-style: normal;
}

.search-panel {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.search-panel form {
  display: flex;
  gap: 10px;
}

.search-panel input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  outline: none;
}

.search-panel button {
  padding: 0 22px;
  color: #fff;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
}

.search-summary {
  color: #64748b;
}

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

.category-card {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.category-card h2 {
  margin: 0 0 8px;
  color: #111827;
}

.category-card p {
  margin: 0 0 16px;
  color: #64748b;
}

.category-card a {
  color: var(--orange-600);
  font-weight: 800;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

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

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

.footer-brand p,
.footer-inner p {
  color: #94a3b8;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: #fb923c;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  text-align: center;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: none;
  width: 46px;
  height: 46px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.3);
  cursor: pointer;
}

.back-top.is-visible {
  display: block;
}

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

  .mobile-toggle {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  .search-form {
    margin-left: auto;
  }

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

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

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

@media (max-width: 780px) {
  .brand small,
  .search-form {
    display: none;
  }

  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 20px;
  }

  .hero-carousel {
    height: 520px;
    border-radius: 18px;
  }

  .hero-content {
    left: 22px;
    bottom: 46px;
    width: calc(100% - 44px);
  }

  .hero-tags span:nth-child(3) {
    display: none;
  }

  .hero-arrow {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .hero-dots {
    display: none;
  }

  .content-section,
  .panel-section,
  .page-hero,
  .detail-content-card {
    padding: 20px;
    border-radius: 18px;
  }

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

  .movie-grid,
  .movie-grid.large-grid,
  .movie-grid.compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .movie-card-horizontal .movie-card-link {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .movie-info {
    padding: 12px;
  }

  .movie-info h3 {
    min-height: auto;
    font-size: 15px;
  }

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

  .detail-title-row,
  .search-panel form {
    flex-direction: column;
  }

  .detail-side,
  .category-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand strong {
    font-size: 18px;
  }

  .movie-grid,
  .movie-grid.large-grid,
  .movie-grid.compact-grid {
    grid-template-columns: 1fr;
  }

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

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