:root {
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --pink-500: #ec4899;
  --purple-500: #a855f7;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(225, 29, 72, 0.13);
  --shadow-card: 0 15px 35px rgba(17, 24, 39, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background:
    radial-gradient(circle at top left, rgba(251, 113, 133, 0.18), transparent 32rem),
    linear-gradient(180deg, #fff7f9 0%, #ffffff 34%, #fff7fb 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 241, 242, 0.94), rgba(253, 242, 248, 0.96), rgba(250, 245, 255, 0.94));
  border-bottom: 1px solid rgba(244, 63, 94, 0.16);
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.08);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand__mark,
.footer-brand span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-400), var(--pink-500));
  box-shadow: 0 12px 26px rgba(244, 63, 94, 0.32);
  transition: transform 0.28s ease;
}

.brand:hover .brand__mark {
  transform: scale(1.08) rotate(-5deg);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand__text strong {
  font-size: 24px;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--rose-600), var(--pink-500));
  -webkit-background-clip: text;
  color: transparent;
}

.brand__text small {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}

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

.nav-link {
  position: relative;
  font-weight: 700;
  color: var(--gray-700);
  padding: 26px 0;
  transition: color 0.22s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 19px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--rose-600);
  transition: width 0.22s ease;
}

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

.nav-link:hover::after,
.nav-link.is-current::after {
  width: 100%;
}

.top-search,
.mobile-search,
.quick-search,
.search-page-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.quick-search input,
.search-page-form input,
.inline-filter input,
.filter-tools select {
  width: 100%;
  border: 2px solid var(--rose-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--gray-900);
  outline: none;
  padding: 12px 18px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.top-search input {
  width: 235px;
}

.top-search input:focus,
.mobile-search input:focus,
.quick-search input:focus,
.search-page-form input:focus,
.inline-filter input:focus,
.filter-tools select:focus {
  border-color: var(--rose-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.top-search button,
.mobile-search button,
.quick-search button,
.search-page-form button,
.button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, var(--rose-600), var(--pink-500));
  box-shadow: 0 12px 25px rgba(225, 29, 72, 0.24);
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.top-search button:hover,
.mobile-search button:hover,
.quick-search button:hover,
.search-page-form button:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(225, 29, 72, 0.30);
}

.button--ghost {
  color: var(--rose-600);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(244, 63, 94, 0.24);
}

.button--text {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: var(--rose-600);
}

.mobile-panel {
  display: none;
  padding: 16px;
  border-top: 1px solid var(--rose-100);
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-search {
  margin-bottom: 14px;
}

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

.mobile-nav .nav-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--rose-100);
}

.hero-slider {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #111827 0%, #3b0a22 54%, #831843 100%);
}

.hero-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.48;
  pointer-events: none;
}

.hero-glow--one {
  left: -120px;
  top: 20px;
  background: rgba(244, 63, 94, 0.45);
}

.hero-glow--two {
  right: -90px;
  bottom: -150px;
  background: rgba(168, 85, 247, 0.42);
}

.hero-stage {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 660px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-slide__image {
  order: 2;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(1deg);
}

.hero-slide__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.48));
}

.hero-slide__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-slide.is-active .hero-slide__image img {
  transform: scale(1.04);
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.eyebrow,
.page-hero span,
.section-heading span,
.rank-panel__head span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-600);
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-slide .eyebrow {
  color: #ffe4e6;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-slide h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-slide p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  margin: 0 0 20px;
}

.hero-tags,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-tags a {
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 800;
  color: var(--rose-600);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
}

.hero-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.hero-arrow,
.hero-dot {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(10px);
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  transition: width 0.22s ease, background 0.22s ease;
}

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

.quick-panel {
  margin-top: -48px;
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

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

.quick-links a,
.card-category,
.category-panel__links a {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  color: var(--rose-600);
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
}

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

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

.section-heading h2,
.page-hero h1,
.rank-panel__head h2,
.story-card h2 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p,
.story-card p,
.detail-line {
  margin: 0;
  color: var(--gray-500);
}

.section-heading > a {
  color: var(--rose-600);
  font-weight: 900;
}

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

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

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

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(17, 24, 39, 0.16);
}

.movie-card__cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-100), #faf5ff);
}

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

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

.play-chip,
.rank-badge {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-500));
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.25);
}

.play-chip {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  padding: 0 10px;
}

.movie-card__body {
  padding: 17px;
}

.movie-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.movie-card h2 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.28;
}

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

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

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

.movie-card--compact .movie-card__cover {
  aspect-ratio: auto;
  min-height: 154px;
}

.movie-card--compact .movie-card__body {
  padding: 15px;
}

.movie-card--compact h2 {
  font-size: 17px;
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #fff;
  background: var(--gray-900);
  box-shadow: var(--shadow-card);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  opacity: 0.68;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
  opacity: 0.52;
}

.category-tile span,
.category-tile strong {
  position: absolute;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.category-tile span {
  bottom: 58px;
  font-weight: 900;
  font-size: 25px;
}

.category-tile strong {
  bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

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

.rank-panel,
.story-card,
.category-panel,
.filter-tools {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.rank-panel {
  position: sticky;
  top: 104px;
  padding: 22px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 32px 58px minmax(0, 1fr);
  grid-template-areas:
    "num img title"
    "num img meta";
  gap: 0 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.22s ease, transform 0.22s ease;
}

.rank-row:hover {
  background: var(--rose-50);
  transform: translateX(4px);
}

.rank-row span {
  grid-area: num;
  color: var(--rose-600);
  font-size: 24px;
  font-weight: 900;
}

.rank-row img {
  grid-area: img;
  width: 58px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-row strong {
  grid-area: title;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  grid-area: meta;
  color: var(--gray-500);
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  margin-top: 38px;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 242, 0.92));
  box-shadow: var(--shadow-soft);
}

.page-hero--soft,
.page-hero--rank,
.page-hero--search {
  grid-template-columns: 1fr;
}

.inline-filter,
.search-page-form {
  justify-self: end;
  width: 100%;
}

.search-page-form {
  max-width: 620px;
}

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

.category-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.category-panel__image img {
  width: 100%;
  height: 100%;
  min-height: 268px;
  object-fit: cover;
}

.category-panel__body {
  padding: 24px;
}

.category-panel__body h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.category-panel__body p {
  color: var(--gray-500);
  margin: 0 0 15px;
}

.category-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

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

.filter-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 16px;
}

.filter-tools select {
  max-width: 260px;
  border-radius: 16px;
}

.filter-tools span {
  color: var(--gray-500);
  font-weight: 800;
}

.detail-hero {
  padding-top: 28px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 22px;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 242, 0.9));
  box-shadow: var(--shadow-soft);
}

.detail-poster {
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  background: var(--rose-100);
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.14);
}

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

.detail-info {
  align-self: center;
}

.detail-info h1 {
  margin: 18px 0;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.detail-line {
  font-size: 20px;
  max-width: 760px;
}

.detail-meta {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-meta li {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--rose-100);
}

.detail-meta span {
  display: block;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 800;
}

.detail-meta strong {
  display: block;
  margin-top: 4px;
}

.detail-tags {
  margin: 0 0 28px;
}

.player-section {
  padding-top: 54px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 16 / 9;
  background: #050505;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.28);
}

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

.play-cover {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  color: #fff;
  background: #000;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
}

.play-cover__mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(244, 63, 94, 0.15), rgba(0, 0, 0, 0.58));
}

.play-cover__button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  font-size: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-600), var(--pink-500));
  box-shadow: 0 18px 45px rgba(225, 29, 72, 0.34);
}

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

.story-card {
  padding: 28px;
}

.story-card h2 {
  font-size: 30px;
}

.site-footer {
  margin-top: 80px;
  color: #d1d5db;
  background: linear-gradient(90deg, #111827, #1f2937, #111827);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand {
  color: #fff;
  font-size: 22px;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
  max-width: 520px;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #9ca3af;
  padding: 18px;
}

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

  .menu-toggle {
    display: flex;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 22px;
    align-content: center;
  }

  .hero-slide__image {
    order: 0;
    min-height: 280px;
  }

  .hero-slide__image img {
    height: 320px;
  }

  .hero-slider,
  .hero-stage {
    min-height: 780px;
  }

  .quick-panel,
  .split-section,
  .page-hero,
  .detail-layout,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .ranking-grid,
  .category-panel-grid {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .site-header__inner {
    min-height: 70px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 20px;
  }

  .hero-slider,
  .hero-stage {
    min-height: 760px;
  }

  .hero-slide h1 {
    font-size: 42px;
  }

  .hero-slide p {
    font-size: 16px;
  }

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

  .hero-actions .button {
    text-align: center;
  }

  .quick-panel,
  .page-hero,
  .detail-layout,
  .story-card {
    padding: 20px;
    border-radius: 22px;
  }

  .quick-search,
  .search-page-form,
  .filter-tools {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .movie-card--compact .movie-card__cover {
    min-height: 145px;
  }

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

  .category-panel__image img {
    height: 240px;
  }

  .detail-poster {
    min-height: auto;
  }

  .detail-poster img {
    height: auto;
  }

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

  .play-cover__button {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }
}
