:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: rgba(15, 23, 42, 0.82);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --accent: #f59e0b;
  --accent-2: #fbbf24;
  --danger: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

body::selection {
  background: rgba(245, 158, 11, 0.45);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(16px);
}

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

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), #ef4444);
  color: #111827;
  box-shadow: 0 10px 32px rgba(245, 158, 11, 0.28);
}

.brand-name {
  font-size: 1.18rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link,
.mobile-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.86);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(15, 23, 42, 0.98);
}

.mobile-panel.open {
  display: grid;
  gap: 8px;
  padding: 14px 20px 20px;
}

.mobile-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-link:hover,
.mobile-link.active {
  background: rgba(245, 158, 11, 0.16);
  color: var(--accent-2);
}

main {
  min-height: 70vh;
}

.hero {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  background: #020617;
}

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

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-layer.left {
  background: linear-gradient(90deg, #020617 0%, rgba(2, 6, 23, 0.93) 36%, rgba(2, 6, 23, 0.5) 62%, transparent 100%);
}

.hero-layer.bottom {
  background: linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.58) 28%, transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 18vh;
  max-width: 1180px;
}

.hero-content > * {
  max-width: 720px;
}

.hero-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 16px 0 10px;
  color: rgba(248, 250, 252, 0.92);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 800;
}

.hero-content h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 5.85rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.hero-content p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

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

.hero-tags span,
.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  color: #fde68a;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111827;
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.22);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(248, 250, 252, 0.16);
  color: #fff;
}

.btn.text {
  color: var(--accent-2);
}

.btn.small {
  min-height: 40px;
  padding: 0 14px;
}

.btn.full {
  width: 100%;
  margin-top: 16px;
}

.hero-dots {
  position: absolute;
  z-index: 8;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 116px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

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

.hero-search {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 28px;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-search label {
  color: var(--subtle);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-search div,
.filter-bar label {
  display: flex;
  gap: 10px;
}

.hero-search input,
.filter-bar input {
  width: 100%;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 14px;
  outline: none;
  background: rgba(2, 6, 23, 0.72);
  color: var(--text);
}

.hero-search input:focus,
.filter-bar input:focus {
  border-color: rgba(245, 158, 11, 0.65);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.hero-search button,
.filter-buttons button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #111827;
  font-weight: 900;
  cursor: pointer;
}

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

.dark-band {
  width: 100%;
  max-width: none;
  margin-top: 68px;
  padding: 68px max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75), rgba(2, 6, 23, 0.1));
}

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

.section-head h2,
.ranking-panel h2,
.site-footer h2,
.detail-copy h2,
.detail-side h2,
.category-copy h2 {
  margin: 6px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
}

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

.section-more,
.panel-link {
  color: var(--accent-2);
  font-weight: 900;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.68);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card[hidden],
.ranking-item[hidden] {
  display: none;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(30, 41, 59, 0.82);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

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

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 42%, rgba(2, 6, 23, 0.8));
}

.year-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.76);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
}

.rank-badge {
  left: auto;
  right: 12px;
  background: linear-gradient(135deg, var(--accent), #ef4444);
  color: #111827;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.92);
  color: #111827;
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.card-body {
  padding: 16px;
}

.card-body h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: var(--accent-2);
}

.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--subtle);
  font-size: 0.82rem;
}

.card-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: rgba(148, 163, 184, 0.5);
}

.card-body p {
  min-height: 3.2em;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.compact .card-body p {
  min-height: 2.9em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.ranking-panel,
.poster-panel,
.side-panel,
.category-overview-card,
.filter-bar {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: var(--shadow);
}

.ranking-panel {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.rank-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.rank-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
}

.rank-row:hover,
.side-card:hover {
  background: rgba(245, 158, 11, 0.12);
}

.rank-row span {
  color: var(--accent-2);
  font-weight: 950;
}

.rank-row strong {
  display: block;
}

.rank-row em {
  display: block;
  color: var(--subtle);
  font-style: normal;
  font-size: 0.8rem;
}

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

.category-tile {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.55));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.46);
}

.category-tile span,
.category-copy span {
  color: var(--accent-2);
  font-weight: 900;
}

.category-tile strong {
  font-size: 1.35rem;
}

.category-tile p {
  margin: 0;
  color: var(--muted);
}

.category-tile div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tile div a {
  color: var(--subtle);
  font-size: 0.82rem;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 140px 0 34px;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 88px auto auto 54%;
  width: 420px;
  height: 220px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  filter: blur(70px);
}

.inner-hero h1 {
  position: relative;
  margin: 10px 0 12px;
  max-width: 820px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.inner-hero p {
  position: relative;
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.filter-bar.slim,
.search-wide {
  max-width: none;
}

.filter-bar label {
  flex-direction: column;
  color: var(--subtle);
  font-weight: 900;
}

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

.filter-buttons button {
  background: rgba(30, 41, 59, 0.88);
  color: var(--muted);
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: var(--accent);
  color: #111827;
}

.overview-stack {
  display: grid;
  gap: 22px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 24px;
}

.category-copy p {
  color: var(--muted);
}

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

.side-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.42);
  transition: background 0.2s ease;
}

.side-card img {
  width: 112px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.side-card strong,
.side-card em {
  display: block;
}

.side-card strong {
  line-height: 1.35;
}

.side-card em {
  margin-top: 4px;
  color: var(--subtle);
  font-style: normal;
  font-size: 0.82rem;
}

.ranking-hero::after {
  content: "";
  position: absolute;
  inset: 76px 0 0 auto;
  width: min(42vw, 500px);
  height: 310px;
  border-radius: 28px;
  background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.78)), var(--hero-poster);
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  box-shadow: var(--shadow);
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 58px 122px 1fr 76px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
}

.ranking-item:hover {
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(30, 41, 59, 0.78);
}

.ranking-number {
  color: var(--accent-2);
  font-size: 1.35rem;
  font-weight: 950;
  text-align: center;
}

.ranking-item img {
  width: 122px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.ranking-main strong,
.ranking-main em {
  display: block;
}

.ranking-main strong {
  font-size: 1.08rem;
}

.ranking-main em,
.ranking-meta {
  color: var(--subtle);
  font-style: normal;
}

.ranking-meta {
  text-align: right;
  font-weight: 900;
}

.detail-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  border: 0;
  background: radial-gradient(circle at center, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.62));
  color: #fff;
  cursor: pointer;
}

.player-overlay span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111827;
  font-size: 1.9rem;
  box-shadow: 0 22px 48px rgba(245, 158, 11, 0.26);
}

.player-overlay strong {
  font-size: 1.02rem;
}

.player-shell.is-playing .player-overlay {
  display: none;
}

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.82);
  color: #fff;
  font-weight: 800;
}

.player-message.show {
  display: block;
}

.detail-copy {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.7);
}

.breadcrumb {
  display: flex;
  gap: 9px;
  color: var(--subtle);
  font-size: 0.9rem;
}

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

.detail-copy h1 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.detail-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.82);
}

.lead-text {
  margin: 20px 0;
  color: #e2e8f0;
  font-size: 1.08rem;
}

.detail-pills {
  margin-bottom: 24px;
}

.detail-copy h2 {
  margin-top: 26px;
  font-size: 1.45rem;
}

.detail-copy p {
  color: var(--muted);
}

.detail-copy blockquote {
  margin: 14px 0 0;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
  color: var(--muted);
}

.detail-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 92px;
}

.poster-panel,
.side-panel {
  padding: 18px;
}

.poster-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
}

.poster-panel h2,
.side-panel h2 {
  font-size: 1.35rem;
}

.related-section {
  padding-top: 42px;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.76);
}

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

.footer-inner p,
.footer-links a {
  color: var(--subtle);
}

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

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

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--subtle);
  text-align: center;
  font-size: 0.9rem;
}

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

  .split-section,
  .detail-page,
  .category-overview-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .ranking-panel,
  .detail-side {
    position: static;
  }

  .ranking-hero::after {
    opacity: 0.28;
  }
}

@media (max-width: 760px) {
  .top-nav {
    width: calc(100% - 24px);
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 16vh;
  }

  .hero-content h2 {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  .hero-search {
    width: calc(100% - 24px);
  }

  .hero-search div,
  .filter-bar label {
    flex-direction: column;
  }

  .hero-dots {
    right: 18px;
    bottom: 146px;
  }

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

  .page-section,
  .inner-hero,
  .detail-page {
    width: calc(100% - 24px);
  }

  .dark-band {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .card-body {
    padding: 13px;
  }

  .ranking-item {
    grid-template-columns: 42px 86px 1fr;
  }

  .ranking-meta {
    display: none;
  }

  .side-card {
    grid-template-columns: 92px 1fr;
  }

  .side-card img {
    width: 92px;
  }

  .detail-copy {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .movie-grid,
  .featured-grid,
  .small-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .inner-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
