* {
  box-sizing: border-box;
}

:root {
  --bg: #fff7ed;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --soft: #fffbeb;
  --card: #ffffff;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --amber: #f59e0b;
  --shadow: 0 18px 48px rgba(124, 45, 18, 0.14);
  --shadow-soft: 0 12px 30px rgba(124, 45, 18, 0.10);
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.narrow-container {
  width: min(980px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 247, 237, 0.96), rgba(255, 251, 235, 0.96));
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(124, 45, 18, 0.10);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
  transition: transform 0.22s ease;
}

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

.brand-name {
  font-size: 1.28rem;
  color: #111827;
  white-space: nowrap;
}

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

.nav-link {
  padding: 9px 13px;
  border-radius: 14px;
  color: #4b5563;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.10);
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

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

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffedd5 0%, #fff7ed 44%, #fef3c7 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.35;
}

.glow-a {
  width: 260px;
  height: 260px;
  top: 44px;
  left: 6%;
  background: #fb923c;
}

.glow-b {
  width: 330px;
  height: 330px;
  right: 6%;
  bottom: -70px;
  background: #facc15;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: center;
}

.hero-slider {
  position: relative;
  min-height: 440px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  color: #9a3412;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(251, 146, 60, 0.14);
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 18px 0;
  color: #111827;
  font-size: clamp(2.35rem, 6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  max-width: 720px;
  color: #4b5563;
  font-size: 1.12rem;
}

.hero-tags,
.detail-tags,
.meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.hero-tags span,
.detail-tags span,
.meta-tags span {
  padding: 7px 11px;
  color: #7c2d12;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(251, 146, 60, 0.34);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.primary-btn,
.secondary-btn,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.30);
}

.secondary-btn {
  color: #374151;
  background: #fff;
  border: 1px solid #fed7aa;
}

.ghost-link {
  color: #9a3412;
  min-height: 44px;
  padding: 0;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.hero-poster,
.rank-hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-poster img,
.rank-hero-poster img {
  height: 380px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hero-poster:hover img,
.rank-hero-poster:hover img {
  transform: scale(1.06);
}

.hero-poster span,
.rank-hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(17, 24, 39, 0.74);
  border-radius: 999px;
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  left: 0;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-controls button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #7c2d12;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 22px rgba(124, 45, 18, 0.14);
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 7px;
}

.hero-dot {
  width: 10px !important;
  height: 10px !important;
  padding: 0;
  background: rgba(124, 45, 18, 0.24) !important;
}

.hero-dot.is-active {
  width: 28px !important;
  background: var(--orange) !important;
}

.hero-side {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(251, 146, 60, 0.28);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-side strong {
  color: #7c2d12;
}

.hero-side a {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-weight: 750;
}

.hero-side img {
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
}

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

.white-section {
  background: #fff;
}

.soft-section {
  background: linear-gradient(135deg, #f9fafb, #fff7ed);
}

.warm-section {
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

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

.section-heading h2,
.detail-content h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section-more {
  color: var(--orange-dark);
  font-weight: 850;
  white-space: nowrap;
}

.section-more span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.section-more:hover span {
  transform: translateX(4px);
}

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

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card a:hover {
  border-color: #fed7aa;
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #fed7aa;
}

.library-grid .card-cover,
.compact-grid .card-cover {
  aspect-ratio: 4 / 3;
}

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

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

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.56));
  opacity: 0;
  transition: opacity 0.24s ease;
}

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

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(249, 115, 22, 0.92);
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.type-badge,
.rank-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(249, 115, 22, 0.92);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.rank-badge {
  left: 12px;
  right: auto;
  background: rgba(17, 24, 39, 0.78);
}

.card-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.card-body strong {
  color: #111827;
  font-size: 1.04rem;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card a:hover strong {
  color: var(--orange-dark);
}

.card-body em {
  min-height: 46px;
  color: #6b7280;
  font-style: normal;
  font-size: 0.92rem;
}

.card-meta {
  color: #9ca3af;
  font-size: 0.86rem;
  font-weight: 700;
}

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

.category-card,
.category-overview a {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 220px;
  overflow: hidden;
  padding: 24px;
  color: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover,
.category-overview a:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-card img {
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.36;
  transform: rotate(-8deg);
}

.category-icon {
  font-size: 2.7rem;
}

.category-card strong,
.category-overview h2 {
  margin: 0;
  font-size: 1.25rem;
}

.category-card em,
.category-overview p {
  position: relative;
  z-index: 1;
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-size: 0.94rem;
}

.orange,
.category-card.orange,
.category-overview.orange a {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.amber,
.category-card.amber,
.category-overview.amber a {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.green,
.category-card.green,
.category-overview.green a {
  background: linear-gradient(135deg, #34d399, #059669);
}

.red,
.category-card.red,
.category-overview.red a {
  background: linear-gradient(135deg, #fb7185, #ef4444);
}

.violet,
.category-card.violet,
.category-overview.violet a {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.yellow,
.category-card.yellow,
.category-overview.yellow a {
  background: linear-gradient(135deg, #facc15, #f59e0b);
}

.pink,
.category-card.pink,
.category-overview.pink a {
  background: linear-gradient(135deg, #f472b6, #db2777);
}

.blue,
.category-card.blue,
.category-overview.blue a {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.category-overview a {
  min-height: 280px;
}

.category-overview strong {
  width: fit-content;
  padding: 9px 15px;
  color: #7c2d12;
  background: #fff;
  border-radius: 999px;
}

.mini-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: auto;
}

.mini-covers img {
  height: 78px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  background: linear-gradient(135deg, #ffedd5, #fffbeb 48%, #fef3c7);
}

.slim-hero {
  text-align: center;
}

.slim-hero p {
  margin: 0 auto;
}

.page-hero-grid,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 46px;
  align-items: center;
}

.page-hero-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-hero-covers img {
  height: 136px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.search-box {
  position: relative;
}

.search-box span {
  position: absolute;
  left: 16px;
  top: 50%;
  color: #9ca3af;
  transform: translateY(-50%);
}

.search-box input,
.filter-selects select {
  width: 100%;
  height: 48px;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  outline: 0;
  background: #fff;
}

.search-box input {
  padding: 0 16px 0 44px;
}

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

.filter-selects select {
  min-width: 132px;
  padding: 0 13px;
  color: #4b5563;
}

.search-box input:focus,
.filter-selects select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

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

.ranking-row a {
  display: grid;
  grid-template-columns: 56px 112px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-row a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.ranking-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-radius: 999px;
  font-weight: 900;
}

.ranking-row img {
  height: 76px;
  object-fit: cover;
  border-radius: 16px;
}

.ranking-info {
  display: grid;
  gap: 4px;
}

.ranking-info strong {
  color: #111827;
  font-size: 1.05rem;
}

.ranking-info em {
  color: #6b7280;
  font-style: normal;
}

.ranking-info small {
  color: #9ca3af;
}

.ranking-action {
  padding: 9px 14px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-weight: 800;
}

.detail-hero {
  background: radial-gradient(circle at 18% 10%, rgba(251, 146, 60, 0.34), transparent 30%), linear-gradient(135deg, #111827, #7c2d12 58%, #f59e0b);
}

.detail-copy h1,
.detail-copy p,
.detail-copy .breadcrumb,
.detail-meta span {
  color: #fff;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30);
}

.detail-poster img {
  height: 460px;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

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

.detail-meta span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-weight: 760;
}

.player-section {
  background: #0f172a;
  padding: 54px 0;
}

.video-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.movie-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  cursor: pointer;
}

.play-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #fff;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.20), rgba(2, 6, 23, 0.70));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-cover span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  padding-left: 6px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.38);
  font-size: 2.3rem;
}

.play-cover strong {
  font-size: 1.2rem;
}

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

.detail-content article {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.detail-content p {
  color: #4b5563;
  font-size: 1.05rem;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #1f2937, #111827);
}

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

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

.site-footer a {
  display: block;
  margin: 7px 0;
  color: #d1d5db;
  transition: color 0.18s ease;
}

.site-footer a:hover {
  color: #fb923c;
}

.footer-brand {
  color: #fff !important;
  font-size: 1.25rem;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: #9ca3af;
}

[data-card].is-hidden {
  display: none;
}

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

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

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 38px 0 92px;
  }

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

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

  .hero-poster img {
    height: 300px;
  }

  .hero-slider {
    min-height: 760px;
  }

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

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

@media (max-width: 760px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .hero {
    min-height: auto;
  }

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

  .hero-slider {
    min-height: 700px;
  }

  .hero h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 2.35rem;
  }

  .hero-side {
    display: none;
  }

  .hero-controls {
    bottom: 28px;
  }

  .section-heading,
  .filter-panel,
  .page-hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .filter-selects {
    flex-direction: column;
  }

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

  .card-body {
    padding: 14px;
  }

  .card-body em {
    display: none;
  }

  .page-hero-covers {
    grid-template-columns: repeat(2, 1fr);
  }

  .ranking-row a {
    grid-template-columns: 42px 82px 1fr;
  }

  .ranking-action {
    display: none;
  }

  .detail-poster img {
    height: 340px;
  }

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

@media (max-width: 460px) {
  .movie-grid,
  .library-grid,
  .feature-grid,
  .compact-grid,
  .rank-grid,
  .category-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 660px;
  }
}
