:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --pink-400: #f472b6;
  --teal-50: #f0fdfa;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 4px 10px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 25px 60px rgba(15, 23, 42, 0.18);
  --radius-lg: 18px;
  --radius-xl: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--white), var(--gray-50));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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: 100;
  background: linear-gradient(90deg, rgba(255, 241, 242, 0.95), rgba(255, 255, 255, 0.95), rgba(240, 253, 250, 0.95));
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.site-nav {
  width: min(100%, var(--container));
  min-height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-400), var(--teal-400));
  box-shadow: 0 10px 25px rgba(251, 113, 133, 0.28);
  font-size: 14px;
}

.brand-name {
  font-size: 24px;
  background: linear-gradient(90deg, var(--rose-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link {
  color: var(--gray-700);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--rose-500);
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--gray-700);
  background: transparent;
  font-size: 28px;
}

.mobile-menu {
  display: none;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 20px 16px;
}

.mobile-menu.open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--gray-700);
  font-weight: 650;
}

.mobile-link:hover,
.mobile-link.active {
  background: var(--rose-50);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), var(--teal-50), var(--rose-50));
}

.hero-inner,
.section-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 64px;
}

.hero-blur {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.28;
}

.hero-blur-rose {
  left: -80px;
  top: -80px;
  background: var(--rose-400);
}

.hero-blur-teal {
  right: -120px;
  bottom: -120px;
  background: var(--teal-300);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 42px;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--rose-500);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 750;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(36px, 6vw, 68px);
  background: linear-gradient(90deg, var(--rose-400), var(--pink-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy h2 {
  margin: 16px 0 12px;
  color: var(--gray-900);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--gray-700);
  font-size: 18px;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--gray-700);
  background: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 650;
}

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

.primary-button,
.ghost-button,
.soft-button,
.hero-search button,
.quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.primary-button,
.hero-search button {
  color: var(--white);
  background: linear-gradient(90deg, var(--rose-400), var(--teal-400));
  box-shadow: 0 16px 35px rgba(20, 184, 166, 0.22);
}

.primary-button,
.ghost-button {
  min-height: 46px;
  padding: 0 22px;
}

.ghost-button,
.soft-button {
  color: var(--rose-500);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.primary-button:hover,
.ghost-button:hover,
.soft-button:hover,
.hero-search button:hover,
.quick-links a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-visual {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.64);
  border-radius: 34px;
  background: var(--gray-100);
  box-shadow: var(--shadow-xl);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-visual:hover img {
  transform: scale(1.06);
}

.hero-glass {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.68);
  backdrop-filter: blur(14px);
}

.hero-glass strong {
  font-size: 22px;
}

.hero-glass em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 0;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.25);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 28px;
  background: linear-gradient(90deg, var(--rose-400), var(--teal-400));
}

.hero-search {
  display: flex;
  gap: 12px;
  max-width: 680px;
  margin: 26px auto 0;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--gray-800);
  background: transparent;
}

.hero-search button {
  min-height: 44px;
  padding: 0 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 24px auto 0;
}

.hero-stats a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-stats a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.hero-stats strong {
  color: var(--rose-500);
  font-size: 20px;
}

.hero-stats span {
  color: var(--gray-500);
  font-size: 14px;
}

.content-section {
  padding: 70px 0;
}

.white-section {
  background: linear-gradient(180deg, var(--white), var(--gray-50));
}

.rose-section {
  background: rgba(255, 241, 242, 0.62);
}

.teal-section {
  background: linear-gradient(180deg, var(--white), rgba(240, 253, 250, 0.72));
}

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

.section-heading h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-more {
  flex: none;
  color: var(--rose-500);
  font-weight: 800;
}

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

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

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

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

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

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}

.movie-card:not(.compact) .movie-poster {
  aspect-ratio: 4 / 3;
}

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

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

.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--rose-500);
  background: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  transform: scale(0.92);
  transition: transform 0.25s ease;
}

.movie-card:hover .play-icon {
  transform: scale(1);
}

.duration-badge,
.type-badge,
.rank-badge {
  position: absolute;
  top: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 9px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.66);
}

.duration-badge {
  right: 10px;
}

.type-badge {
  left: 10px;
  background: linear-gradient(90deg, var(--rose-400), var(--teal-400));
}

.rank-badge {
  top: auto;
  left: 10px;
  bottom: 10px;
  min-width: 34px;
  text-align: center;
  background: rgba(244, 63, 94, 0.92);
}

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

.movie-card h3 {
  min-height: 48px;
  margin: 0 0 8px;
  color: var(--gray-900);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card h3 a:hover {
  color: var(--rose-500);
}

.movie-card p {
  margin: 0 0 12px;
  color: var(--gray-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 13px;
}

.movie-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--gray-100);
}

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

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

.category-card {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--gray-900);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card.large {
  min-height: 260px;
}

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

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.08);
  opacity: 0.82;
}

.category-card > span {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.84));
}

.category-card strong {
  font-size: 24px;
  line-height: 1.2;
}

.category-card em,
.category-card i {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 14px;
}

.category-card i {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.category-card i span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: var(--gray-900);
  background: linear-gradient(135deg, var(--rose-100), var(--teal-50), var(--white));
}

.slim-hero,
.rank-hero,
.latest-hero,
.search-hero {
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  background: linear-gradient(90deg, var(--rose-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--gray-700);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(55, 65, 81, 0.84);
  font-size: 14px;
}

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

.filter-panel {
  margin-bottom: 30px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
}

.filter-line {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(130px, 0.32fr)) auto;
  gap: 12px;
  align-items: end;
}

.search-field {
  display: grid;
  gap: 6px;
  color: var(--gray-600);
  font-weight: 700;
}

.search-field input,
.filter-line select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  outline: 0;
  padding: 0 13px;
  color: var(--gray-800);
  background: var(--white);
}

.search-field input:focus,
.filter-line select:focus {
  border-color: var(--rose-400);
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.15);
}

.soft-button {
  min-height: 44px;
  padding: 0 16px;
}

.empty-state {
  display: none;
  margin-top: 16px;
  padding: 18px;
  border-radius: 14px;
  color: var(--gray-600);
  background: var(--gray-50);
  text-align: center;
}

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

.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-900);
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  filter: blur(18px);
  transform: scale(1.05);
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.72));
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 36px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: #000000;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(251, 113, 133, 0.18), rgba(0, 0, 0, 0.62));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.big-play {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--rose-500);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  font-size: 32px;
}

.detail-info .breadcrumb {
  color: rgba(255, 255, 255, 0.78);
}

.detail-info .breadcrumb a:hover {
  color: var(--teal-300);
}

.detail-info .eyebrow {
  color: var(--teal-500);
}

.detail-info h1 {
  margin-top: 0;
  font-size: clamp(32px, 4vw, 56px);
}

.lead-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.detail-meta {
  margin-top: 22px;
}

.detail-meta span {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.14);
}

.detail-body {
  max-width: 940px;
}

.prose-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.prose-card h2 {
  margin: 0 0 12px;
  color: var(--gray-900);
  font-size: 26px;
}

.prose-card h2:not(:first-child) {
  margin-top: 28px;
}

.prose-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 17px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.quick-links a {
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: linear-gradient(90deg, var(--rose-400), var(--teal-400));
}

.site-footer {
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 46px 20px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
}

.footer-main p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--gray-600);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 22px;
  align-content: start;
}

.footer-links a {
  color: var(--gray-600);
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--rose-500);
}

.footer-bottom {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 18px 20px 28px;
  border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: none;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-400), var(--teal-400));
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.back-top.visible {
  display: block;
}

@media (max-width: 1080px) {
  .four-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .brand-name {
    font-size: 20px;
  }

  .hero-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

  .hero-visual,
  .hero-visual img {
    min-height: 330px;
  }

  .hero-stats,
  .feature-grid,
  .four-grid,
  .six-grid,
  .category-grid,
  .wide-category-grid {
    grid-template-columns: 1fr;
  }

  .hero-search,
  .section-heading,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-search {
    border-radius: 24px;
  }

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

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

  .detail-layout {
    padding-top: 34px;
    padding-bottom: 40px;
  }

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

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

@media (max-width: 520px) {
  .hero-stage {
    min-height: 900px;
  }

  .content-section {
    padding: 50px 0;
  }

  .movie-card-body,
  .prose-card {
    padding: 18px;
  }

  .page-hero {
    padding: 54px 0;
  }
}
