:root {
  --sand-50: #fdfbf7;
  --sand-100: #f8f3e8;
  --sand-200: #f2e5cc;
  --sand-300: #e8d2a8;
  --desert-50: #fef8f0;
  --desert-100: #fdefd9;
  --desert-300: #f7c181;
  --desert-400: #f3a555;
  --desert-500: #ee7b29;
  --desert-600: #df5f1f;
  --stone-50: #faf9f7;
  --stone-100: #f1eee9;
  --stone-200: #dbd7cc;
  --stone-500: #82776b;
  --stone-600: #6f6458;
  --stone-700: #5f554a;
  --stone-800: #5d5449;
  --ink: #241f1a;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(68, 54, 38, 0.08);
  --shadow-md: 0 16px 34px rgba(68, 54, 38, 0.14);
  --shadow-xl: 0 30px 70px rgba(32, 23, 14, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--sand-50), var(--stone-50));
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(242, 229, 204, 0.9);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 72px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--stone-800);
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--desert-500), var(--desert-600));
  box-shadow: 0 10px 24px rgba(238, 123, 41, 0.32);
  letter-spacing: -0.04em;
}

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

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

.nav-link {
  color: var(--stone-700);
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.header-search,
.mobile-search,
.hero-search,
.page-search {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--sand-200);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-search input,
.mobile-search input,
.hero-search input,
.page-search input {
  width: 220px;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 16px;
  color: var(--stone-800);
  background: transparent;
}

.header-search button,
.mobile-search button,
.hero-search button,
.page-search button {
  border: 0;
  padding: 0 18px;
  color: var(--white);
  background: var(--desert-500);
  cursor: pointer;
  transition: background 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.page-search button:hover {
  background: var(--desert-600);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sand-100);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--stone-800);
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid var(--sand-200);
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-panel nav {
  display: grid;
  gap: 12px;
  padding: 14px 0;
}

.mobile-search input {
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(238, 123, 41, 0.28), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 42%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 42px;
  align-items: center;
  min-height: 70vh;
  padding: 96px 0;
}

.hero-copy {
  max-width: 720px;
  color: var(--white);
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--desert-300);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 16px 0 20px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-tags,
.detail-meta,
.movie-meta-line,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-tags span,
.detail-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--stone-700);
  background: var(--sand-100);
  font-size: 13px;
  font-weight: 700;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

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

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

.btn-primary {
  color: var(--white);
  background: var(--desert-500);
  box-shadow: 0 18px 36px rgba(238, 123, 41, 0.34);
}

.btn-primary:hover {
  background: var(--desert-600);
}

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

.hero-search {
  max-width: 560px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.hero-search input {
  width: 100%;
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}

.hero-panel > span {
  color: var(--desert-300);
  font-weight: 800;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-mini-card:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.18);
}

.hero-mini-card img {
  width: 74px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
}

.hero-mini-card strong,
.hero-mini-card em {
  display: block;
}

.hero-mini-card strong {
  line-height: 1.35;
}

.hero-mini-card em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-style: normal;
}

.hero-panel-link,
.text-link,
.section-action {
  color: var(--desert-600);
  font-weight: 800;
}

.hero-panel-link {
  color: var(--desert-300);
}

.feature-strip {
  transform: translateY(-34px);
  margin-bottom: -34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid div {
  padding: 22px;
  border: 1px solid var(--sand-200);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.feature-grid strong,
.feature-grid span {
  display: block;
}

.feature-grid strong {
  color: var(--stone-800);
  font-size: 20px;
}

.feature-grid span {
  margin-top: 4px;
  color: var(--stone-500);
}

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

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

.section-heading h2,
.page-hero h1,
.detail-copy h1,
.ranking-hero-copy h1,
.content-card h2 {
  margin: 6px 0 8px;
  color: var(--stone-800);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

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

.section-heading p,
.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--stone-500);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(242, 229, 204, 0.95);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: var(--sand-300);
  box-shadow: var(--shadow-md);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--stone-100);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.32s ease;
}

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

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

.poster-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--desert-500);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.movie-card:hover .poster-play {
  transform: scale(1);
}

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

.movie-meta-line {
  color: var(--stone-500);
  font-size: 12px;
  font-weight: 750;
}

.movie-meta-line span {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--sand-100);
}

.movie-card h2 {
  display: -webkit-box;
  min-height: 52px;
  margin: 10px 0 8px;
  overflow: hidden;
  color: var(--stone-800);
  font-size: 17px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card h2 a:hover {
  color: var(--desert-600);
}

.movie-card p {
  display: -webkit-box;
  min-height: 46px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--stone-500);
  font-size: 14px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card.compact .tag-row span:nth-child(n+3) {
  display: none;
}

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

.category-tile,
.category-overview-card,
.content-card,
.side-card,
.ranking-card {
  border: 1px solid var(--sand-200);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-tile {
  display: grid;
  gap: 8px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile strong {
  color: var(--stone-800);
  font-size: 22px;
}

.category-tile span {
  color: var(--stone-500);
}

.ranking-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding: 24px;
}

.rank-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 16px;
  background: var(--sand-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  transform: translateX(3px);
  background: var(--desert-50);
}

.rank-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--desert-500), var(--desert-600));
  font-weight: 900;
}

.rank-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--desert-500);
}

.rank-title {
  overflow: hidden;
  color: var(--stone-800);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-kind {
  color: var(--stone-500);
  font-size: 13px;
}

.page-hero {
  padding: 82px 0 54px;
}

.soft-hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(238, 123, 41, 0.14), transparent 28%),
    linear-gradient(180deg, var(--desert-50), var(--sand-50));
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.page-search {
  width: min(620px, 100%);
  margin-top: 24px;
}

.page-search input {
  width: 100%;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-preview-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.category-preview-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
}

.category-overview-card h2 {
  margin: 6px 0 8px;
  color: var(--stone-800);
  font-size: 26px;
}

.category-overview-card p {
  margin: 0 0 12px;
  color: var(--stone-500);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px;
  border: 1px solid var(--sand-200);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--sand-200);
  border-radius: 14px;
  outline: none;
  padding: 12px 14px;
  color: var(--stone-800);
  background: var(--white);
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--desert-500);
  box-shadow: 0 0 0 3px rgba(238, 123, 41, 0.13);
}

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

.ranking-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: #111;
}

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

.ranking-hero-overlay,
.detail-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(238, 123, 41, 0.25), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.56) 58%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 40%);
}

.ranking-hero-copy,
.detail-hero-inner {
  position: relative;
  color: var(--white);
}

.ranking-hero-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: 80px 0;
}

.ranking-hero-copy h1 {
  color: var(--white);
  font-size: clamp(42px, 7vw, 72px);
}

.ranking-hero-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.detail-hero-inner {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 84px 0;
}

.detail-poster img {
  width: 270px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.detail-copy h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
}

.detail-copy p {
  max-width: 820px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.detail-meta {
  margin-bottom: 14px;
}

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

.detail-content {
  display: grid;
  gap: 24px;
}

.player-card,
.content-card,
.side-card {
  overflow: hidden;
}

.player-card {
  border-radius: 28px;
  background: #111;
  box-shadow: var(--shadow-xl);
}

.player-box {
  position: relative;
  background: #000;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.44);
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-button-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  background: var(--desert-500);
  box-shadow: 0 18px 42px rgba(238, 123, 41, 0.38);
  font-size: 26px;
}

.player-overlay span:last-child {
  max-width: min(70%, 640px);
  text-align: center;
  font-size: 22px;
  font-weight: 800;
}

.content-card,
.side-card {
  padding: 26px;
}

.content-card h2 {
  font-size: 30px;
}

.content-card p {
  margin: 0;
  color: var(--stone-600);
  font-size: 17px;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.side-card h2 {
  margin: 0 0 16px;
  color: var(--stone-800);
}

.side-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.side-card dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: start;
}

.side-card dt {
  color: var(--stone-500);
}

.side-card dd {
  margin: 0;
  color: var(--stone-800);
  font-weight: 750;
}

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

.side-links a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--stone-800);
  background: var(--sand-50);
  font-weight: 750;
}

.side-links a:hover {
  color: var(--desert-600);
  background: var(--desert-50);
}

.site-footer {
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--stone-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 1fr 1fr;
  gap: 42px;
  padding: 52px 0;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--desert-300);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-panel {
    max-width: 620px;
  }

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

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

  .detail-sidebar {
    position: static;
  }

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

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

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

  .hero-section,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0 44px;
  }

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

  .feature-strip {
    transform: none;
    margin: 16px 0 0;
  }

  .feature-grid,
  .category-grid,
  .overview-grid,
  .ranking-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding: 48px 0;
  }

  .section-heading {
    display: block;
  }

  .section-action {
    display: inline-flex;
    margin-top: 12px;
  }

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

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

  .movie-card h2 {
    font-size: 15px;
  }

  .movie-card p {
    font-size: 13px;
  }

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

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .detail-hero,
  .ranking-hero {
    min-height: auto;
  }

  .detail-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0;
  }

  .detail-poster img {
    width: 200px;
  }

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

  .detail-copy p,
  .ranking-hero-copy p {
    font-size: 17px;
  }

  .ranking-hero-copy {
    min-height: auto;
    padding: 76px 0;
  }
}

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

  .hero-actions,
  .hero-tags,
  .detail-meta,
  .tag-row {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .rank-item {
    grid-template-columns: 42px 1fr;
  }

  .rank-kind {
    display: none;
  }
}
