:root {
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #f97316;
  --red: #ef4444;
  --slate: #0f172a;
  --slate-soft: #1e293b;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(15, 23, 42, 0.08);
  --panel: #ffffff;
  --bg: #fff7ed;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  --radius: 24px;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 48%, #fef3c7 100%);
}

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

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

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: linear-gradient(90deg, var(--amber), var(--orange), var(--amber-dark));
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 14px;
  color: var(--amber-dark);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(120, 53, 15, 0.2);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-4deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff7ed;
  transform: translateY(-1px);
}

.nav-link.muted {
  opacity: 0.9;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 8px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

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

.mobile-link {
  display: block;
  padding: 10px 12px;
  color: #ffffff;
  font-weight: 700;
  border-radius: 12px;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--slate);
}

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

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

.hero-bg,
.category-hero > img,
.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade,
.category-hero-shade,
.detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(245, 158, 11, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.62) 42%, rgba(15, 23, 42, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  max-width: 720px;
  color: #ffffff;
}

.hero-eyebrow,
.sub-hero span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.34);
  backdrop-filter: blur(12px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-copy h1,
.sub-hero h1,
.category-hero h1,
.detail-hero h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-summary {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

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

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

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #92400e;
  background: #fffbeb;
  font-size: 13px;
  font-weight: 800;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.32);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.btn.ghost.dark {
  color: var(--text);
  border-color: var(--line);
  background: #ffffff;
}

.hero-card {
  align-self: center;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  color: #ffffff;
}

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

.hero-card div {
  padding: 18px;
}

.hero-card span {
  display: block;
  color: #fbbf24;
  font-weight: 900;
  margin-bottom: 6px;
}

.hero-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.hero-card small {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.32);
  cursor: pointer;
  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.56);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.home-search-band {
  position: relative;
  z-index: 6;
  margin-top: -38px;
}

.search-band-inner {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-band-inner span {
  display: block;
  color: var(--amber-dark);
  font-weight: 900;
  margin-bottom: 4px;
}

.search-band-inner strong {
  font-size: 24px;
}

.search-band-form,
.filter-bar {
  display: flex;
  gap: 12px;
}

.search-band-form input,
.filter-bar input,
.filter-bar select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 16px;
  background: #ffffff;
  color: var(--text);
  outline: none;
}

.search-band-form input,
.filter-bar input {
  flex: 1;
}

.search-band-form input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.13);
}

.search-band-form button {
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  padding: 0 22px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  cursor: pointer;
  font-weight: 900;
}

.main-sections,
.list-section,
.overview-grid,
.prose-panel {
  padding-top: 64px;
  padding-bottom: 72px;
}

.content-section {
  margin-bottom: 72px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.section-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
  font-weight: 900;
}

.section-line {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.28), transparent);
}

.white-panel,
.rank-panel,
.prose-panel {
  padding: 34px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
}

.movie-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.46));
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.movie-meta-line span + span::before {
  content: "·";
  margin-right: 8px;
  color: #d1d5db;
}

.movie-card h3,
.rank-info h2 {
  margin: 12px 0 8px;
  font-size: 20px;
  line-height: 1.3;
}

.movie-card h3 a:hover,
.rank-info h2 a:hover,
.text-link:hover {
  color: var(--orange);
}

.movie-card p,
.category-card p,
.category-overview-card p,
.rank-info p,
.detail-card p,
.prose-panel p,
.sub-hero p,
.category-hero p,
.detail-hero p {
  color: var(--muted);
  line-height: 1.75;
}

.movie-card p {
  margin: 0 0 14px;
  min-height: 3.4em;
}

.tag-list.small span {
  min-height: auto;
  padding: 5px 9px;
  font-size: 12px;
  color: #6b4a00;
  background: #fef3c7;
}

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

.category-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 28px;
  padding: 22px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  box-shadow: var(--shadow);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.35s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(transparent 10%, rgba(15, 23, 42, 0.86));
}

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

.category-card span {
  font-size: 24px;
  font-weight: 900;
}

.category-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.rank-panel {
  color: #ffffff;
  background: linear-gradient(135deg, var(--slate-soft), var(--slate));
}

.rank-panel .section-heading h2 {
  color: #ffffff;
}

.rank-panel .section-line {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.38), transparent);
}

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

.mini-rank {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-rank span {
  grid-row: span 2;
  color: #fbbf24;
  font-size: 22px;
  font-weight: 900;
}

.mini-rank strong {
  color: #ffffff;
}

.mini-rank small {
  color: rgba(255, 255, 255, 0.64);
}

.panel-more {
  display: inline-flex;
  margin-top: 24px;
  color: #fbbf24;
  font-weight: 900;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding: 52px 0;
}

.site-footer h2,
.site-footer h3 {
  color: #ffffff;
  margin-top: 0;
}

.site-footer p {
  max-width: 620px;
  color: #94a3b8;
  line-height: 1.8;
}

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

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

.footer-bottom {
  padding: 20px;
  color: #94a3b8;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sub-page {
  min-height: 70vh;
}

.sub-hero,
.category-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--slate-soft), var(--slate));
}

.sub-hero {
  padding: 96px 0;
}

.sub-hero h1 {
  max-width: 820px;
}

.sub-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: center;
  padding: 22px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.category-overview-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.category-overview-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.category-overview-card h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--amber-dark);
  font-weight: 900;
}

.category-hero,
.detail-hero {
  height: 360px;
}

.category-hero .container,
.detail-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: #fbbf24;
}

.category-hero p,
.detail-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.filter-bar {
  align-items: center;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.filter-bar select {
  min-width: 140px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 74px 132px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.rank-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-size: 22px;
  font-weight: 900;
}

.rank-poster img {
  width: 132px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
}

.rank-info h2 {
  margin-top: 0;
  font-size: 26px;
}

.detail-hero {
  height: 430px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding-top: 44px;
  padding-bottom: 44px;
}

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

.player-shell,
.detail-card,
.side-card {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
  overflow: hidden;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  color: #ffffff;
  cursor: pointer;
  background:
    radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 36%),
    linear-gradient(rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.74));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-play-button {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.34);
  cursor: pointer;
}

.player-play-button span {
  margin-left: 5px;
  font-size: 34px;
}

.player-overlay strong {
  max-width: 80%;
  text-align: center;
  font-size: 26px;
}

.detail-card {
  padding: 28px;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-card p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
}

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

.poster-card .tag-list {
  padding: 18px;
}

.side-card {
  padding: 22px;
}

.poster-card {
  padding: 0;
}

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

.info-list div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
}

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

.info-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

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

.prose-panel {
  margin-top: 54px;
  margin-bottom: 72px;
  max-width: 960px;
}

.prose-panel h2 {
  margin-top: 0;
  font-size: 34px;
}

.page-actions {
  margin-top: 24px;
}

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

  .menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

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

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

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

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

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

  .brand {
    font-size: 20px;
  }

  .hero-carousel {
    height: 540px;
  }

  .hero-content {
    align-items: end;
    padding-bottom: 78px;
  }

  .hero-copy h1,
  .sub-hero h1,
  .category-hero h1,
  .detail-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .search-band-inner {
    grid-template-columns: 1fr;
  }

  .search-band-form,
  .filter-bar {
    flex-direction: column;
  }

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

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

  .movie-card h3 {
    font-size: 17px;
  }

  .movie-card p {
    min-height: auto;
    font-size: 14px;
  }

  .white-panel,
  .rank-panel,
  .prose-panel {
    padding: 20px;
    border-radius: 24px;
  }

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

  .section-line {
    display: none;
  }

  .category-grid,
  .rank-strip,
  .footer-grid,
  .detail-side {
    grid-template-columns: 1fr;
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 58px 92px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .rank-poster img {
    width: 92px;
  }

  .rank-info h2 {
    font-size: 19px;
  }

  .rank-info p {
    display: none;
  }

  .sub-hero {
    padding: 68px 0;
  }

  .category-hero,
  .detail-hero {
    height: 360px;
  }

  .detail-layout {
    padding-top: 24px;
  }
}

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

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

  .btn {
    width: 100%;
  }
}
