:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --ink: #111827;
  --muted: #64748b;
  --line: #dbe7f3;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --orange: #f97316;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0f172a, #1e3a8a 52%, #0f172a);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.28);
}

.header-inner {
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.38);
  font-size: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #dbeafe;
  font-size: 15px;
}

.main-nav a,
.nav-menu button {
  color: #dbeafe;
  border: 0;
  background: transparent;
  padding: 10px 0;
}

.main-nav a:hover,
.nav-menu button:hover {
  color: #ffffff;
}

.nav-menu {
  position: relative;
}

.nav-panel {
  position: absolute;
  right: 0;
  top: 42px;
  width: 220px;
  padding: 10px;
  display: grid;
  gap: 3px;
  background: #ffffff;
  color: #334155;
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-menu:hover .nav-panel,
.nav-menu:focus-within .nav-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-panel a {
  color: #334155;
  padding: 9px 12px;
  border-radius: 10px;
}

.nav-panel a:hover {
  background: #eff6ff;
  color: var(--blue);
}

.header-search {
  display: flex;
  align-items: center;
  width: 270px;
  height: 40px;
  padding: 0 6px 0 14px;
  border: 1px solid rgba(219, 234, 254, 0.25);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
}

.header-search input::placeholder {
  color: #a5b4fc;
}

.header-search button {
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  padding: 6px 12px;
  cursor: pointer;
}

.mobile-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 26px;
}

.mobile-nav {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #e0f2fe;
}

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

.hero-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(135deg, #020617, #0f2f7f 52%, #0e7490);
}

.hero-bg,
.hero-layer {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.04);
}

.hero-layer {
  background:
    radial-gradient(circle at 78% 18%, rgba(34, 211, 238, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.74) 52%, rgba(8, 47, 73, 0.78));
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  min-height: 650px;
  margin: 0 auto;
  padding: 72px 20px 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 50px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(125, 211, 252, 0.48);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(14, 165, 233, 0.12);
  color: #bae6fd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 22px 0 18px;
  color: #ffffff;
  font-size: clamp(38px, 7vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 680px;
  color: #dbeafe;
  font-size: 20px;
}

.hero-feature {
  margin: 26px 0;
  padding: 18px;
  border: 1px solid rgba(219, 234, 254, 0.18);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(16px);
  color: #e0f2fe;
}

.hero-feature span,
.hero-panel-body span {
  display: block;
  color: #67e8f9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-feature strong {
  display: block;
  margin: 6px 0;
  color: #ffffff;
  font-size: 24px;
}

.hero-feature em {
  color: #cbd5e1;
  font-style: normal;
}

.hero-search {
  display: flex;
  max-width: 620px;
  padding: 8px;
  border: 1px solid rgba(219, 234, 254, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  padding: 0 16px;
}

.hero-search input::placeholder {
  color: #bfdbfe;
}

.hero-search button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.hero-search button:hover {
  transform: translateY(-2px);
}

.btn-primary,
.hero-search button {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.32);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

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

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.56);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.48);
  backdrop-filter: blur(18px);
}

.hero-panel > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.hero-panel-body {
  padding: 22px;
  color: #ffffff;
}

.hero-panel-body h2 {
  margin: 8px 0;
  font-size: 28px;
  line-height: 1.15;
}

.hero-panel-body p {
  margin: 0;
  color: #cbd5e1;
}

.hero-mini-list {
  display: grid;
  gap: 10px;
  padding: 0 22px 22px;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-mini-card img {
  width: 68px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

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

.hero-mini-card em {
  color: #bfdbfe;
  font-size: 13px;
  font-style: normal;
}

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px;
}

.soft-section {
  max-width: none;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.soft-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
}

.section-head p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
}

.section-link {
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}

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

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(219, 231, 243, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  height: 270px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #cffafe);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(15, 23, 42, 0.68));
}

.movie-badge,
.movie-year,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.movie-badge {
  left: 12px;
  top: 12px;
  background: rgba(37, 99, 235, 0.92);
}

.movie-year {
  right: 12px;
  bottom: 12px;
  background: rgba(15, 23, 42, 0.82);
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  background: linear-gradient(135deg, var(--orange), #ef4444);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 18px;
}

.movie-title {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.3;
}

.meta-row,
.movie-desc {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.movie-desc {
  flex: 1;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.tag-row span,
.detail-tags span {
  border-radius: 999px;
  padding: 4px 9px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 28px;
  background: #0f172a;
  box-shadow: var(--shadow-soft);
}

.category-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.36;
  transition: transform 0.45s ease;
}

.category-tile:hover .category-image {
  transform: scale(1.08);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(37, 99, 235, 0.46));
}

.category-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
}

.category-content strong {
  font-size: 24px;
  line-height: 1.1;
}

.category-content span {
  margin-top: 10px;
  color: #dbeafe;
  font-size: 14px;
}

.scroll-row {
  display: grid;
  grid-auto-columns: minmax(270px, 1fr);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 2px 22px;
  scroll-snap-type: x proximity;
}

.scroll-row .movie-card {
  scroll-snap-align: start;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
  align-items: start;
}

.wide-grid {
  display: grid;
  gap: 20px;
}

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

.movie-card-wide .poster-wrap {
  height: 100%;
  min-height: 220px;
}

.rank-panel,
.article-card,
.side-card,
.filter-bar {
  border: 1px solid rgba(219, 231, 243, 0.95);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.rank-panel {
  padding: 22px;
}

.rank-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.rank-panel h2 {
  margin: 0;
  color: #0f172a;
}

.rank-panel a {
  color: var(--blue);
  font-weight: 800;
}

.rank-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #e2e8f0;
}

.rank-row span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--blue);
  font-weight: 900;
}

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

.rank-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #172554, #0e7490);
  background-size: cover;
  background-position: center;
}

.compact-hero {
  background: linear-gradient(135deg, #0f172a, #1d4ed8 56%, #0891b2);
}

.page-hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(15, 23, 42, 0.62));
}

.page-hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 20px;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 19px;
}

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

.breadcrumb a:hover {
  color: #ffffff;
}

.filter-bar {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px;
}

.large-filter {
  padding: 24px;
}

.filter-bar input {
  width: 100%;
  border: 1px solid #dbe7f3;
  border-radius: 999px;
  outline: 0;
  padding: 14px 18px;
  color: #0f172a;
  background: #f8fafc;
}

.filter-bar input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: #e2e8f0;
  color: #334155;
  cursor: pointer;
  font-weight: 700;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--blue);
  color: #ffffff;
}

.empty-state {
  display: none;
  padding: 44px;
  text-align: center;
  color: var(--muted);
  border-radius: 24px;
  background: #ffffff;
}

.empty-state.is-visible {
  display: block;
}

.detail-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.detail-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(34, 211, 238, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.74));
}

.detail-hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 20px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.48);
}

.detail-poster-wrap img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.detail-copy h1 {
  max-width: 820px;
  font-size: clamp(36px, 6vw, 58px);
}

.detail-copy p {
  max-width: 820px;
  color: #dbeafe;
  font-size: 19px;
}

.detail-meta,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.detail-meta span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
}

.player-section {
  padding-top: 44px;
  padding-bottom: 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #020617;
  box-shadow: 0 30px 70px rgba(2, 6, 23, 0.28);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), rgba(2, 6, 23, 0.42));
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.42);
  font-size: 32px;
  padding-left: 5px;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.article-card,
.side-card {
  padding: 28px;
}

.article-card h2,
.side-card h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 26px;
}

.article-card p {
  margin: 0 0 28px;
  color: #334155;
  font-size: 17px;
}

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

.info-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid #e2e8f0;
}

.info-list dt {
  color: var(--muted);
}

.info-list dd {
  margin: 0;
  color: #0f172a;
  font-weight: 800;
}

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

.side-card a {
  padding: 12px 14px;
  border-radius: 14px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 800;
}

.site-footer {
  margin-top: 30px;
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #cbd5e1;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-brand p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #e0f2fe;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 18px 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

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

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

  .hero-inner,
  .feature-split,
  .detail-content {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 62px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero-inner,
  .detail-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .hero-section,
  .hero-inner {
    min-height: auto;
  }

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

  .hero-search {
    border-radius: 24px;
    flex-direction: column;
    gap: 10px;
  }

  .hero-search input {
    width: 100%;
    padding: 12px 14px;
  }

  .hero-search button {
    width: 100%;
  }

  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
  }

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

  .poster-wrap {
    height: 220px;
  }

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

  .detail-poster-wrap {
    max-width: 250px;
  }

  .detail-poster-wrap img {
    height: 350px;
  }

  .page-hero-inner,
  .content-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 520px) {
  .logo {
    font-size: 16px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
  }

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

  .poster-wrap {
    height: 300px;
  }

  .hero-panel > img {
    height: 260px;
  }

  .play-icon {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}
