:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: #0f172a;
  --panel-soft: #1e293b;
  --line: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #f59e0b;
  --accent-strong: #d97706;
  --radius: 20px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.12), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, 0.10), transparent 34rem),
    var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.78);
  border-bottom: 1px solid rgba(148, 163, 184, 0.10);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--accent), #ef4444);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.24);
}

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

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin-top: 4px;
  color: rgba(245, 158, 11, 0.82);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  color: #d1d5db;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link {
  padding: 10px 16px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: white;
  background: rgba(245, 158, 11, 0.95);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: rgba(30, 41, 59, 0.92);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid var(--line);
}

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

.mobile-link {
  padding: 13px 14px;
}

.page-main {
  min-height: calc(100vh - 250px);
  padding-top: 64px;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
}

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

.hero-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

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

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #020617 0%, rgba(2, 6, 23, 0.84) 35%, rgba(2, 6, 23, 0.18) 100%),
    linear-gradient(to right, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.14));
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1180px) / 2));
  bottom: 80px;
  width: min(640px, calc(100% - 64px));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-content h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-content h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.hero-content p {
  margin: 20px 0 0;
  max-width: 620px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

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

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

.hero-tags span,
.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(245, 158, 11, 0.12);
  backdrop-filter: blur(8px);
  font-size: 13px;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  color: white;
  background: var(--accent);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.24);
}

.primary-button:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

.ghost-button {
  color: white;
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ghost-button:hover {
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.68);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 8px;
  height: 8px;
  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: 32px;
  background: var(--accent);
}

.quick-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 24px;
  margin-top: 42px;
}

.quick-search-card,
.quick-category-card,
.feature-strip,
.story-card,
.player-card,
.side-panel,
.category-card,
.ranking-board {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quick-search-card,
.quick-category-card,
.feature-strip,
.story-card,
.player-card,
.side-panel,
.ranking-board {
  border-radius: var(--radius);
}

.quick-search-card,
.quick-category-card {
  padding: 28px;
}

.quick-search-card h2,
.quick-category-card h2,
.section-head h2,
.side-panel h2,
.story-card h2,
.player-card h2 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.quick-search-card p,
.section-head p,
.page-hero p,
.story-card p,
.player-card p,
.detail-one-line {
  color: var(--soft);
  line-height: 1.8;
}

.home-search,
.search-box,
.toolbar {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.home-search input,
.search-box input,
.toolbar input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  color: white;
  background: rgba(15, 23, 42, 0.86);
  outline: 0;
}

.home-search input,
.search-box input {
  min-height: 48px;
  padding: 0 16px;
}

.toolbar input {
  min-height: 44px;
  padding: 0 14px;
}

.home-search input:focus,
.search-box input:focus,
.toolbar input:focus {
  border-color: rgba(245, 158, 11, 0.68);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.home-search button,
.search-box button {
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--accent);
  padding: 0 20px;
  font-weight: 800;
}

.chip-cloud a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: #e5e7eb;
  background: rgba(30, 41, 59, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.chip-cloud a:hover {
  color: white;
  background: rgba(245, 158, 11, 0.9);
  transform: translateY(-2px);
}

.content-section {
  margin-top: 62px;
}

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

.section-head p {
  margin: 8px 0 0;
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 800;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.54);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  background: rgba(30, 41, 59, 0.96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(-6px);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.movie-card--compact {
  width: 286px;
  flex: 0 0 286px;
}

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

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

.movie-card:hover .movie-poster img,
.feature-card:hover img,
.category-card:hover img,
.poster-mosaic a:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  border-radius: 999px;
  color: white;
  background: var(--accent);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.poster-year {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  color: white;
  background: rgba(245, 158, 11, 0.92);
  font-size: 12px;
  font-weight: 800;
}

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

.movie-card h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--accent);
}

.movie-card p {
  min-height: 44px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 13px;
}

.meta-row span + span::before {
  content: "·";
  margin-right: 8px;
  color: rgba(148, 163, 184, 0.54);
}

.tag-row {
  gap: 7px;
}

.feature-strip {
  padding: 30px;
}

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

.feature-card,
.category-card,
.poster-mosaic a {
  position: relative;
  overflow: hidden;
}

.feature-card {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
}

.feature-card img,
.category-card img,
.poster-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.feature-shade,
.category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.24), transparent);
}

.feature-copy,
.category-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
}

.feature-copy strong,
.category-copy strong {
  display: block;
  color: white;
  font-size: 20px;
  line-height: 1.3;
}

.feature-copy em,
.category-copy em {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.55;
}

.rail-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 20px;
  scrollbar-color: var(--accent) rgba(30, 41, 59, 0.6);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 32px;
}

.rank-list,
.side-media-list,
.ranking-board {
  display: grid;
  gap: 12px;
}

.mini-media {
  display: grid;
  grid-template-columns: auto 74px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 15px;
  background: rgba(30, 41, 59, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.10);
  transition: background 0.2s ease, transform 0.2s ease;
}

.side-media-list .mini-media {
  grid-template-columns: 64px minmax(0, 1fr);
}

.side-media-list .rank-number {
  display: none;
}

.mini-media:hover {
  background: rgba(30, 41, 59, 0.96);
  transform: translateX(4px);
}

.rank-number {
  width: 34px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.mini-media img {
  width: 74px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
}

.side-media-list .mini-media img {
  width: 64px;
  height: 48px;
}

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

.mini-media strong {
  color: white;
  font-size: 15px;
}

.mini-media em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

.poster-mosaic a {
  aspect-ratio: 1;
  border-radius: 16px;
}

.poster-mosaic span {
  position: absolute;
  inset: auto 0 0;
  padding: 12px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), transparent);
  font-weight: 800;
  font-size: 13px;
}

.page-hero {
  padding: 74px 0 20px;
}

.page-hero--compact {
  padding-top: 80px;
}

.page-hero h1 {
  font-size: clamp(34px, 4vw, 54px);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 17px;
}

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

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

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

.category-card {
  min-height: 220px;
  border-radius: 22px;
  display: block;
}

.search-box {
  max-width: 820px;
}

.toolbar {
  justify-content: flex-end;
  margin: 0 0 24px;
}

.toolbar input {
  max-width: 460px;
}

.movie-card.is-hidden {
  display: none;
}

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

.ranking-board {
  padding: 16px;
}

.side-panel {
  padding: 22px;
}

.side-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.side-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #d1d5db;
  background: rgba(30, 41, 59, 0.62);
  transition: color 0.2s ease, background 0.2s ease;
}

.side-links a:hover {
  color: white;
  background: rgba(245, 158, 11, 0.88);
}

.detail-hero {
  position: relative;
  padding: 84px 0 56px;
  overflow: hidden;
}

.detail-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px) saturate(1.15);
  transform: scale(1.06);
  opacity: 0.38;
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.74), #020617);
}

.detail-intro {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.detail-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.detail-copy h1 {
  font-size: clamp(34px, 4.5vw, 62px);
}

.detail-one-line {
  max-width: 850px;
  margin: 18px 0 0;
  font-size: 18px;
}

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

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.detail-tags {
  margin: 18px 0 24px;
}

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

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

.player-card,
.story-card {
  padding: 22px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: black;
  margin-bottom: 18px;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: black;
}

.play-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-cover span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 34px;
  box-shadow: 0 20px 58px rgba(245, 158, 11, 0.34);
  transition: transform 0.22s ease;
}

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

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

.story-card p,
.player-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.84);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 560px;
}

.footer-brand strong {
  display: block;
  font-size: 18px;
}

.footer-brand p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

  .ranking-layout,
  .detail-layout,
  .split-section,
  .quick-panel {
    grid-template-columns: 1fr;
  }

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    height: 68vh;
    min-height: 520px;
  }

  .hero-content {
    left: 20px;
    bottom: 72px;
    width: calc(100% - 40px);
  }

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

  .hero-arrow {
    display: none;
  }

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

  .detail-intro {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand-subtitle {
    display: none;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-copy h1 {
    letter-spacing: -0.02em;
  }

  .quick-search-card,
  .quick-category-card,
  .feature-strip,
  .player-card,
  .story-card,
  .side-panel {
    padding: 18px;
  }

  .home-search,
  .search-box,
  .toolbar {
    flex-direction: column;
  }

  .home-search button,
  .search-box button {
    min-height: 46px;
  }

  .movie-grid--three,
  .movie-grid--four,
  .feature-grid,
  .category-grid,
  .poster-mosaic {
    grid-template-columns: 1fr;
  }

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

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

  .mini-media {
    grid-template-columns: auto 64px minmax(0, 1fr);
  }

  .mini-media img {
    width: 64px;
    height: 48px;
  }
}
