* {
  box-sizing: border-box;
}

:root {
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-300: #67e8f9;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --blue-50: #eff6ff;
  --blue-300: #93c5fd;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius-lg: 18px;
  --radius-xl: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--cyan-50) 0%, #ffffff 28%, var(--teal-50) 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--cyan-100);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  color: white;
  background: linear-gradient(135deg, var(--cyan-500), var(--teal-500));
  border-radius: 50%;
  place-items: center;
  box-shadow: 0 14px 30px rgba(6, 182, 212, 0.28);
}

.brand-text {
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(90deg, var(--cyan-600), var(--teal-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  color: var(--gray-700);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.nav-button:hover {
  color: var(--cyan-600);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 188px;
  padding: 8px;
  background: white;
  border: 1px solid var(--cyan-100);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.dropdown-menu a:hover {
  color: var(--cyan-600);
  background: var(--cyan-50);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(330px, 32vw);
  background: white;
  border: 1px solid var(--cyan-100);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.header-search input {
  width: 100%;
  min-width: 0;
  padding: 11px 14px 11px 18px;
  color: var(--gray-900);
  background: transparent;
  border: 0;
  outline: none;
}

.header-search button {
  margin-right: 4px;
  padding: 8px 15px;
  color: white;
  background: var(--cyan-600);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  width: min(460px, calc(100vw - 32px));
  max-height: 520px;
  padding: 10px;
  overflow: auto;
  background: white;
  border: 1px solid var(--cyan-100);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
}

.search-result-item:hover {
  background: var(--cyan-50);
}

.search-result-item img {
  width: 62px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--gray-100);
}

.search-result-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--gray-900);
}

.search-result-item span,
.search-empty {
  color: var(--gray-500);
  font-size: 13px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--cyan-50);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--gray-700);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 10px 20px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--cyan-100);
}

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

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

.mobile-nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-sub:hover {
  color: var(--cyan-600);
  background: var(--cyan-50);
}

.mobile-nav-title {
  padding: 10px 14px 4px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 800;
}

.hero-section {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cyan-50), white 48%, var(--teal-50));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 70px;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan-700);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--cyan-100);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-carousel {
  position: relative;
  margin-top: 28px;
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 48px;
  align-items: center;
  min-height: 500px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  background: linear-gradient(90deg, var(--cyan-600), var(--teal-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.eyebrow {
  color: var(--gray-600);
  font-weight: 800;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: white;
  background: linear-gradient(90deg, var(--cyan-600), var(--teal-600));
  box-shadow: 0 18px 34px rgba(6, 182, 212, 0.22);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  color: var(--cyan-700);
  background: white;
  border: 1px solid var(--cyan-100);
  box-shadow: var(--shadow-sm);
}

.hero-poster {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: white;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

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

.hero-poster:hover img {
  transform: scale(1.05);
}

.hero-play,
.poster-play,
.big-play {
  display: grid;
  color: white;
  background: linear-gradient(135deg, var(--cyan-500), var(--teal-500));
  border-radius: 50%;
  place-items: center;
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.32);
}

.hero-play {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 70px;
  height: 70px;
  font-size: 24px;
}

.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.hero-dot {
  width: 34px;
  height: 10px;
  background: var(--cyan-100);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 56px;
  background: var(--cyan-600);
}

.blob {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.34;
  animation: blob 10s infinite ease-in-out;
}

.blob-one {
  top: -120px;
  right: 12%;
  background: var(--cyan-300);
}

.blob-two {
  left: 6%;
  bottom: -120px;
  background: #5eead4;
  animation-delay: 1.8s;
}

.blob-three {
  top: 34%;
  left: 42%;
  background: var(--blue-300);
  animation-delay: 3.4s;
}

@keyframes blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(24px, -18px) scale(1.08);
  }
  66% {
    transform: translate(-18px, 24px) scale(0.94);
  }
}

.section,
.category-preview {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.white-section {
  background: transparent;
}

.soft-section {
  width: 100%;
  max-width: none;
  padding: 70px max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--cyan-50), var(--blue-50));
}

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

.section-head h2,
.category-preview-head h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
}

.section-head p,
.category-preview-head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--gray-600);
}

.section-link {
  color: var(--cyan-700);
  font-size: 15px;
  font-weight: 800;
}

.section-link:hover {
  text-decoration: underline;
}

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

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

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

.movie-card-item {
  min-width: 0;
}

.movie-card {
  display: grid;
  height: 100%;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(207, 250, 254, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  border-color: rgba(6, 182, 212, 0.28);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.15;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cyan-50), var(--teal-50));
}

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

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent);
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  color: white;
  background: linear-gradient(135deg, var(--cyan-600), var(--teal-600));
  border-radius: 50%;
  place-items: center;
  font-weight: 900;
  box-shadow: var(--shadow-md);
}

.movie-info {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.movie-info strong {
  overflow: hidden;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.movie-card:hover .movie-info strong {
  color: var(--cyan-700);
}

.movie-meta,
.movie-desc {
  color: var(--gray-500);
  font-size: 13px;
}

.movie-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 42px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.tag-row span,
.detail-tags span {
  display: inline-flex;
  padding: 4px 8px;
  color: var(--cyan-700);
  background: var(--cyan-50);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

.category-tile {
  position: relative;
  display: grid;
  min-height: 210px;
  overflow: hidden;
  padding: 22px;
  color: white;
  background: linear-gradient(135deg, var(--cyan-600), var(--teal-600));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-tile:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.category-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transition: transform 0.5s ease;
}

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

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.9), rgba(13, 148, 136, 0.86));
}

.category-orb {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.category-tile:hover .category-orb {
  transform: scale(1.35);
}

.category-name {
  align-self: end;
  font-size: 22px;
  font-weight: 900;
}

.category-summary {
  align-self: start;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

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

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 34px;
}

.page-hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.06;
}

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

.listing-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 18px;
  background: white;
  border: 1px solid var(--cyan-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.solo-toolbar {
  justify-content: center;
}

.page-search {
  display: grid;
  gap: 8px;
  flex: 1 1 360px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 800;
}

.page-search input {
  width: 100%;
  padding: 13px 16px;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 15px;
  outline: none;
}

.wide-search {
  max-width: 760px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-chip {
  padding: 10px 14px;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.active {
  color: white;
  background: var(--cyan-600);
  border-color: var(--cyan-600);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 10px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--cyan-700);
}

.detail-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 70px;
}

.player-panel {
  margin: 18px 0 34px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.movie-player {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  cursor: pointer;
  place-items: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.player-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12));
}

.big-play {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border: 0;
  cursor: pointer;
  font-size: 32px;
}

.detail-main {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 28px;
  background: white;
  border: 1px solid var(--cyan-100);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.detail-poster {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4.15;
  object-fit: cover;
}

.detail-copy h1 {
  margin: 16px 0 8px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
}

.detail-meta {
  margin: 0 0 16px;
  color: var(--gray-500);
  font-weight: 800;
}

.lead-text {
  max-width: 780px;
  margin: 0 0 20px;
  color: var(--gray-700);
  font-size: 18px;
}

.detail-tags {
  margin-bottom: 24px;
}

.detail-article {
  margin-top: 32px;
  padding: 30px;
  background: white;
  border: 1px solid var(--cyan-100);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

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

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

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

.related-section {
  width: 100%;
  padding-bottom: 0;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 34px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0 28px;
}

.footer-brand p,
.footer-group p,
.footer-group a {
  color: var(--gray-600);
  font-size: 14px;
}

.footer-group h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer-group ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-group a:hover {
  color: var(--cyan-700);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 30px;
  color: var(--gray-500);
  border-top: 1px solid var(--cyan-100);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .movie-grid,
  .compact-grid,
  .all-grid,
  .horizontal-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .mobile-toggle {
    display: flex;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .hero-poster img {
    min-height: 420px;
  }

  .section-head,
  .category-preview-head,
  .listing-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-chips {
    justify-content: flex-start;
  }

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

  .detail-poster {
    width: min(300px, 100%);
  }

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

@media (max-width: 680px) {
  .brand-text {
    font-size: 20px;
  }

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

  .hero-inner {
    padding: 46px 0 44px;
  }

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

  .hero-poster,
  .hero-poster img {
    min-height: 360px;
  }

  .movie-grid,
  .compact-grid,
  .all-grid,
  .horizontal-list,
  .category-grid,
  .ranking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .section,
  .category-preview {
    padding: 46px 0;
  }

  .soft-section {
    padding: 46px 16px;
  }

  .movie-info {
    padding: 12px;
  }

  .movie-info strong {
    font-size: 16px;
  }

  .category-tile {
    min-height: 178px;
    padding: 18px;
  }

  .video-shell {
    border-radius: 20px;
  }

  .detail-layout {
    width: min(100% - 20px, 1180px);
  }

  .detail-main,
  .detail-article {
    padding: 20px;
    border-radius: 22px;
  }

  .big-play {
    width: 78px;
    height: 78px;
  }

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