:root {
  --pink: #ec4899;
  --pink-strong: #db2777;
  --orange: #f97316;
  --yellow: #facc15;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #fff7ed;
  --line: #f3f4f6;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 12px 32px rgba(236, 72, 153, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #fff7ed 0%, #fff1f2 45%, #fefce8 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(243, 244, 246, 0.9);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 10px 26px rgba(236, 72, 153, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-4deg);
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 22px;
  background: linear-gradient(90deg, var(--pink-strong), var(--orange));
  -webkit-background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink-strong);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #f9fafb;
  color: #374151;
  cursor: pointer;
}

.hero-section {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #f472b6 0%, #fb923c 52%, #facc15 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 12px 12px, rgba(255, 255, 255, 0.8) 0 2px, transparent 2px);
  background-size: 54px 54px;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(0deg, #fff7ed, rgba(255, 247, 237, 0));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
}

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

.hero-copy h1 span {
  display: inline-block;
  font-size: clamp(44px, 7.5vw, 80px);
  background: linear-gradient(90deg, #fff, #fef3c7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy p {
  margin: 0 0 34px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.8;
}

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

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

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

.btn.primary {
  background: #fff;
  color: var(--pink-strong);
  box-shadow: var(--shadow);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
}

.hero-stage {
  position: relative;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

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

.hero-poster {
  height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(17, 24, 39, 0.28);
}

.hero-card-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.64);
  backdrop-filter: blur(14px);
}

.hero-card-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #fef3c7;
  font-weight: 800;
  font-size: 13px;
}

.hero-card-copy h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.hero-card-copy p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.hero-card-copy a {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: #fff;
  font-weight: 900;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 30px;
  background: #fff;
}

.feature-strip {
  position: relative;
  z-index: 3;
  padding: 52px 0;
  background: #fff;
}

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

.feature-tile {
  text-align: center;
  padding: 32px 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff1f2, #fffbeb);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-tile:nth-child(2) {
  background: linear-gradient(135deg, #fef3c7, #fdf2f8);
}

.feature-tile:nth-child(3) {
  background: linear-gradient(135deg, #ffedd5, #fef9c3);
}

.feature-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-soft);
}

.feature-tile span {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  font-weight: 900;
  font-size: 28px;
}

.feature-tile h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

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

.section {
  padding: 72px 0;
  background: #fff;
}

.section.warm {
  background: linear-gradient(135deg, #fff7ed, #fdf2f8, #fefce8);
}

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

.page-shell {
  min-height: 70vh;
}

.page-hero {
  padding: 72px 0 58px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange), var(--yellow));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 14px 14px, #fff 0 2px, transparent 2px);
  background-size: 52px 52px;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 22px 0 14px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
}

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

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

.section-heading h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  background: linear-gradient(90deg, var(--pink-strong), var(--orange));
  -webkit-background-clip: text;
  color: transparent;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--pink-strong);
  background: #fff;
  border: 1px solid #fce7f3;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.12);
}

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

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

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

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

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

.movie-card {
  min-width: 0;
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf2f8, #ffedd5);
}

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

.movie-card:hover .poster-frame img,
.category-cover:hover img,
.hero-poster:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.68) 100%);
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.86);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(236, 72, 153, 0.92);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.score-badge,
.card-label {
  position: absolute;
  top: 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.score-badge {
  right: 10px;
}

.card-label {
  left: 10px;
}

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

.movie-title {
  display: block;
  min-height: 42px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.movie-title:hover {
  color: var(--pink-strong);
}

.movie-card-body p {
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  min-height: 42px;
}

.movie-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-meta span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  color: #6b21a8;
  background: #faf5ff;
}

.tag-row span {
  color: var(--pink-strong);
  background: linear-gradient(90deg, #fce7f3, #ffedd5);
}

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

.category-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  min-height: 240px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 8px;
  min-height: 130px;
}

.category-posters img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(135deg, #fdf2f8, #ffedd5);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.14);
}

.category-posters img:nth-child(2) {
  transform: translateY(-16px);
}

.category-card strong {
  font-size: 22px;
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: start;
}

.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.ranking-item a {
  display: grid;
  grid-template-columns: 44px 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.rank-no {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.ranking-item img {
  width: 64px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdf2f8, #ffedd5);
}

.ranking-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.ranking-copy strong {
  font-size: 16px;
}

.ranking-copy em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-copy small {
  color: #9ca3af;
}

.ranking-item b {
  color: var(--pink-strong);
  font-size: 20px;
}

.full-list {
  gap: 18px;
}

.full-list .ranking-item a {
  grid-template-columns: 56px 84px minmax(0, 1fr) auto;
  padding: 18px;
}

.full-list .ranking-item img {
  width: 84px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(4, minmax(140px, 180px));
  gap: 14px;
  padding: 20px;
  margin-bottom: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.08);
}

.filter-panel.slim {
  grid-template-columns: minmax(240px, 1fr) minmax(140px, 180px);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 14px;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

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

.empty-state.show {
  display: block;
  padding: 36px;
  text-align: center;
  color: var(--muted);
  border-radius: 24px;
  background: #fff;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
}

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

.category-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdf2f8, #ffedd5);
}

.category-cover img:nth-child(1) {
  grid-row: span 2;
  height: 100%;
}

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

.category-overview-card p {
  color: var(--muted);
  line-height: 1.7;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.category-samples a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--pink-strong);
  background: #fdf2f8;
  font-size: 13px;
}

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

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

.detail-shell {
  padding: 34px 0 74px;
  background: linear-gradient(135deg, #f9fafb, #fff7ed);
}

.detail-breadcrumb {
  color: #6b7280;
}

.detail-breadcrumb a:hover {
  color: var(--pink-strong);
}

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

.detail-main-card,
.side-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(17, 24, 39, 0.08);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #020617;
  overflow: hidden;
}

.movie-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #020617;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.player-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(236, 72, 153, 0.14), rgba(0, 0, 0, 0.62));
}

.player-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 18px 46px rgba(236, 72, 153, 0.36);
  font-size: 34px;
}

.player-cover.is-hidden {
  display: none;
}

.detail-content {
  padding: 28px;
}

.detail-content h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--pink-strong);
  background: linear-gradient(90deg, #fce7f3, #ffedd5);
  font-weight: 800;
  font-size: 13px;
}

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

.detail-content h2,
.side-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-content p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
  font-size: 16px;
}

.detail-tags span {
  font-size: 14px;
  padding: 8px 12px;
}

.detail-side {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 20px;
}

.poster-side img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, #fdf2f8, #ffedd5);
}

.info-side {
  padding: 22px;
}

.info-side dl {
  margin: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px 10px;
}

.info-side dt {
  color: #9ca3af;
  font-weight: 800;
}

.info-side dd {
  margin: 0;
  color: #374151;
}

.info-side a {
  color: var(--pink-strong);
  font-weight: 900;
}

.related-section {
  padding-bottom: 0;
  background: transparent;
}

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

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

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand strong {
  font-size: 22px;
}

.footer-brand p {
  color: #d1d5db;
  line-height: 1.8;
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
}

.footer-links a {
  color: #d1d5db;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease, background 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(236, 72, 153, 0.34);
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 70px 0 110px;
  }

  .hero-stage {
    min-height: 480px;
    max-width: 420px;
  }

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

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

  .split-section,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
    grid-template-columns: 240px minmax(0, 1fr);
  }

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

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

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

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

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
    gap: 8px;
  }

  .nav-link {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .nav-link.active {
    color: #fff;
    background: linear-gradient(90deg, var(--pink), var(--orange));
  }

  .nav-link::after {
    display: none;
  }

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

  .hero-inner {
    min-height: auto;
    gap: 28px;
    padding: 48px 0 90px;
  }

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

  .hero-stage {
    min-height: 420px;
  }

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

  .hero-card-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .hero-card-copy h3 {
    font-size: 24px;
  }

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

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

  .section {
    padding: 52px 0;
  }

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

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

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

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

  .full-list .ranking-item a,
  .ranking-item a {
    grid-template-columns: 38px 58px minmax(0, 1fr);
  }

  .ranking-item b {
    grid-column: 3;
    justify-self: start;
  }

  .ranking-copy em {
    white-space: normal;
  }

  .footer-inner {
    padding: 34px 0;
  }
}

@media (max-width: 520px) {
  .container,
  .header-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 22px, 1180px);
  }

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

  .movie-card.compact {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .movie-card.compact .poster-frame {
    height: 100%;
  }

  .movie-card.compact .movie-title {
    min-height: auto;
  }

  .movie-card.compact .movie-card-body p {
    min-height: auto;
  }

  .player-button {
    width: 68px;
    height: 68px;
    font-size: 26px;
  }
}
