* {
  box-sizing: border-box;
}

:root {
  --bg: #f9fafb;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f3f4f6;
  --line: #e5e7eb;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --red: #dc2626;
  --pink: #db2777;
  --blue: #2563eb;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --soft-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.35);
}

.logo-text {
  font-size: clamp(20px, 2vw, 28px);
  background: linear-gradient(90deg, var(--orange-dark), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link {
  position: relative;
  color: #374151;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transition: right 0.25s ease;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
}

.header-search,
.mobile-search,
.hero-search {
  display: flex;
  align-items: center;
  position: relative;
}

.header-search input {
  width: min(270px, 22vw);
  border: 0;
  outline: 0;
  color: #111827;
  background: #f3f4f6;
  padding: 12px 46px 12px 18px;
  border-radius: 999px;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}

.header-search button {
  position: absolute;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.header-search button:hover {
  color: var(--orange-dark);
}

.nav-toggle {
  display: none;
  border: 0;
  color: #374151;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}

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

.mobile-search {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 8px;
  gap: 10px;
}

.mobile-search input,
.hero-search input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 13px 18px;
  background: #f3f4f6;
}

.mobile-search button,
.hero-search button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 8px 0 18px;
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  color: #374151;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.is-active {
  color: var(--orange-dark);
  background: #fff7ed;
}

main {
  overflow: hidden;
}

.home-hero {
  position: relative;
  min-height: 660px;
  padding-top: 76px;
  background: linear-gradient(110deg, #ea580c 0%, #dc2626 48%, #db2777 100%);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(660px - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  align-items: center;
  gap: 56px;
  padding: 56px 0;
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy p {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.86);
}

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

.primary-button,
.ghost-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
  color: var(--orange-dark);
  background: #fff;
  padding: 15px 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.ghost-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  padding: 14px 24px;
  backdrop-filter: blur(10px);
}

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

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

.hero-chip-row a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-chip-row a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-showcase {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.12);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 0.65s ease, transform 0.8s ease;
}

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

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

.hero-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.04));
}

.hero-slide-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 34px;
  color: #fff;
  display: grid;
  gap: 10px;
}

.hero-kicker {
  width: fit-content;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
}

.hero-slide-content strong {
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.12;
}

.hero-slide-content > span:not(.hero-kicker):not(.hero-tags) {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  color: #fed7aa;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
}

.hero-dots {
  position: absolute;
  left: 26px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

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

.inner-section {
  padding: 68px 0;
}

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

.section-heading h2,
.text-panel h2,
.category-card-body h2,
.wide-body h2,
.card-body h2 {
  margin: 0;
}

.section-heading h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.compact-heading h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.text-link {
  color: var(--orange-dark);
  background: #fff7ed;
  padding: 11px 18px;
}

.text-link:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  transform: translateY(-1px);
}

.text-link.blue {
  color: var(--blue);
  background: #eff6ff;
}

.text-link.blue:hover {
  color: #fff;
  background: var(--blue);
}

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

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

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

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

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111827;
}

.feature-grid .poster-link {
  aspect-ratio: 3 / 4;
}

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

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent 48%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-link::after {
  opacity: 1;
}

.poster-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(220, 38, 38, 0.25);
}

.card-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.card-body h2 {
  font-size: 20px;
  line-height: 1.25;
}

.compact .card-body h2 {
  font-size: 18px;
}

.card-body h2 a:hover,
.wide-body h2 a:hover,
.category-card-body h2 a:hover {
  color: var(--orange-dark);
}

.card-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 14px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}

.card-meta span {
  border-radius: 999px;
  background: #f3f4f6;
  padding: 5px 9px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  color: #9a3412;
  background: #ffedd5;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 700;
}

.soft-section {
  width: 100%;
}

.blue-section {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.orange-section {
  background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

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

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

.wide-list {
  display: grid;
  gap: 18px;
}

.wide-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.wide-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #111827;
}

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

.rank-num {
  position: absolute;
  left: 8px;
  top: 8px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, var(--red));
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(220, 38, 38, 0.25);
}

.wide-body {
  display: grid;
  align-content: center;
  gap: 12px;
}

.wide-body h2 {
  font-size: 22px;
  line-height: 1.22;
}

.wide-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-hero {
  position: relative;
  padding-top: 76px;
  color: #fff;
  background: linear-gradient(110deg, #ea580c, #dc2626 54%, #db2777);
}

.compact-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
}

.page-hero::before,
.detail-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #fff;
}

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

.category-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.category-cover-stack img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: #111827;
}

.category-card-body {
  display: grid;
  align-content: center;
  gap: 12px;
}

.category-card-body h2 {
  font-size: 28px;
  line-height: 1.15;
}

.category-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 12px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.filter-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #374151;
  background: #f3f4f6;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: #fff;
  background: linear-gradient(90deg, var(--orange), var(--red));
  transform: translateY(-1px);
}

.detail-hero {
  position: relative;
  min-height: 620px;
  padding-top: 76px;
  color: #fff;
  background: #111827;
  overflow: hidden;
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(20px) saturate(1.12);
  transform: scale(1.08);
  opacity: 0.55;
}

.detail-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 60px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111827;
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-desc {
  max-width: 850px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.65;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-meta span {
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

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

.detail-tags span {
  color: #fff;
  background: rgba(249, 115, 22, 0.6);
}

.detail-copy .primary-button {
  margin-top: 28px;
}

.detail-section {
  padding-bottom: 32px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-size: 34px;
  box-shadow: 0 18px 42px rgba(220, 38, 38, 0.36);
}

.play-title {
  font-size: 22px;
  font-weight: 900;
}

.article-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 24px;
}

.text-panel {
  border-radius: 26px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--soft-shadow);
}

.text-panel h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.text-panel p {
  margin: 0;
  color: #4b5563;
  line-height: 1.88;
  font-size: 16px;
}

.hero-search {
  width: min(680px, 100%);
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937 55%, #111827);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 36px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  color: #9ca3af;
  line-height: 1.7;
}

.footer-logo .logo-text {
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

.footer-col a {
  color: #9ca3af;
  font-size: 14px;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 28px;
  color: #9ca3af;
  font-size: 14px;
}

[data-card].is-hidden {
  display: none;
}

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

  .nav-toggle {
    display: block;
  }

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

  .hero-showcase {
    min-height: 460px;
  }

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

  .category-card-grid,
  .ranking-list,
  .article-section {
    grid-template-columns: 1fr;
  }

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

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

  .home-hero,
  .page-hero,
  .detail-hero {
    padding-top: 66px;
  }

  .hero-inner {
    min-height: auto;
    padding: 42px 0 50px;
    gap: 34px;
  }

  .hero-copy h1,
  .detail-copy h1,
  .page-hero h1 {
    letter-spacing: -0.04em;
  }

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

  .hero-showcase {
    min-height: 420px;
    border-radius: 26px;
  }

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

  .content-section,
  .category-strip {
    padding: 48px 0;
  }

  .movie-grid,
  .small-grid,
  .catalog-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .card-body {
    padding: 14px;
  }

  .card-body h2,
  .compact .card-body h2 {
    font-size: 16px;
  }

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

  .detail-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .detail-poster {
    width: min(280px, 78vw);
  }

  .wide-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .wide-body h2 {
    font-size: 18px;
  }

  .wide-body p {
    font-size: 14px;
  }

  .player-shell {
    border-radius: 18px;
  }

  .play-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

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

@media (max-width: 460px) {
  .logo-mark {
    width: 36px;
    height: 36px;
  }

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

  .movie-grid,
  .small-grid,
  .catalog-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-chip-row a,
  .filter-button {
    font-size: 13px;
  }

  .hero-search {
    flex-direction: column;
  }

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