:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: #1e293b;
  --panel-2: #0f172a;
  --line: #334155;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-dark: #0891b2;
  --yellow: #facc15;
  --orange: #f97316;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
  color: var(--text);
  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%;
  background: #111827;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--cyan);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.2);
}

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

.desktop-nav a,
.mobile-nav a {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--cyan);
}

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

.header-search input,
.intro-search input,
.page-search input,
.filter-row input,
.filter-row select {
  width: 100%;
  min-height: 42px;
  color: var(--text);
  background: #0f172a;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.intro-search input:focus,
.page-search input:focus,
.filter-row input:focus,
.filter-row select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.header-search button,
.intro-search button,
.page-search button {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  color: #fff;
  background: var(--cyan-dark);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.intro-search button:hover,
.page-search button:hover {
  background: #06b6d4;
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #1e293b;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: #0f172a;
}

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

.hero {
  position: relative;
  height: 70vh;
  min-height: 540px;
  overflow: hidden;
  background: #0f172a;
}

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.78) 48%, rgba(15, 23, 42, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-weight: 800;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
  max-width: 760px;
  margin: 0 0 26px;
  color: #d1d5db;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-tags,
.movie-tags,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.chip,
.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: #dbeafe;
  background: #334155;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
}

.hero-tags span:first-child,
.chip.active {
  background: var(--cyan-dark);
  border-color: rgba(34, 211, 238, 0.5);
  color: #fff;
}

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

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

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

.button-primary {
  color: #fff;
  background: #06b6d4;
  box-shadow: 0 18px 38px rgba(6, 182, 212, 0.25);
}

.button-primary:hover {
  background: #0891b2;
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  border: 0;
  border-radius: 999px;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-control:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

.hero-dot.active {
  width: 36px;
  background: var(--cyan);
}

.intro-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 26px;
  margin-top: -54px;
  position: relative;
  z-index: 8;
  padding: 28px;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.intro-panel h2,
.section-heading h2,
.detail-card h1,
.side-card h2,
.category-overview-head h2 {
  margin: 0;
  color: #fff;
}

.intro-panel p,
.section-heading p,
.category-overview-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.intro-search,
.page-search {
  display: flex;
  gap: 10px;
}

.content-section {
  padding: 64px 0 0;
}

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

.section-heading h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.section-heading > a,
.category-overview-head > a {
  color: var(--cyan);
  font-weight: 800;
}

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

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

.all-movie-grid {
  padding-top: 26px;
}

.movie-card {
  overflow: hidden;
  background: #1e293b;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px) scale(1.01);
}

.movie-card-cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0f172a;
}

.movie-card-large .movie-card-cover {
  aspect-ratio: 16 / 9;
}

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

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

.movie-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.12), transparent);
  transition: opacity 0.25s ease;
}

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

.movie-card-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #06b6d4;
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-duration {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  font-size: 12px;
}

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

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

.movie-card h3 a {
  color: #fff;
  transition: color 0.2s ease;
}

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

.movie-card p {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-meta,
.rank-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted-2);
  font-size: 13px;
}

.movie-card-meta a,
.rank-meta a,
.side-card a {
  color: var(--cyan);
}

.movie-tags {
  margin-top: 12px;
}

.feature-band {
  padding: 34px;
  margin-top: 70px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(30, 58, 138, 0.3), rgba(8, 145, 178, 0.28));
}

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

.compact-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 90px;
  padding: 10px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.compact-card:hover {
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-2px);
}

.compact-card img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}

.compact-card span {
  color: #fff;
  font-weight: 750;
  line-height: 1.35;
}

.compact-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

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

.category-tile {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  position: relative;
  background: #1e293b;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -36px;
  bottom: -36px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
}

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

.category-tile span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.category-tile strong {
  margin-top: 10px;
  color: #fff;
  font-size: 22px;
}

.category-tile em {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}

.page-shell {
  padding-bottom: 80px;
}

.page-hero {
  margin-top: 34px;
  padding: 56px;
  border-radius: 30px;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 35%), linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: var(--shadow);
}

.small-hero h1,
.category-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.category-hero .chip-row {
  margin-top: 28px;
}

.filter-panel {
  margin-top: 32px;
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 160px 160px;
  gap: 12px;
  padding: 18px;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
}

.category-overview-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.category-overview-card {
  padding: 24px;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
}

.category-overview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.category-overview-head span {
  color: var(--cyan);
  font-weight: 800;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 72px 140px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-2px);
}

.rank-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.1);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
}

.rank-poster img {
  width: 140px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
}

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

.rank-info p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.search-results-shell {
  margin-top: 36px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  padding-top: 32px;
}

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

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

.player-shell {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

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

.player-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
  border: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-poster span {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  background: #06b6d4;
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.32);
  font-size: 42px;
}

.player-shell.is-playing .player-poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.player-shell:hover .player-bar,
.player-shell:focus-within .player-bar {
  opacity: 1;
}

.player-bar button {
  min-width: 44px;
  min-height: 40px;
  color: #fff;
  background: rgba(51, 65, 85, 0.9);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.player-bar button:first-child {
  background: #06b6d4;
}

.player-title {
  flex: 1;
  color: #fff;
  font-weight: 800;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.detail-card,
.side-card {
  margin-top: 22px;
  padding: 26px;
  background: rgba(30, 41, 59, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 20px;
}

.detail-card h1 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 44px);
}

.detail-meta {
  margin-bottom: 28px;
}

.detail-card section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.detail-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 22px;
}

.detail-card p {
  color: #cbd5e1;
  line-height: 1.9;
  text-align: justify;
}

.lead-text {
  color: #e5e7eb !important;
  font-size: 18px;
}

.review-box {
  padding: 22px;
  color: #cbd5e1;
  line-height: 2;
  text-align: justify;
  background: rgba(15, 23, 42, 0.62);
  border-radius: 16px;
}

.detail-sidebar {
  position: relative;
}

.detail-sidebar .side-card {
  position: sticky;
  top: 86px;
}

.side-card + .side-card {
  position: static;
}

.side-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.side-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.side-card dl div:last-child {
  border-bottom: 0;
}

.side-card dt {
  color: var(--muted);
}

.side-card dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
  text-align: right;
}

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

.site-footer {
  margin-top: 80px;
  padding-top: 46px;
  color: var(--muted);
  background: #0f172a;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 38px;
}

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

.site-footer p {
  line-height: 1.8;
}

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

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

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

.footer-bottom {
  margin-top: 34px;
  padding: 18px;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

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

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

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

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

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

  .detail-sidebar .side-card {
    position: static;
  }
}

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

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .hero-copy h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-control {
    width: 42px;
    height: 42px;
    font-size: 32px;
  }

  .intro-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-search,
  .page-search,
  .section-heading,
  .category-overview-head {
    flex-direction: column;
    align-items: stretch;
  }

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

  .filter-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 34px 24px;
  }

  .rank-row {
    grid-template-columns: 52px 96px 1fr;
  }

  .rank-number {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .rank-poster img {
    width: 96px;
    height: 72px;
  }

  .rank-info p,
  .rank-info .movie-tags {
    display: none;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-logo {
    font-size: 17px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 34px;
  }

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

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

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

  .feature-band {
    padding: 24px 18px;
  }

  .detail-card,
  .side-card {
    padding: 20px;
  }

  .player-bar {
    opacity: 1;
  }
}
