:root {
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-100: #ffedd5;
  --orange-50: #fff7ed;
  --gray-950: #111827;
  --gray-900: #1f2937;
  --gray-800: #374151;
  --gray-700: #4b5563;
  --gray-600: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.18);
  --radius-lg: 18px;
  --radius-md: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
  color: var(--gray-900);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  background: linear-gradient(135deg, #1f2937, #f97316);
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.28);
}

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

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

.brand {
  font-size: 20px;
  white-space: nowrap;
}

.brand-mark,
.footer-logo span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nav-link {
  font-size: 15px;
  font-weight: 650;
  opacity: 0.95;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #ffedd5;
  opacity: 1;
}

.nav-search,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search input,
.mobile-search input {
  width: 190px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  padding: 0 42px 0 16px;
  outline: none;
}

.nav-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.nav-search button {
  position: absolute;
  right: 10px;
  color: var(--white);
  font-size: 18px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.mobile-menu {
  display: none;
  padding: 14px 16px 18px;
  background: #c2410c;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-menu.open {
  display: block;
}

.mobile-search {
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-search input {
  flex: 1;
  width: auto;
}

.mobile-search button {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.mobile-link {
  display: block;
  padding: 10px 2px;
  font-weight: 650;
}

.hero-carousel {
  position: relative;
  height: min(600px, calc(100vh - 64px));
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--gray-950), var(--gray-800));
}

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

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

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.68) 44%, rgba(17, 24, 39, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.74), rgba(17, 24, 39, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
  padding-bottom: 46px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.22);
  color: #fed7aa;
  font-size: 14px;
  font-weight: 750;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.24);
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.hero-content p {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.7;
}

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

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

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

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

.primary-btn {
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(234, 88, 12, 0.36);
}

.primary-btn:hover,
.ghost-btn:hover,
.movie-card:hover,
.category-card:hover,
.category-overview-card:hover,
.ranking-row:hover,
.rank-card:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.ghost-btn.light {
  color: var(--orange-600);
  background: var(--white);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

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

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

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

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

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

.hero-category-strip {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 70px;
  width: min(1180px, calc(100% - 32px));
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  overflow-x: auto;
  padding-bottom: 3px;
}

.hero-category-strip a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.content-section {
  margin-top: 56px;
}

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

.section-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--gray-950);
}

.section-head p {
  margin-top: 8px;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-link {
  flex: 0 0 auto;
  color: var(--orange-600);
  font-weight: 800;
}

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  box-shadow: var(--shadow-lg);
}

.poster-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, var(--gray-900), var(--orange-600));
}

.movie-card.horizontal .poster-wrap {
  aspect-ratio: 16 / 9;
}

.poster-wrap img,
.category-card img,
.category-overview-card img,
.rank-card img,
.ranking-row img,
.poster-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.score-badge,
.type-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.score-badge {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
}

.type-badge {
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  color: #9a3412;
  background: rgba(255, 237, 213, 0.92);
}

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

.movie-card-body strong {
  color: var(--gray-950);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 850;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.movie-desc {
  min-height: 43px;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-tags span {
  color: var(--orange-700);
  background: var(--orange-50);
}

.movie-meta {
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 650;
}

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

.category-card,
.category-overview-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card img {
  height: 138px;
}

.category-card span,
.category-overview-body {
  display: block;
  padding: 16px;
}

.category-card strong,
.category-overview-body strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-950);
  font-size: 18px;
  font-weight: 850;
}

.category-card em,
.category-overview-body em {
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.6;
  font-style: normal;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.side-panel,
.detail-card,
.poster-panel,
.search-panel {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.side-panel {
  padding: 22px;
}

.side-panel h2 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 900;
}

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

.rank-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-radius: 14px;
  padding: 9px;
  background: var(--gray-50);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-card:hover {
  background: var(--orange-50);
}

.rank-card img {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}

.rank-info {
  min-width: 0;
  display: grid;
  gap: 5px;
}

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

.rank-info strong {
  font-weight: 850;
  color: var(--gray-950);
}

.rank-info em {
  color: var(--gray-600);
  font-size: 13px;
  font-style: normal;
}

.rank-info span {
  color: var(--orange-600);
  font-size: 12px;
  font-weight: 800;
}

.page-main,
.detail-main {
  padding-bottom: 10px;
}

.page-hero {
  margin-top: 34px;
  min-height: 280px;
  display: flex;
  align-items: center;
  border-radius: 28px;
  padding: 44px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 146, 60, 0.42), transparent 34%),
    linear-gradient(135deg, #111827, #7c2d12 58%, #f97316);
  box-shadow: var(--shadow-lg);
}

.page-hero.small-hero {
  min-height: 230px;
}

.page-hero p {
  margin-bottom: 12px;
  color: #fed7aa;
  font-weight: 800;
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.page-hero span {
  display: block;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.inline-actions {
  margin-top: 22px;
}

.category-overview-card {
  display: block;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 150px;
  overflow: hidden;
}

.category-thumbs img {
  min-width: 0;
}

.category-overview-body span {
  display: inline-flex;
  margin-top: 12px;
  color: var(--orange-600);
  font-weight: 800;
}

.toolbar,
.search-panel {
  margin-bottom: 22px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.local-filter,
#site-search-input {
  flex: 1 1 280px;
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  padding: 0 18px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

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

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-filters button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--orange-600);
  background: var(--orange-50);
  font-weight: 750;
}

.sticky-panel {
  position: sticky;
  top: 88px;
}

.ranking-layout {
  max-width: 980px;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 50px 86px minmax(0, 1fr) 88px;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-num {
  color: var(--orange-600);
  font-size: 24px;
  font-weight: 950;
  text-align: center;
}

.ranking-row img {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}

.ranking-main {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.ranking-main strong {
  font-size: 18px;
  font-weight: 900;
  color: var(--gray-950);
}

.ranking-main em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--gray-600);
  font-size: 13px;
  font-style: normal;
}

.ranking-meta {
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.search-grid .movie-card.hidden,
.card-grid .movie-card.hidden {
  display: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
  margin-top: 30px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--orange-600);
  font-weight: 750;
}

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

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

.video-cta {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  font-size: 30px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-shell.playing .video-cta {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

.detail-card {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.detail-tags span {
  color: var(--orange-600);
  background: var(--orange-50);
}

.detail-card h1 {
  margin-top: 16px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.04em;
}

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

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-size: 13px;
  font-weight: 750;
}

.lead-text {
  color: var(--gray-800);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 650;
}

.detail-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
}

.detail-card p {
  color: var(--gray-700);
  line-height: 1.95;
}

.detail-nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.detail-nav-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--orange-600);
  background: var(--orange-50);
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-side {
  display: grid;
  gap: 20px;
}

.poster-panel {
  overflow: hidden;
  padding-bottom: 20px;
}

.poster-panel img {
  aspect-ratio: 2 / 3;
}

.poster-panel h2,
.poster-panel p,
.poster-panel .primary-btn {
  margin-left: 18px;
  margin-right: 18px;
}

.poster-panel h2 {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 950;
}

.poster-panel p {
  margin-top: 8px;
  margin-bottom: 16px;
  color: var(--gray-600);
}

.primary-btn.wide {
  width: calc(100% - 36px);
}

.site-footer {
  margin-top: 70px;
  color: #d1d5db;
  background: var(--gray-950);
}

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

.footer-logo {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 20px;
}

.footer-brand p {
  max-width: 440px;
  color: #d1d5db;
  line-height: 1.75;
}

.footer-col {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-col h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
}

.footer-col a:hover {
  color: var(--orange-500);
}

.footer-copy {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-align: center;
  font-size: 13px;
}

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

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

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

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

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

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .brand-text {
    display: none;
  }

  .hero-carousel {
    height: 560px;
    min-height: 520px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 128px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-category-strip {
    bottom: 74px;
  }

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

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

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

  .page-hero {
    padding: 28px;
    border-radius: 22px;
  }

  .ranking-row {
    grid-template-columns: 40px 70px minmax(0, 1fr);
  }

  .ranking-meta {
    display: none;
  }

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

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

@media (max-width: 460px) {
  .container,
  .nav-inner,
  .hero-content,
  .footer-inner,
  .footer-copy {
    width: min(100% - 22px, 1180px);
  }

  .card-grid,
  .card-grid.compact,
  .large-grid {
    grid-template-columns: 1fr;
  }

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

  .poster-wrap {
    height: 100%;
    aspect-ratio: auto;
  }

  .movie-desc {
    -webkit-line-clamp: 3;
  }
}
