:root {
  --rose: #e11d48;
  --rose-light: #fb7185;
  --pink: #db2777;
  --orange: #f97316;
  --amber-soft: #fff7ed;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: rgba(17, 24, 39, 0.1);
  --shadow: 0 20px 60px rgba(136, 19, 55, 0.13);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 42%, #fdf2f8 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 237, 0.88);
  border-bottom: 1px solid rgba(225, 29, 72, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(225, 29, 72, 0.08);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--rose), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: white;
  font-size: 15px;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 12px 30px rgba(225, 29, 72, 0.28);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: #374151;
}

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

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--rose), var(--orange));
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--rose);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #374151;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: #190b13;
}

.hero-slides {
  position: relative;
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  align-items: center;
  gap: 60px;
  padding: 110px max(32px, calc((100vw - 1180px) / 2)) 120px;
  background-image: linear-gradient(90deg, rgba(15, 7, 12, 0.94), rgba(80, 12, 34, 0.78), rgba(255, 122, 89, 0.24)), var(--hero-bg);
  background-position: center;
  background-size: cover;
  transition: opacity 0.75s ease, transform 0.75s ease;
  transform: scale(1.02);
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(255, 247, 237, 1), transparent);
  pointer-events: none;
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #fed7aa;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.hero-copy p {
  max-width: 700px;
  margin: 26px 0 0;
  font-size: 20px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
}

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

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

.hero-tags span,
.tag-row span,
.detail-tags span,
.info-chips span,
.info-chips a,
.card-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-tags span {
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.hero-actions,
.inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

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

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  box-shadow: 0 18px 42px rgba(225, 29, 72, 0.34);
}

.ghost-btn {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.ghost-dark-btn {
  color: #7f1d1d;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(225, 29, 72, 0.16);
}

.primary-btn:hover,
.ghost-btn:hover,
.ghost-dark-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  display: block;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(2.2deg);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.hero-control-row {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 42px;
  background: white;
}

.hero-search {
  display: flex;
  width: min(440px, 100%);
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.18);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 18px;
  outline: 0;
}

.hero-search button {
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--orange));
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
}

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

.section-wrap.slim {
  padding: 70px 0;
}

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

.section-heading h2,
.center-heading h2,
.inner-hero h1,
.detail-main h1,
.rank-copy-block h2,
.ranking-column h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.section-heading a,
.text-link {
  color: var(--rose);
  font-weight: 900;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 50px rgba(136, 19, 55, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 29, 72, 0.28);
  box-shadow: 0 28px 70px rgba(136, 19, 55, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.18), rgba(249, 115, 22, 0.16));
}

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

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

.type-badge,
.rank-badge {
  position: absolute;
  top: 14px;
  z-index: 3;
  color: white;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.86);
  backdrop-filter: blur(10px);
}

.type-badge {
  left: 14px;
  padding: 6px 10px;
}

.rank-badge {
  right: 14px;
  min-width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
}

.play-dot {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: white;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.card-body {
  padding: 18px;
}

.card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 48px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  transition: color 0.2s ease;
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0;
}

.card-meta span {
  padding: 5px 9px;
  color: #6b7280;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 700;
}

.card-body p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 50px;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.tag-row span,
.detail-tags span,
.info-chips span,
.info-chips a {
  padding: 6px 10px;
  color: #9f1239;
  background: #ffe4e6;
  font-size: 12px;
  font-weight: 800;
}

.category-section,
.rank-section {
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(225, 29, 72, 0.08);
  border-bottom: 1px solid rgba(225, 29, 72, 0.08);
}

.center-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.center-heading p,
.inner-hero p,
.rank-copy-block p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 18px;
}

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

.category-card {
  min-height: 190px;
  padding: 26px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cat-color) 16%, white), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 66px rgba(17, 24, 39, 0.14);
}

.category-card span {
  color: var(--cat-color);
  font-weight: 900;
}

.category-card strong {
  font-size: 20px;
  line-height: 1.35;
}

.category-card em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

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

.rank-copy-block {
  position: sticky;
  top: 110px;
  padding: 38px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--pink), var(--orange));
  box-shadow: 0 25px 70px rgba(225, 29, 72, 0.25);
}

.rank-copy-block .eyebrow,
.rank-copy-block p {
  color: rgba(255, 255, 255, 0.86);
}

.rank-copy-block .primary-btn {
  background: white;
  color: var(--rose);
}

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

.rank-item {
  display: grid;
  grid-template-columns: 48px 78px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, border 0.2s ease;
}

.rank-item:hover {
  transform: translateX(6px);
  border-color: rgba(225, 29, 72, 0.25);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose), var(--orange));
}

.rank-item img {
  width: 78px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
}

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

.rank-copy strong,
.rank-copy em {
  display: block;
}

.rank-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.rank-copy em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.inner-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 58px;
  border-radius: 32px;
  background: radial-gradient(circle at 15% 15%, rgba(251, 113, 133, 0.2), transparent 30%), linear-gradient(135deg, white, #fff7ed 55%, #ffe4e6);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.category-hero {
  background: radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--cat-color) 26%, transparent), transparent 30%), linear-gradient(135deg, white, #fff7ed 58%, #ffe4e6);
}

.category-overview-grid {
  display: grid;
  gap: 24px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  min-height: 170px;
}

.category-cover-stack img {
  width: 100%;
  height: 170px;
  border-radius: 18px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.16), rgba(249, 115, 22, 0.14));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.08);
}

.filter-bar label {
  flex: 1 1 260px;
  display: grid;
  gap: 8px;
  color: #4b5563;
  font-weight: 800;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  background: white;
  outline: 0;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: #fb7185;
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.15);
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-tags button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #9f1239;
  background: #ffe4e6;
  font-weight: 900;
  cursor: pointer;
}

.search-status {
  min-height: 24px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

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

.ranking-column {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.ranking-column h2 {
  margin-bottom: 22px;
  font-size: 28px;
}

.full-rank-list .rank-item {
  grid-template-columns: 44px 60px 1fr;
}

.full-rank-list .rank-item img {
  width: 60px;
  height: 52px;
}

.detail-hero {
  padding: 34px max(16px, calc((100vw - 1180px) / 2)) 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 800;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
}

.player-card,
.detail-side,
.detail-main,
.side-panel {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.player-card {
  padding: 18px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #09090b;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #09090b;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 0;
  color: white;
  background: radial-gradient(circle at center, rgba(225, 29, 72, 0.2), rgba(9, 9, 11, 0.42));
  cursor: pointer;
}

.play-overlay span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  padding-left: 5px;
  border-radius: 50%;
  color: var(--rose);
  background: white;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  font-size: 30px;
}

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

.detail-side {
  padding: 18px;
}

.detail-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.16), rgba(249, 115, 22, 0.14));
}

.detail-tags {
  margin-top: 16px;
}

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

.detail-main,
.side-panel {
  padding: 34px;
}

.detail-main h1 {
  margin-bottom: 18px;
}

.lead-text {
  color: #4b5563;
  font-size: 20px;
  line-height: 1.85;
}

.info-chips {
  margin: 24px 0 34px;
}

.detail-main h2,
.side-panel h2 {
  margin: 32px 0 14px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.detail-main p {
  color: #374151;
  line-height: 2;
  font-size: 17px;
}

.side-panel h2 {
  margin-top: 0;
}

.side-card-list {
  display: grid;
  gap: 14px;
}

.compact-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  border-radius: 18px;
}

.compact-card .poster-link {
  aspect-ratio: 1 / 1.25;
}

.compact-card .card-body {
  padding: 12px;
}

.compact-card .card-title {
  min-height: 0;
  font-size: 15px;
}

.compact-card .card-body p,
.compact-card .tag-row,
.compact-card .play-dot,
.compact-card .type-badge {
  display: none;
}

.site-footer {
  margin-top: 70px;
  color: white;
  background: linear-gradient(135deg, #111827, #2f1024 55%, #4a160c);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  gap: 20px;
  text-align: center;
}

.footer-inner p {
  margin: 0 auto;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.footer-inner small {
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 60px rgba(17, 24, 39, 0.15);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 96px;
  }

  .hero-poster {
    max-width: 260px;
    transform: none;
  }

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

  .rank-layout,
  .detail-layout,
  .detail-content,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .rank-copy-block {
    position: static;
  }
}

@media (max-width: 620px) {
  .top-nav {
    min-height: 66px;
  }

  .site-logo,
  .footer-logo {
    font-size: 20px;
  }

  .hero-carousel,
  .hero-slides {
    min-height: 760px;
  }

  .hero-slide {
    padding: 88px 16px 140px;
  }

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

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

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

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

  .featured-grid,
  .latest-grid,
  .all-grid,
  .mosaic-grid,
  .category-grid,
  .ranking-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero,
  .detail-main,
  .side-panel {
    padding: 26px;
  }

  .category-cover-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .compact-card {
    grid-template-columns: 96px 1fr;
  }
}
