:root {
  --orange: #fb923c;
  --orange-strong: #ea580c;
  --pink: #ec4899;
  --yellow: #facc15;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --card: #ffffff;
  --soft: #fff7ed;
  --shadow: 0 22px 60px rgba(234, 88, 12, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #fff1f2 44%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(251, 146, 60, 0.25);
  background: rgba(255, 247, 237, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(251, 146, 60, 0.14);
}

.header-inner {
  max-width: 1280px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong,
.footer-brand strong {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--orange-strong), var(--pink), #ca8a04);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

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

.nav-link,
.mobile-link {
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 700;
  color: #374151;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--orange-strong);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(251, 146, 60, 0.18);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
}

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  border: 2px solid #fed7aa;
  outline: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header-search input {
  width: 238px;
  padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #f472b6;
  box-shadow: 0 0 0 5px rgba(244, 114, 182, 0.14);
}

.header-search button,
.mobile-search button,
.primary-button,
.ghost-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 900;
  cursor: pointer;
}

.header-search button,
.mobile-search button,
.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 14px 36px rgba(236, 72, 153, 0.28);
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 14px;
  padding: 10px 12px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(251, 146, 60, 0.14);
}

.mobile-menu {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px 18px;
}

.mobile-search {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.mobile-search input {
  width: 100%;
  padding: 12px 15px;
}

.mobile-link {
  display: block;
  margin-top: 8px;
}

.hero {
  position: relative;
  padding: 24px 22px 0;
}

.hero-stage {
  position: relative;
  max-width: 1280px;
  height: min(72vh, 680px);
  min-height: 520px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #fb923c, #ec4899 54%, #facc15);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 1.2s ease;
  pointer-events: none;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(250, 204, 21, 0.34), transparent 30%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.86) 0%, rgba(17, 24, 39, 0.56) 48%, rgba(17, 24, 39, 0.18) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(680px, 92%);
  padding: clamp(34px, 8vw, 88px);
  color: #ffffff;
}

.hero-badge,
.section-kicker,
.detail-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

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

.hero-controls {
  position: absolute;
  right: 26px;
  top: 26px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero-dots {
  position: absolute;
  left: clamp(24px, 8vw, 88px);
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.hero-dot {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  padding: 12px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-dot span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 800;
}

.hero-dot.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.88), rgba(236, 72, 153, 0.78));
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 22px;
}

.warm-band {
  max-width: none;
  margin-top: 24px;
  background: linear-gradient(90deg, rgba(255, 237, 213, 0.8), rgba(252, 231, 243, 0.8), rgba(254, 249, 195, 0.8));
}

.warm-band .section-heading,
.warm-band .category-grid {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-kicker {
  color: var(--pink);
  background: #fff1f2;
}

.section-heading h2 {
  margin: 12px 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(254, 215, 170, 0.8);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(251, 146, 60, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: #f9a8d4;
  box-shadow: 0 26px 70px rgba(236, 72, 153, 0.2);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fdba74, #f9a8d4, #fde68a);
}

.movie-card-featured .card-cover {
  aspect-ratio: 16 / 10;
}

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

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

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 24, 39, 0.62));
}

.card-play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 12px 26px rgba(236, 72, 153, 0.35);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #f97316, #db2777);
  box-shadow: 0 12px 30px rgba(219, 39, 119, 0.35);
}

.card-body {
  padding: 18px;
}

.card-title {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 900;
  color: #111827;
}

.card-meta {
  margin: 8px 0 10px;
  color: var(--orange-strong);
  font-size: 13px;
  font-weight: 800;
}

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

.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.card-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  color: #be185d;
  background: #fce7f3;
  font-size: 12px;
  font-weight: 800;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 174px;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  background: linear-gradient(135deg, #fb923c, #ec4899);
  box-shadow: 0 18px 40px rgba(251, 146, 60, 0.18);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.72));
}

.category-tile span,
.category-tile em {
  position: relative;
  z-index: 2;
}

.category-tile span {
  font-size: 20px;
  font-weight: 900;
}

.category-tile em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.rank-panel {
  position: sticky;
  top: 100px;
  border: 1px solid rgba(254, 215, 170, 0.9);
  border-radius: 30px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.rank-head {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 16px;
}

.rank-head span {
  border-radius: 999px;
  padding: 5px 10px;
  color: #fff;
  background: var(--pink);
  font-weight: 900;
}

.rank-head h2 {
  margin: 0;
  font-size: 28px;
}

.rank-head a {
  margin-left: auto;
  color: var(--orange-strong);
  font-weight: 900;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 36px 58px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  padding: 10px;
  background: #fff7ed;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  background: #fff1f2;
}

.rank-number {
  color: #db2777;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  width: 58px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdba74, #f9a8d4);
}

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

.rank-info strong {
  font-weight: 900;
}

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

.page-hero {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 70px 42px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 20%, rgba(250, 204, 21, 0.5), transparent 30%),
    linear-gradient(135deg, #fb923c, #ec4899 60%, #facc15);
  box-shadow: var(--shadow);
}

.page-hero span {
  background: rgba(255, 255, 255, 0.18);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
}

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

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

.category-overview-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(254, 215, 170, 0.85);
  border-radius: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(251, 146, 60, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(236, 72, 153, 0.18);
}

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

.poster-stack img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, #fdba74, #f9a8d4);
}

.category-overview-card h2 {
  margin: 18px 0 8px;
  font-size: 26px;
}

.category-overview-card p {
  min-height: 46px;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

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

.filter-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
  border: 1px solid rgba(254, 215, 170, 0.9);
  border-radius: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(251, 146, 60, 0.12);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: #9a3412;
  font-size: 13px;
  font-weight: 900;
}

.filter-search input {
  width: 100%;
  padding: 14px 18px;
}

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

.filter-panel select {
  width: 100%;
  padding: 13px 16px;
}

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

.empty-state {
  margin-top: 22px;
  border: 1px dashed #f9a8d4;
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  color: #be185d;
  background: #fff1f2;
  font-weight: 900;
}

.detail-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--orange-strong);
  font-weight: 900;
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 35%, rgba(236, 72, 153, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.74));
}

.player-card.is-playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-circle {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.45);
  font-size: 34px;
}

.player-overlay strong {
  max-width: 80%;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.1;
}

.player-overlay em {
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
}

.detail-main {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  margin-top: 34px;
  border: 1px solid rgba(254, 215, 170, 0.9);
  border-radius: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(251, 146, 60, 0.12);
}

.detail-poster {
  overflow: hidden;
  align-self: start;
  border-radius: 26px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fdba74, #f9a8d4, #fde68a);
}

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

.detail-kicker {
  color: #be185d;
  background: #fce7f3;
}

.detail-copy h1 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.detail-one-line {
  color: #9a3412;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.8;
}

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

.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  color: #c2410c;
  background: #ffedd5;
  font-weight: 900;
}

.detail-copy h2 {
  margin: 28px 0 12px;
  font-size: 24px;
}

.detail-copy p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.92;
}

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

.movie-card-compact .card-desc {
  display: none;
}

.site-footer {
  margin-top: 50px;
  border-top: 4px solid #fdba74;
  background: linear-gradient(90deg, #ffedd5, #fce7f3, #fef9c3);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 22px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.6fr;
  gap: 32px;
}

.footer-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-grid h3 {
  margin: 0 0 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  border-radius: 999px;
  padding: 8px 12px;
  color: #9a3412;
  background: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 800;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 22px 26px;
  border-top: 1px solid rgba(251, 146, 60, 0.25);
  color: var(--muted);
  font-size: 14px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .movie-grid,
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .two-column-section {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }

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

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

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

  .header-inner {
    min-height: 68px;
  }

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

  .brand-text em {
    display: none;
  }

  .hero-stage {
    min-height: 620px;
    height: auto;
  }

  .hero-copy {
    padding: 42px 24px 180px;
  }

  .hero-dots {
    left: 18px;
    right: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-controls {
    right: 18px;
    top: 18px;
  }

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

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

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

  .detail-poster {
    max-width: 300px;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .mobile-menu,
  .hero,
  .content-section,
  .detail-layout {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-stage,
  .page-hero,
  .player-card,
  .detail-main {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 42px 18px 194px;
  }

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

  .hero-dot {
    min-height: 48px;
    padding: 10px;
  }

  .page-hero {
    margin-left: 14px;
    margin-right: 14px;
    padding: 48px 22px;
  }

  .movie-grid,
  .catalog-grid,
  .featured-grid,
  .related-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .card-cover,
  .movie-card-featured .card-cover {
    aspect-ratio: 16 / 10;
  }

  .player-overlay strong {
    font-size: 24px;
  }

  .play-circle {
    width: 66px;
    height: 66px;
    font-size: 28px;
  }
}
