:root {
  --peach-50: #fff5f0;
  --peach-100: #fff0ee;
  --peach-200: #ffe5d9;
  --peach-300: #ffa777;
  --peach-400: #ff9155;
  --peach-500: #ff7b44;
  --peach-600: #ff6450;
  --ink-950: #19120f;
  --ink-800: #392c27;
  --ink-600: #6f5e55;
  --ink-400: #a99990;
  --paper: #ffffff;
  --line: rgba(57, 44, 39, 0.12);
  --shadow: 0 22px 60px rgba(59, 36, 24, 0.12);
  --soft-shadow: 0 12px 32px rgba(59, 36, 24, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-950);
  background:
    radial-gradient(circle at 6% 2%, rgba(255, 145, 85, 0.24), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(255, 100, 80, 0.16), transparent 28%),
    linear-gradient(135deg, var(--peach-50), #ffffff 50%, var(--peach-100));
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 123, 68, 0.16);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--peach-600), var(--peach-400));
  box-shadow: 0 12px 26px rgba(255, 100, 80, 0.32);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.desktop-nav a,
.mobile-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-600);
  font-weight: 700;
  transition: 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: var(--peach-600);
  background: rgba(255, 123, 68, 0.1);
}

.top-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 280px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 123, 68, 0.18);
  box-shadow: 0 8px 22px rgba(59, 36, 24, 0.05);
}

.top-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 10px;
  color: var(--ink-800);
}

.top-search button,
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search button,
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--peach-600), var(--peach-400));
  box-shadow: 0 14px 30px rgba(255, 100, 80, 0.28);
}

.btn.soft {
  color: var(--peach-600);
  background: rgba(255, 123, 68, 0.12);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn.ghost-light {
  color: var(--ink-800);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 123, 68, 0.18);
}

.btn:hover,
.top-search button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--peach-600);
  background: rgba(255, 123, 68, 0.1);
  font-weight: 800;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

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

.mobile-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.hero-carousel {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  height: clamp(520px, 72vh, 760px);
  margin: 28px auto 0;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--ink-950), var(--peach-600));
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 18, 15, 0.94), rgba(25, 18, 15, 0.62), rgba(25, 18, 15, 0.18)),
    linear-gradient(0deg, rgba(25, 18, 15, 0.82), transparent 56%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 360px;
  align-items: center;
  gap: 48px;
  padding: clamp(28px, 6vw, 72px);
}

.hero-copy {
  color: #fff;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--peach-500);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

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

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(2deg);
  transition: transform 0.25s ease;
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.12);
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-6px);
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--peach-600);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  font-size: 30px;
}

.hero-dots {
  position: absolute;
  left: clamp(28px, 6vw, 72px);
  bottom: 30px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.42);
  transition: 0.2s ease;
}

.hero-dots button.is-active {
  width: 56px;
  background: #fff;
}

.section-wrap,
.home-intro,
.page-hero,
.detail-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto;
}

.home-intro,
.page-hero {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 123, 68, 0.16);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.home-intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.intro-copy h1,
.page-hero h1,
.detail-content h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.intro-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-600);
  line-height: 1.8;
  font-size: 17px;
}

.intro-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.05em;
}

.section-head a {
  color: var(--peach-600);
  font-weight: 900;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 238, 0.92));
  border: 1px solid rgba(255, 123, 68, 0.16);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card span,
.category-main-link span {
  color: var(--peach-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.category-card strong,
.category-main-link h2 {
  display: block;
  margin: 12px 0 10px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.category-card em,
.category-main-link p {
  color: var(--ink-600);
  font-style: normal;
  line-height: 1.7;
}

.category-hot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-hot-links a {
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--peach-600);
  background: rgba(255, 123, 68, 0.1);
  font-weight: 800;
  font-size: 13px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 123, 68, 0.12);
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--peach-100), var(--peach-300));
}

.poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 18, 15, 0.62), transparent 52%);
}

.card-badge,
.card-play {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-badge {
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(255, 123, 68, 0.9);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.card-play {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--peach-600);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

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

.movie-card-meta,
.movie-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-400);
  font-size: 13px;
  font-weight: 700;
}

.movie-card-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: rgba(111, 94, 85, 0.42);
}

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.movie-card h3 a:hover {
  color: var(--peach-600);
}

.movie-card p {
  margin: 0;
  color: var(--ink-600);
  line-height: 1.65;
  min-height: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-foot {
  justify-content: space-between;
  margin-top: 14px;
  color: var(--peach-600);
}

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

.compact-card h3 {
  font-size: 16px;
}

.rank-panel {
  position: sticky;
  top: 96px;
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 123, 68, 0.14);
  box-shadow: var(--soft-shadow);
}

.compact-head {
  margin-bottom: 12px;
}

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

.rank-item,
.rank-row {
  display: grid;
  grid-template-columns: 42px 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 245, 240, 0.72);
  border: 1px solid rgba(255, 123, 68, 0.1);
  transition: 0.2s ease;
}

.rank-item:hover,
.rank-row:hover {
  transform: translateX(4px);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.rank-num,
.rank-large {
  color: var(--peach-600);
  font-weight: 950;
  font-size: 18px;
}

.rank-item img,
.rank-row img {
  width: 58px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--peach-200);
}

.rank-copy,
.rank-row-copy {
  min-width: 0;
}

.rank-copy strong,
.rank-row-copy strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-copy em,
.rank-row-copy em,
.rank-row-copy small {
  display: block;
  margin-top: 4px;
  color: var(--ink-600);
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}

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

.rank-row {
  grid-template-columns: 56px 80px minmax(0, 1fr) 54px;
  padding: 14px;
}

.rank-row img {
  width: 80px;
  height: 108px;
}

.rank-row b {
  justify-self: end;
  color: var(--peach-600);
  font-size: 22px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 123, 68, 0.14);
  box-shadow: var(--soft-shadow);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(255, 123, 68, 0.18);
  outline: 0;
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--ink-800);
  background: #fff;
}

.empty-state {
  display: none;
  margin-top: 22px;
  padding: 28px;
  text-align: center;
  border-radius: 22px;
  color: var(--ink-600);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 123, 68, 0.14);
}

.empty-state.is-visible {
  display: block;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin: 24px 0;
  color: var(--ink-600);
  font-weight: 800;
}

.breadcrumb a {
  color: var(--peach-600);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 420px;
  background: #090605;
  box-shadow: var(--shadow);
}

.movie-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(255, 123, 68, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.68));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.big-play {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--peach-600);
  background: rgba(255, 255, 255, 0.94);
  font-size: 34px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.player-overlay strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.detail-side {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 123, 68, 0.14);
  box-shadow: var(--soft-shadow);
}

.detail-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--peach-200);
}

.detail-score {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
}

.detail-score strong {
  color: var(--peach-600);
  font-size: 34px;
  letter-spacing: -0.05em;
}

.detail-score span {
  color: var(--ink-600);
  font-weight: 800;
}

.detail-content {
  margin-top: 26px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 123, 68, 0.14);
  box-shadow: var(--soft-shadow);
}

.detail-one-line {
  margin: 18px 0 0;
  color: var(--ink-600);
  font-size: 19px;
  line-height: 1.8;
}

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

.detail-meta-grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 245, 240, 0.86);
  border: 1px solid rgba(255, 123, 68, 0.1);
}

.detail-meta-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-400);
  font-weight: 800;
  font-size: 13px;
}

.detail-meta-grid strong {
  color: var(--ink-950);
  font-size: 18px;
}

.detail-content .tag-row span {
  color: var(--peach-600);
  background: rgba(255, 123, 68, 0.1);
  border: 1px solid rgba(255, 123, 68, 0.14);
}

.detail-content .soft-tags span {
  color: var(--ink-600);
  background: rgba(255, 255, 255, 0.8);
}

.detail-content section {
  margin-top: 30px;
}

.detail-content h2 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.detail-content section p {
  margin: 0;
  color: var(--ink-600);
  line-height: 2;
  font-size: 17px;
}

.site-footer {
  margin-top: 60px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 123, 68, 0.14);
  background: rgba(255, 255, 255, 0.62);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}

.footer-inner strong {
  font-size: 20px;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--ink-600);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 16px;
  max-width: 720px;
  color: var(--ink-600);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--peach-600);
}

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

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-content,
  .split-layout,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

  .rank-panel {
    position: static;
  }

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

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

@media (max-width: 760px) {
  .header-inner {
    min-height: 64px;
  }

  .hero-carousel {
    width: min(100% - 20px, 1180px);
    height: 560px;
    border-radius: 26px;
    margin-top: 14px;
  }

  .hero-content {
    padding: 28px;
  }

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

  .home-intro,
  .section-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-panel {
    justify-content: flex-start;
  }

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

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

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

  .rank-row {
    grid-template-columns: 42px 64px minmax(0, 1fr);
  }

  .rank-row b {
    display: none;
  }
}

@media (max-width: 480px) {
  .brand span:last-child {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-carousel {
    height: 520px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .listing-grid,
  .compact-grid,
  .featured-rank-grid {
    grid-template-columns: 1fr;
  }

  .player-shell,
  .movie-video {
    min-height: 260px;
  }

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