:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --purple-900: #581c87;
  --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-lg: 0 20px 45px rgba(17, 24, 39, 0.12);
  --shadow-xl: 0 30px 70px rgba(17, 24, 39, 0.18);
  --radius-lg: 18px;
  --radius-xl: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-800);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--rose-50) 52%, #fdf2f8 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.08);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 16px 35px rgba(244, 63, 94, 0.34);
}

.brand-name {
  font-size: 20px;
  background: linear-gradient(90deg, var(--rose-600), var(--pink-500));
  -webkit-background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.nav-link {
  padding: 10px 16px;
  color: var(--gray-600);
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--rose-600);
  background: var(--rose-50);
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.header-action {
  padding: 10px 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 12px 26px rgba(236, 72, 153, 0.24);
}

.header-action:hover,
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(244, 63, 94, 0.34);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--rose-50);
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--rose-600);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.mobile-nav a {
  padding: 12px 14px;
  color: var(--gray-700);
  border-radius: 14px;
  font-weight: 800;
}

.mobile-nav a:hover {
  color: var(--rose-600);
  background: var(--rose-50);
}

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

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(110deg, #881337, #831843 48%, var(--purple-900));
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg,
.detail-bg,
.category-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg {
  mix-blend-mode: overlay;
  opacity: 0.5;
  transform: scale(1.02);
}

.hero-overlay,
.detail-bg-shade,
.category-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.68));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  max-width: 1180px;
}

.hero-content > * {
  max-width: 760px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #facc15;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker strong {
  color: var(--white);
  letter-spacing: 0;
}

.hero h1 {
  margin: 18px 0 8px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.1;
}

.hero p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.7;
}

.hero-tags,
.tag-row,
.meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

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

.btn {
  min-height: 48px;
  padding: 0 24px;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 18px 36px rgba(244, 63, 94, 0.3);
}

.btn.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.btn.light {
  color: var(--rose-600);
  background: var(--white);
}

.full-width {
  width: 100%;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--white);
}

.hero-side-panel {
  position: absolute;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 90px;
  z-index: 3;
  width: 280px;
  padding: 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-xl);
}

.hero-side-panel span,
.hero-side-panel a {
  color: #facc15;
  font-weight: 900;
}

.hero-side-panel strong {
  display: block;
  margin: 8px 0 14px;
  font-size: 22px;
}

.section {
  padding: 72px 0;
}

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

.section-heading.compact {
  align-items: center;
  margin-bottom: 20px;
}

.section-heading h2,
.filter-heading h2,
.detail-article h2,
.detail-info-card h2 {
  margin: 6px 0 8px;
  color: var(--gray-800);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.section-heading p,
.filter-heading p,
.detail-article p,
.site-footer p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.8;
}

.section-kicker {
  color: var(--rose-500);
  font-size: 13px;
}

.text-link {
  color: var(--rose-600);
  font-weight: 900;
}

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

.category-card,
.category-overview-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: 0.3s ease;
}

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

.category-card::before,
.category-overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.3s ease;
}

.category-card:hover::before,
.category-overview-card:hover::before {
  opacity: 1;
}

.accent-rose::before { background: linear-gradient(135deg, #f43f5e, #ec4899); }
.accent-pink::before { background: linear-gradient(135deg, #ec4899, #f472b6); }
.accent-purple::before { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.accent-orange::before { background: linear-gradient(135deg, #f97316, #f43f5e); }
.accent-green::before { background: linear-gradient(135deg, #10b981, #14b8a6); }
.accent-amber::before { background: linear-gradient(135deg, #f59e0b, #f97316); }
.accent-blue::before { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.accent-red::before { background: linear-gradient(135deg, #ef4444, #f43f5e); }

.category-card > *,
.category-overview-card > * {
  position: relative;
  z-index: 2;
}

.category-icon {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 42px;
}

.category-icon.large {
  font-size: 58px;
}

.category-card strong,
.category-overview-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-800);
  font-size: 22px;
}

.category-card span,
.category-overview-card p,
.category-overview-card em,
.category-card em {
  color: var(--gray-600);
  font-style: normal;
  line-height: 1.6;
}

.category-card:hover strong,
.category-card:hover span,
.category-card:hover em,
.category-overview-card:hover strong,
.category-overview-card:hover p,
.category-overview-card:hover em {
  color: var(--white);
}

.category-card img,
.category-overview-card img {
  position: absolute;
  right: -24px;
  bottom: -38px;
  width: 130px;
  height: 170px;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.2;
  transform: rotate(9deg);
  transition: 0.3s ease;
}

.category-card:hover img,
.category-overview-card:hover img {
  opacity: 0.36;
  transform: rotate(4deg) scale(1.05);
}

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

.category-overview-card {
  min-height: 300px;
}

.category-overview-card img {
  width: 180px;
  height: 238px;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-samples span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gray-600);
  background: rgba(255, 255, 255, 0.7);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: 0.3s ease;
}

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

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

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.72) 100%);
  transition: 0.3s ease;
}

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

.play-chip,
.rank-badge,
.year-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
}

.play-chip {
  left: 16px;
  bottom: 16px;
  opacity: 0;
  padding: 8px 12px;
  background: rgba(244, 63, 94, 0.94);
  transform: translateY(12px);
  transition: 0.3s ease;
}

.movie-card:hover .play-chip {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge {
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  font-size: 12px;
  background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
}

.year-badge {
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  font-size: 12px;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(10px);
}

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

.meta-row a,
.meta-row span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  color: var(--gray-600);
  border-radius: 8px;
  background: var(--gray-100);
  font-size: 12px;
  font-weight: 800;
}

.meta-row a {
  color: var(--rose-600);
  background: var(--rose-50);
}

.movie-card h2 {
  margin: 12px 0 8px;
  color: var(--gray-800);
  font-size: 18px;
  line-height: 1.35;
}

.movie-card h2 a:hover {
  color: var(--rose-600);
}

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

.tag-row.full {
  margin-top: 18px;
}

.ranking-band,
.rank-hero,
.search-banner {
  color: var(--white);
  background: linear-gradient(110deg, var(--rose-500), var(--pink-500));
}

.ranking-band {
  padding: 72px 0;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.ranking-copy h1,
.ranking-copy h2,
.search-banner h2 {
  margin: 8px 0 16px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.ranking-copy p,
.search-banner p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

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

.mini-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 20px;
  background: #111827;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mini-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: 0.4s ease;
}

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

.mini-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.86));
}

.mini-number {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  border-radius: 50%;
  background: var(--rose-500);
  font-weight: 900;
}

.mini-title,
.mini-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  z-index: 2;
  color: var(--white);
}

.mini-title {
  bottom: 38px;
  font-weight: 900;
}

.mini-meta {
  bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.search-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
  padding: 42px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.sub-hero,
.category-hero,
.movie-detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #881337, #831843 48%, var(--purple-900));
}

.sub-hero {
  padding: 92px 0;
}

.sub-hero h1,
.category-hero h1,
.detail-title-block h1 {
  margin: 12px 0 16px;
  color: var(--white);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.sub-hero p,
.category-hero p,
.detail-title-block p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.8;
}

.category-hero,
.movie-detail-hero {
  min-height: 440px;
}

.category-hero-content,
.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 58px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

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

.filter-panel {
  padding: 24px;
  margin-bottom: 30px;
  border: 1px solid rgba(244, 63, 94, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-lg);
}

.filter-controls {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.filter-controls label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 900;
}

.filter-controls input,
.filter-controls select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  outline: none;
  background: var(--white);
}

.filter-controls input:focus,
.filter-controls select:focus {
  border-color: rgba(244, 63, 94, 0.55);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.filter-result {
  min-height: 24px;
  margin-top: 14px;
  color: var(--rose-600);
  font-weight: 900;
}

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

.detail-main,
.detail-sidebar {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000000;
  box-shadow: var(--shadow-xl);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: #000000;
}

.player-cover.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: 0.22s ease;
}

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

.player-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.16), rgba(0, 0, 0, 0.78));
}

.player-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  padding-left: 6px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-500), var(--pink-500));
  box-shadow: 0 20px 50px rgba(244, 63, 94, 0.38);
  font-size: 36px;
  transform: translate(-50%, -50%);
}

.player-title {
  position: absolute;
  left: 24px;
  bottom: 22px;
  right: 24px;
  z-index: 2;
  font-size: 28px;
  font-weight: 900;
  text-align: left;
}

.detail-article,
.detail-info-card {
  margin-top: 24px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.detail-article p + h2 {
  margin-top: 28px;
}

.detail-sidebar {
  position: sticky;
  top: 98px;
}

.detail-poster {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.detail-info-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.detail-info-card div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
}

.detail-info-card dt,
.detail-info-card dd {
  margin: 0;
  line-height: 1.6;
}

.detail-info-card dt {
  color: var(--gray-500);
  font-weight: 900;
}

.detail-info-card dd {
  color: var(--gray-800);
}

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

.rank-hero {
  padding: 76px 0;
}

.site-footer {
  padding: 54px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 34px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 22px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer-links a:hover {
  color: #fda4af;
}

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

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

  .hero-side-panel {
    display: none;
  }

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

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

  .mobile-menu-button {
    display: block;
  }

  .hero {
    height: 680px;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 92px;
  }

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

  .section {
    padding: 52px 0;
  }

  .section-heading,
  .search-banner,
  .ranking-layout,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .movie-grid.three-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-sidebar {
    position: static;
  }
}

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

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

  .hero {
    height: 720px;
  }

  .hero-content {
    padding-bottom: 74px;
  }

  .hero-actions,
  .hero-tags {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .hero-tags span {
    width: 100%;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .movie-grid.three-cols,
  .mini-grid,
  .filter-controls {
    grid-template-columns: 1fr;
  }

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

  .player-title {
    font-size: 20px;
  }
}
