:root {
  --color-orange: #ea580c;
  --color-orange-dark: #c2410c;
  --color-amber: #f59e0b;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-900: #111827;
  --shadow-card: 0 10px 30px rgba(17, 24, 39, 0.08);
  --shadow-card-hover: 0 22px 44px rgba(17, 24, 39, 0.16);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-gray-900);
  background: var(--color-gray-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1 0 auto;
}

.container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 18px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-orange), var(--color-amber));
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.24);
}

.brand-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.brand-text {
  color: var(--color-orange);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-gray-700);
  font-size: 15px;
}

.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--color-orange);
  transition: transform 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
}

.header-search input,
.mobile-search input {
  width: 100%;
  border: 1px solid var(--color-gray-200);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--color-gray-700);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}

.header-search button,
.mobile-search button,
.filter-controls button,
.primary-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-orange), var(--color-amber));
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(234, 88, 12, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.filter-controls button:hover,
.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(234, 88, 12, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--color-gray-100);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-gray-700);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--color-gray-200);
  background: #ffffff;
}

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

.mobile-nav-inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.mobile-nav-link {
  padding: 10px 0;
  color: var(--color-gray-700);
  border-bottom: 1px solid var(--color-gray-100);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--color-orange);
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.hero-carousel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-orange), var(--color-amber));
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-image:
    linear-gradient(90deg, rgba(124, 45, 18, 0.92), rgba(234, 88, 12, 0.64), rgba(17, 24, 39, 0.38)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
    radial-gradient(circle at 75% 30%, rgba(245, 158, 11, 0.28), transparent 28%),
    rgba(0, 0, 0, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding-block: 82px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #fff7ed;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2.2vw, 24px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span,
.movie-badge,
.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 11px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

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

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  padding: 10px 18px;
  color: #ffffff;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.hero-poster {
  justify-self: end;
  width: min(100%, 360px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(17, 24, 39, 0.34);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.32);
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(17, 24, 39, 0.55);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.hero-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: #ffffff;
}

.stats-strip {
  background: #ffffff;
  box-shadow: 0 1px 18px rgba(17, 24, 39, 0.06);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 0;
}

.stats-inner div {
  display: grid;
  gap: 2px;
  text-align: center;
}

.stats-inner strong {
  color: var(--color-orange);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.stats-inner span {
  color: var(--color-gray-600);
  font-size: 14px;
}

.content-section {
  padding-block: 54px;
}

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

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.section-heading a,
.muted-text {
  color: var(--color-orange);
  font-weight: 800;
}

.muted-text {
  color: var(--color-gray-500);
  font-size: 14px;
}

.accent-bar {
  width: 5px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-orange);
}

.accent-red .accent-bar,
.accent-bar.accent-red {
  background: #ef4444;
}

.accent-blue .accent-bar,
.accent-bar.accent-blue {
  background: #3b82f6;
}

.accent-green .accent-bar,
.accent-bar.accent-green {
  background: #22c55e;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.movie-card-link {
  display: block;
  height: 100%;
}

.movie-cover {
  position: relative;
  height: 310px;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.compact-card .movie-cover {
  height: 250px;
}

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

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

.movie-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-orange);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.28);
}

.inline-badge,
.secondary-badge {
  position: static;
  display: inline-flex;
  margin: 0 8px 12px 0;
}

.secondary-badge {
  background: #2563eb;
}

.play-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.play-hover svg {
  width: 58px;
  height: 58px;
  fill: currentColor;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.movie-card:hover .play-hover {
  opacity: 1;
}

.movie-info {
  padding: 18px;
}

.movie-info h3 {
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--color-gray-900);
  font-size: 18px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-card .movie-info h3 {
  min-height: 48px;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-info p {
  min-height: 46px;
  margin: 0 0 14px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-gray-600);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta,
.rank-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--color-gray-500);
  font-size: 14px;
}

.movie-meta strong,
.rank-meta strong {
  color: var(--color-orange);
}

.category-band {
  padding-block: 58px;
  background: linear-gradient(135deg, #eff6ff, #f0fdfa);
}

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

.category-tile,
.category-overview-card a {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile img,
.category-overview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  transition: transform 0.35s ease;
}

.category-tile:hover img,
.category-overview-card a:hover img {
  transform: scale(1.07);
}

.category-tile::after,
.category-overview-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.08));
}

.category-tile > div,
.category-overview-card div,
.category-count,
.category-overview-card span {
  position: relative;
  z-index: 2;
}

.category-count,
.category-overview-card span {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-orange);
}

.category-tile h3,
.category-overview-card h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 22px;
}

.category-tile p,
.category-overview-card p,
.category-overview-card small {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.category-tile > div,
.category-overview-card div {
  padding: 20px;
}

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

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

.rank-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.rank-card-link {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 188px;
}

.rank-card figure {
  margin: 0;
  overflow: hidden;
}

.rank-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.rank-card span {
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 800;
}

.rank-card h3 {
  margin: 6px 0 8px;
  overflow: hidden;
  color: var(--color-gray-900);
  font-size: 20px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-card p {
  min-height: 44px;
  margin: 0 0 12px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-gray-600);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rank-meta em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
}

.page-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(135deg, var(--color-orange), var(--color-amber));
}

.small-hero {
  padding-block: 78px;
}

.small-hero h1 {
  font-size: clamp(36px, 6vw, 62px);
}

.filter-panel {
  margin-top: -34px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.filter-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.filter-heading h2 {
  margin: 0;
  font-size: 24px;
}

.filter-heading p {
  margin: 0;
  color: var(--color-gray-600);
}

.filter-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(140px, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.filter-controls label {
  display: grid;
  gap: 6px;
  color: var(--color-gray-600);
  font-size: 13px;
  font-weight: 700;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  color: var(--color-gray-700);
  background: #ffffff;
  outline: none;
}

.filter-controls button {
  min-height: 44px;
  white-space: nowrap;
}

.filter-count {
  margin: 14px 0 0;
  color: var(--color-gray-600);
  font-size: 14px;
}

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

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

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

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

.detail-page {
  padding-bottom: 44px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 28px;
  margin-bottom: 30px;
}

.player-panel,
.detail-info-card,
.detail-section {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

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

.detail-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--color-orange);
  box-shadow: 0 18px 45px rgba(234, 88, 12, 0.38);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.player-start:hover {
  background: var(--color-orange-dark);
  transform: translate(-50%, -50%) scale(1.05);
}

.player-start svg {
  width: 46px;
  height: 46px;
  margin-left: 5px;
  fill: currentColor;
}

.player-shell.is-playing .player-start {
  opacity: 0;
  pointer-events: none;
}

.player-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.64);
  font-size: 13px;
}

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

.detail-info-card {
  padding: 22px;
}

.detail-poster-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.detail-poster-row img {
  width: 130px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 35px rgba(17, 24, 39, 0.16);
}

.detail-poster-row h1 {
  margin: 0 0 10px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.18;
}

.detail-poster-row p {
  margin: 0;
  color: var(--color-gray-600);
}

.detail-list {
  margin: 22px 0 0;
  display: grid;
  gap: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--color-gray-200);
}

.detail-list dt {
  color: var(--color-gray-500);
  font-weight: 800;
}

.detail-list dd {
  margin: 0;
  color: var(--color-gray-900);
}

.detail-section {
  margin-bottom: 26px;
  padding: 26px;
}

.detail-section h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-section p,
.detail-section blockquote {
  margin: 0;
  color: var(--color-gray-700);
  font-size: 16px;
}

.review-section blockquote {
  border-left: 4px solid var(--color-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px;
  background: #fff7ed;
  font-style: italic;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--color-amber);
  font-weight: 900;
}

.rating-row strong {
  color: var(--color-orange);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--color-gray-700);
  background: var(--color-gray-100);
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.tag-cloud a:hover {
  color: var(--color-orange-dark);
  background: #ffedd5;
}

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

.site-footer {
  margin-top: 56px;
  color: #ffffff;
  background: var(--color-gray-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding-block: 46px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 19px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #d1d5db;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

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

.footer-bottom {
  padding: 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
}

.hidden-by-filter {
  display: none !important;
}

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

  .header-search {
    min-width: 220px;
  }

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

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

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

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

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

  .hero-content {
    grid-template-columns: 1fr;
    padding-block: 62px 76px;
  }

  .hero-poster {
    justify-self: start;
    width: 220px;
    border-width: 6px;
    border-radius: 22px;
  }

  .hero-arrow {
    display: none;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .three-columns,
  .four-columns,
  .six-columns,
  .category-grid,
  .category-overview-grid,
  .rank-grid,
  .rank-grid.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-cover,
  .compact-card .movie-cover {
    height: 230px;
  }

  .rank-card-link {
    grid-template-columns: 110px minmax(0, 1fr);
  }

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

  .filter-heading {
    display: block;
  }

  .filter-heading p {
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .brand-text {
    font-size: 19px;
  }

  .hero-carousel {
    min-height: 640px;
  }

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

  .hero-copy p,
  .page-hero p {
    font-size: 16px;
  }

  .stats-inner,
  .three-columns,
  .four-columns,
  .six-columns,
  .category-grid,
  .category-overview-grid,
  .rank-grid,
  .rank-grid.two-columns,
  .filter-controls {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading a,
  .section-heading .muted-text {
    display: inline-block;
    margin-top: 8px;
  }

  .movie-cover,
  .compact-card .movie-cover {
    height: 280px;
  }

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

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

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

  .detail-poster-row img {
    width: 170px;
  }

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