* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: #1f2937;
  background: linear-gradient(180deg, #fdf2f8 0%, #ffffff 42%, #fff7fb 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(253, 242, 248, 0.96), rgba(255, 255, 255, 0.98), rgba(255, 241, 242, 0.96));
  border-bottom: 1px solid #fbcfe8;
  box-shadow: 0 6px 24px rgba(244, 114, 182, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  white-space: nowrap;
  background: linear-gradient(90deg, #ec4899, #f43f5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.22);
  font-size: 15px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.desktop-nav a {
  font-weight: 700;
  color: #4b5563;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #db2777;
}

.top-search {
  display: flex;
  align-items: center;
  width: 288px;
  border: 1px solid #fbcfe8;
  border-radius: 999px;
  padding: 4px;
  background: #ffffff;
}

.top-search input,
.mobile-nav input,
.search-large input,
.filter-panel input,
.filter-panel select {
  border: 0;
  outline: 0;
  color: #374151;
  background: transparent;
}

.top-search input {
  min-width: 0;
  flex: 1;
  padding: 9px 12px;
}

.top-search button,
.mobile-nav button,
.search-large button,
.filter-panel button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, #ec4899, #f43f5e);
  padding: 9px 16px;
  font-weight: 700;
}

.menu-button {
  display: none;
  border: 0;
  background: #fce7f3;
  color: #9d174d;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 22px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
}

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

.mobile-nav form {
  display: flex;
  border: 1px solid #fbcfe8;
  border-radius: 999px;
  padding: 4px;
  background: #ffffff;
}

.mobile-nav input {
  min-width: 0;
  flex: 1;
  padding: 10px 14px;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff7fb;
  font-weight: 700;
  color: #4b5563;
}

.hero-carousel {
  position: relative;
  height: 62vh;
  min-height: 520px;
  max-height: 760px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42) 52%, rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 72px;
  max-width: 720px;
  color: #ffffff;
}

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

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(236, 72, 153, 0.9);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 16px 0 12px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.38);
}

.hero-content p {
  margin: 0 0 22px;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.7;
  color: #e5e7eb;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.hero-meta span,
.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-button,
.ghost-button,
.text-link,
.rank-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.rank-action {
  color: #ffffff;
  background: linear-gradient(90deg, #ec4899, #f43f5e);
  box-shadow: 0 12px 30px rgba(244, 63, 94, 0.28);
}

.primary-button:hover,
.rank-action:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 38px rgba(244, 63, 94, 0.34);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.ghost-button.light {
  color: #be185d;
  background: #ffffff;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.44);
  font-size: 34px;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

.hero-dots button.active {
  width: 34px;
  background: #ffffff;
}

.home-search-panel,
.content-section,
.search-workspace,
.player-section,
.detail-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.home-search-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  margin-top: -38px;
  position: relative;
  z-index: 4;
  padding: 26px;
  border: 1px solid #fbcfe8;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(244, 114, 182, 0.18);
}

.home-search-panel h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: #111827;
}

.home-search-panel p {
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
}

.home-search-panel form,
.search-large {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid #fbcfe8;
  border-radius: 999px;
  background: #fff7fb;
}

.home-search-panel input,
.search-large input {
  min-width: 0;
  flex: 1;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  outline: 0;
}

.home-search-panel button,
.search-large button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, #ec4899, #f43f5e);
  padding: 12px 22px;
  font-weight: 800;
}

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

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

.section-title span,
.page-hero span {
  display: block;
  color: #ec4899;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.section-title h2 {
  margin: 4px 0 0;
  color: #111827;
  font-size: clamp(24px, 3vw, 34px);
}

.section-title a,
.text-link {
  color: #db2777;
  padding: 0;
  min-height: auto;
}

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

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

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

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

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(31, 41, 55, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(31, 41, 55, 0.14);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #f3f4f6;
}

.movie-card-small .poster-wrap {
  aspect-ratio: 2 / 3;
}

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

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

.movie-year {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 9px;
  padding: 5px 8px;
  color: #ffffff;
  background: #ec4899;
  font-size: 12px;
  font-weight: 900;
}

.poster-mask {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  min-height: 44%;
  align-items: end;
  padding: 14px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.poster-mask span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.6;
}

.movie-info {
  display: block;
  padding: 15px;
}

.movie-info strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 9px;
  color: #111827;
  font-size: 16px;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-info strong {
  color: #db2777;
}

.movie-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
  margin-bottom: 10px;
}

.movie-meta em {
  font-style: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tag-row span {
  border-radius: 999px;
  padding: 5px 8px;
  background: #fce7f3;
  color: #db2777;
  font-size: 12px;
  font-weight: 700;
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 18px 38px rgba(31, 41, 55, 0.12);
}

.category-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.48;
  transition: transform 0.4s ease;
}

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

.category-tile span {
  position: absolute;
  inset: auto 18px 18px;
  color: #ffffff;
}

.category-tile strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.category-tile em {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: normal;
  color: #f3f4f6;
  line-height: 1.65;
}

.horizontal-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 190px;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.page-main {
  padding-bottom: 24px;
}

.page-hero {
  min-height: 340px;
  display: grid;
  place-items: end start;
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.62), transparent 32%),
    linear-gradient(135deg, #111827 0%, #831843 52%, #f43f5e 100%);
}

.page-hero div {
  max-width: 820px;
}

.page-hero span {
  color: #fbcfe8;
}

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

.page-hero p {
  margin: 0;
  color: #fce7f3;
  font-size: 18px;
  line-height: 1.8;
}

.small-hero {
  min-height: 300px;
}

.filter-panel {
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 12px;
  padding: 16px;
  border: 1px solid #fbcfe8;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(244, 114, 182, 0.14);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border-radius: 999px;
  padding: 12px 14px;
  border: 1px solid #fbcfe8;
  background: #fff7fb;
}

.category-overview-card {
  display: grid;
  gap: 16px;
  border: 1px solid #fce7f3;
  border-radius: 24px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
}

.overview-images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 112px 112px;
  gap: 8px;
}

.overview-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.overview-images img:first-child {
  grid-row: span 2;
}

.category-overview-card h2 {
  margin: 0 0 8px;
}

.category-overview-card p {
  margin: 0 0 14px;
  color: #6b7280;
  line-height: 1.75;
}

.ranking-list {
  display: grid;
  gap: 14px;
}

.rank-row {
  display: grid;
  grid-template-columns: 72px 86px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid #fce7f3;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.06);
}

.rank-number {
  font-size: 28px;
  font-weight: 900;
  color: #db2777;
}

.rank-poster img {
  width: 86px;
  height: 112px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-info h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.rank-info p {
  margin: 0 0 10px;
  color: #6b7280;
  line-height: 1.7;
}

.rank-info div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rank-info span {
  border-radius: 999px;
  padding: 5px 10px;
  background: #fce7f3;
  color: #be185d;
  font-weight: 700;
  font-size: 12px;
}

.detail-main {
  background: #ffffff;
}

.detail-hero {
  position: relative;
  min-height: 650px;
  color: #ffffff;
  background-image: var(--poster);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.detail-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.56) 55%, rgba(0, 0, 0, 0.28));
  backdrop-filter: blur(2px);
}

.detail-hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 72px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 64px;
  color: #fce7f3;
}

.breadcrumb a::after {
  content: '/';
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.detail-intro {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 34px;
  align-items: end;
}

.detail-intro > img {
  width: 270px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.45);
}

.detail-intro h1 {
  margin: 16px 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
}

.detail-intro p {
  max-width: 760px;
  color: #e5e7eb;
  font-size: 19px;
  line-height: 1.85;
}

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

.detail-section-title {
  align-items: start;
}

.player-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #020617;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26);
  aspect-ratio: 16 / 9;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.24));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  box-shadow: 0 18px 42px rgba(244, 63, 94, 0.45);
  font-size: 32px;
}

.detail-content {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  padding-top: 54px;
}

.detail-content article,
.detail-content aside {
  border: 1px solid #fce7f3;
  border-radius: 24px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.06);
}

.detail-content h2 {
  margin: 0 0 14px;
  color: #111827;
}

.detail-content p {
  margin: 0 0 26px;
  color: #4b5563;
  line-height: 1.95;
  font-size: 16px;
}

.detail-content p:last-child {
  margin-bottom: 0;
}

.detail-content dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  margin: 0;
}

.detail-content dt {
  color: #9ca3af;
}

.detail-content dd {
  margin: 0;
  color: #374151;
  font-weight: 700;
}

.related-section {
  padding-bottom: 54px;
}

.search-workspace {
  padding: 54px 0;
}

.search-large {
  max-width: 800px;
  margin: 0 auto 18px;
}

.search-status {
  text-align: center;
  color: #6b7280;
  margin-bottom: 28px;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #f9fafb, #f3f4f6);
}

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

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

.footer-grid p {
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #6b7280;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #db2777;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #6b7280;
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  box-shadow: 0 16px 30px rgba(244, 63, 94, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hidden-by-filter {
  display: none !important;
}

@media (max-width: 1100px) {
  .grid-four,
  .grid-five,
  .grid-six {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .desktop-nav {
    gap: 14px;
  }

  .top-search {
    width: 230px;
  }
}

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

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .hero-carousel {
    min-height: 560px;
    height: 72vh;
  }

  .hero-content {
    bottom: 74px;
  }

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

  .home-search-panel,
  .detail-content {
    grid-template-columns: 1fr;
  }

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

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

  .rank-row {
    grid-template-columns: 52px 74px 1fr;
  }

  .rank-action {
    grid-column: 2 / -1;
    width: fit-content;
  }

  .detail-intro {
    grid-template-columns: 160px 1fr;
    align-items: center;
  }

  .detail-intro > img {
    width: 160px;
    border-radius: 18px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .brand {
    font-size: 20px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .hero-carousel {
    min-height: 520px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-control {
    display: none;
  }

  .home-search-panel form,
  .search-large {
    border-radius: 24px;
    flex-direction: column;
  }

  .grid-four,
  .grid-five,
  .grid-six,
  .category-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-strip {
    grid-auto-columns: 168px;
  }

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

  .page-hero {
    min-height: 280px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

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

  .breadcrumb {
    margin-bottom: 30px;
  }

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

  .detail-intro > img {
    width: 210px;
  }

  .player-section,
  .detail-content,
  .content-section,
  .search-workspace {
    width: min(100% - 24px, 1180px);
  }

  .rank-row {
    grid-template-columns: 44px 64px 1fr;
    gap: 12px;
  }

  .rank-poster img {
    width: 64px;
    height: 88px;
  }
}
