:root {
  --lava-50: #fff7ed;
  --lava-100: #ffedd5;
  --lava-200: #fed7aa;
  --lava-400: #fb923c;
  --lava-500: #f97316;
  --lava-600: #ea580c;
  --lava-700: #c2410c;
  --ember-50: #fef3c7;
  --ember-500: #d97706;
  --volcanic-50: #fafafa;
  --volcanic-100: #f4f4f5;
  --volcanic-200: #e4e4e7;
  --volcanic-500: #71717a;
  --volcanic-600: #52525b;
  --volcanic-700: #3f3f46;
  --volcanic-800: #27272a;
  --volcanic-900: #18181b;
  --volcanic-950: #09090b;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-heavy: 0 30px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--volcanic-900);
  background: linear-gradient(180deg, var(--volcanic-50), var(--volcanic-100));
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  background: linear-gradient(135deg, var(--volcanic-800), var(--lava-600));
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
}

.nav-shell {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--lava-500), var(--ember-500));
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.45);
}

.brand-text,
.footer-brand {
  font-size: clamp(20px, 2vw, 30px);
  background: linear-gradient(90deg, var(--lava-600), var(--lava-500), var(--ember-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: var(--volcanic-800);
  font-weight: 650;
  transition: color 0.25s ease;
}

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

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

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

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
}

.menu-button span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--volcanic-800);
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  padding: 0 16px 16px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.mobile-link {
  padding: 12px 14px;
  color: var(--volcanic-700);
  border-radius: 12px;
  font-weight: 700;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--lava-700);
  background: var(--lava-50);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--volcanic-950);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(249, 115, 22, 0.28), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  height: 88vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 112px;
}

.hero-copy {
  width: min(760px, 100%);
  color: #fff;
  animation: fadeUp 0.8s ease both;
}

.hero-kicker,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--lava-400);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero p,
.page-hero p {
  max-width: 760px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.detail-tags,
.tag-row,
.chip-row,
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

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

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

.btn-primary {
  color: #fff;
  background: var(--lava-600);
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--lava-700);
  box-shadow: 0 18px 36px rgba(234, 88, 12, 0.36);
}

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

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.btn-text {
  min-height: auto;
  padding: 8px 0;
  color: var(--lava-100);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  font-size: 38px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(0, 0, 0, 0.54);
}

.hero-arrow.prev {
  left: 20px;
  transform: translateY(-50%);
}

.hero-arrow.next {
  right: 20px;
  transform: translateY(-50%);
}

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

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

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

.hero-search {
  position: absolute;
  left: 50%;
  bottom: 86px;
  z-index: 4;
  width: min(560px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hero-search input,
.filter-bar input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--volcanic-900);
  background: rgba(255, 255, 255, 0.96);
}

.hero-search button {
  border: 0;
  border-radius: 12px;
  padding: 0 20px;
  color: #fff;
  background: var(--lava-600);
  font-weight: 800;
}

.content-section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.white-section {
  background: #fff;
}

.soft-section {
  background: linear-gradient(180deg, var(--volcanic-50), #fff);
}

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

.section-heading h2,
.volcanic-band h2,
.detail-side h2,
.article-block h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  background: linear-gradient(90deg, var(--lava-600), var(--lava-500), var(--ember-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--volcanic-600);
  font-size: 18px;
}

.section-more {
  color: var(--lava-700);
  font-weight: 800;
  white-space: nowrap;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(228, 228, 231, 0.76);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.movie-card.large .card-cover {
  height: 380px;
}

.movie-card.medium .card-cover,
.movie-card .card-cover {
  height: 300px;
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--volcanic-800), var(--lava-600));
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.3s ease;
}

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

.cover-gradient {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.12));
  transition: opacity 0.3s ease;
}

.movie-card:hover .cover-gradient {
  opacity: 1;
}

.play-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--lava-600);
  box-shadow: 0 16px 36px rgba(234, 88, 12, 0.38);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lava-600), var(--ember-500));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.card-body {
  padding: 18px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 8px;
  color: var(--volcanic-900);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.28;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.25s ease;
}

.card-title:hover {
  color: var(--lava-600);
}

.card-desc {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--volcanic-600);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--volcanic-500);
  font-size: 13px;
}

.card-meta span,
.tag-row span {
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--volcanic-100);
}

.tag-row {
  margin-top: 10px;
}

.horizontal {
  display: grid;
  grid-template-columns: 150px 1fr;
}

.horizontal .card-cover {
  height: 100%;
  min-height: 190px;
}

.horizontal .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rail-wrap {
  position: relative;
}

.movie-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.movie-rail::-webkit-scrollbar {
  display: none;
}

.rail-item {
  width: 296px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.rail-button {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--volcanic-800);
  font-size: 32px;
}

.rail-button.left {
  left: -12px;
}

.rail-button.right {
  right: -12px;
}

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

.category-tile,
.category-panel {
  padding: 24px;
  border: 1px solid rgba(254, 215, 170, 0.78);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, var(--lava-50));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.category-tile span {
  color: var(--lava-600);
  font-weight: 800;
}

.category-tile strong,
.category-panel-title {
  display: block;
  margin: 10px 0;
  color: var(--volcanic-900);
  font-size: 22px;
  font-weight: 850;
}

.category-tile p,
.category-panel p {
  margin: 0;
  color: var(--volcanic-600);
}

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

.category-panel-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-panel-links a {
  color: var(--lava-700);
  font-weight: 700;
}

.volcanic-band {
  color: #fff;
  background: linear-gradient(135deg, var(--volcanic-900), var(--volcanic-950));
}

.volcanic-band h2 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.volcanic-band p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, transform 0.25s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.14);
}

.rank-row span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--lava-600);
  font-weight: 900;
}

.rank-row em {
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  white-space: nowrap;
}

.page-hero,
.detail-top {
  position: relative;
  padding: 136px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 30%, rgba(249, 115, 22, 0.28), transparent 34%),
    linear-gradient(135deg, var(--volcanic-900), var(--volcanic-950));
}

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

.chip-row {
  margin-top: 24px;
}

.chip-link,
.filter-chips button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 750;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.chip-link:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--lava-600);
}

.filter-bar {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.filter-bar input {
  border: 1px solid var(--volcanic-200);
  background: var(--volcanic-50);
}

.filter-chips button {
  border-color: var(--volcanic-200);
  color: var(--volcanic-700);
  background: #fff;
}

.filter-chips button.active,
.filter-chips button:hover {
  color: #fff;
  background: var(--lava-600);
  border-color: var(--lava-600);
}

.empty-tip {
  display: none;
  margin: 34px 0 0;
  color: var(--volcanic-600);
  font-weight: 700;
  text-align: center;
}

.ranking-table {
  display: grid;
  gap: 10px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 70px minmax(160px, 1fr) 160px 100px 100px 90px;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--volcanic-200);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.ranking-number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--lava-600), var(--ember-500));
  font-weight: 900;
}

.ranking-title {
  color: var(--volcanic-900);
  font-weight: 850;
}

.ranking-play {
  color: var(--lava-700);
  font-weight: 850;
}

.detail-top {
  padding: 108px 0 34px;
}

.detail-top .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
}

.breadcrumb:hover {
  color: #fff;
}

.detail-section {
  padding: 44px 0 72px;
  background: #fff;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: var(--shadow-heavy);
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.55));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-start span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lava-600);
  box-shadow: 0 18px 46px rgba(234, 88, 12, 0.44);
  font-size: 34px;
}

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

.player-state {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.detail-copy {
  padding-top: 34px;
}

.detail-copy h1 {
  color: var(--volcanic-900);
  font-size: clamp(34px, 5vw, 58px);
}

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--lava-700);
  background: var(--lava-50);
  font-weight: 800;
}

.lead-text {
  margin: 0 0 28px;
  color: var(--volcanic-700);
  font-size: 20px;
}

.article-block {
  margin-top: 28px;
}

.article-block h2,
.detail-side h2 {
  font-size: 28px;
}

.article-block p {
  margin: 0;
  color: var(--volcanic-700);
  font-size: 18px;
}

.highlight-block {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--lava-50), var(--ember-50));
}

.detail-tags span {
  color: var(--lava-700);
  border-color: var(--lava-200);
  background: #fff;
}

.detail-side {
  position: sticky;
  top: 98px;
}

.related-list {
  display: grid;
  gap: 16px;
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--volcanic-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}

.footer-grid p {
  max-width: 620px;
  margin: 14px 0 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .movie-grid,
  .latest-grid,
  .compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .detail-side {
    position: static;
  }

  .ranking-item {
    grid-template-columns: 52px minmax(160px, 1fr) 90px;
  }

  .ranking-item span:nth-of-type(1),
  .ranking-item span:nth-of-type(3) {
    display: none;
  }
}

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

  .menu-button {
    display: block;
  }

  .site-header.is-open .mobile-panel {
    display: block;
  }

  .hero,
  .hero-content {
    min-height: 82vh;
    height: 82vh;
  }

  .hero-content {
    padding-bottom: 148px;
  }

  .hero-search {
    bottom: 72px;
  }

  .hero-arrow {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-more {
    display: inline-flex;
    margin-top: 14px;
  }

  .movie-grid,
  .featured-grid,
  .latest-grid,
  .compact,
  .category-grid,
  .category-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-card.large .card-cover,
  .movie-card.medium .card-cover,
  .movie-card .card-cover {
    height: 240px;
  }

  .horizontal {
    grid-template-columns: 116px 1fr;
  }

  .horizontal .card-cover {
    min-height: 160px;
  }
}

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

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

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

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost,
  .btn-text {
    width: 100%;
  }

  .movie-grid,
  .featured-grid,
  .latest-grid,
  .compact,
  .category-grid,
  .category-panel-grid {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 38px 1fr;
  }

  .rank-row em {
    grid-column: 2;
  }

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

  .ranking-item span,
  .ranking-play {
    display: none;
  }

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