:root {
  --rose: #f43f5e;
  --pink: #ec4899;
  --purple: #7e22ce;
  --ink: #1f2937;
  --muted: #667085;
  --paper: #ffffff;
  --soft: #fff1f2;
  --line: rgba(15, 23, 42, 0.08);
  --shadow: 0 24px 80px rgba(136, 19, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f9fafb 0%, #fff1f2 48%, #fdf2f8 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px rgba(244, 63, 94, 0.08);
}

.site-nav {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #be123c;
}

.logo-dot {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 14px 36px rgba(244, 63, 94, 0.35);
  font-size: 14px;
}

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

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: #475467;
  font-weight: 700;
  transition: 0.22s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.22);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #fff1f2;
  color: #be123c;
}

.hero-shell {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #881337 0%, #831843 55%, #581c87 100%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.18), transparent 26%), linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(136, 19, 55, 0.64), rgba(88, 28, 135, 0.62));
}

.hero-content {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  padding: 72px 0 170px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fde68a;
  font-weight: 800;
}

.hero-kicker span,
.hero-kicker em {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-style: normal;
  backdrop-filter: blur(12px);
}

.hero-content h1 {
  width: min(780px, 100%);
  margin: 0 0 14px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.hero-content h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
}

.hero-content p {
  width: min(760px, 100%);
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.primary-button,
.ghost-button,
.text-button,
.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.primary-button {
  min-height: 56px;
  padding: 0 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 22px 44px rgba(244, 63, 94, 0.35);
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 26px 60px rgba(244, 63, 94, 0.45);
}

.ghost-button {
  min-height: 56px;
  padding: 0 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

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

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

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

.hero-thumbs {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 8;
  width: min(1200px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.hero-thumb {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  transition: 0.24s ease;
}

.hero-thumb:hover,
.hero-thumb.is-active {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-4px);
}

.hero-thumb img {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
}

.hero-thumb b,
.hero-thumb small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-thumb b {
  font-size: 14px;
  margin-bottom: 4px;
}

.hero-thumb small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.quick-search {
  width: min(1100px, calc(100% - 32px));
  margin: -34px auto 34px;
  position: relative;
  z-index: 12;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.quick-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  outline: none;
  background: #fff;
  transition: 0.2s ease;
}

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

.quick-search button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose), var(--pink));
}

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

.quick-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: #be123c;
  background: #fff1f2;
  font-weight: 800;
  font-size: 14px;
}

.content-section {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.white-section {
  width: 100%;
  padding-left: max(16px, calc((100% - 1200px) / 2));
  padding-right: max(16px, calc((100% - 1200px) / 2));
  background: rgba(255, 255, 255, 0.82);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-heading span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff1f2;
  box-shadow: 0 14px 30px rgba(244, 63, 94, 0.14);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 950;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 220px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: 0.28s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 78px rgba(136, 19, 55, 0.16);
}

.category-card::before,
.category-overview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.92), rgba(236, 72, 153, 0.9));
  transition: 0.28s ease;
}

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

.category-card img {
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 34px;
  opacity: 0.14;
  transform: rotate(-8deg);
}

.category-icon,
.category-card b,
.category-card small,
.category-overview-card h2,
.category-overview-card p,
.category-overview-card a,
.category-cover {
  position: relative;
  z-index: 2;
}

.category-icon {
  display: block;
  font-size: 44px;
  margin-bottom: 44px;
}

.category-card b {
  display: block;
  font-size: 21px;
  margin-bottom: 10px;
}

.category-card small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.category-card:hover,
.category-card:hover small,
.category-overview-card:hover,
.category-overview-card:hover p {
  color: #fff;
}

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

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

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

.poster-link {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  background: #ffe4e6;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.76));
  transition: opacity 0.28s ease;
}

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

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(244, 63, 94, 0.9);
  transform: translate(-50%, -50%) scale(0.84);
  opacity: 0;
  transition: 0.28s ease;
  box-shadow: 0 18px 34px rgba(244, 63, 94, 0.35);
}

.movie-card:hover .play-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.rank-badge,
.year-badge {
  position: absolute;
  top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.rank-badge {
  left: 14px;
  min-width: 34px;
  background: linear-gradient(135deg, #f59e0b, #f43f5e);
}

.year-badge {
  right: 14px;
  background: rgba(15, 23, 42, 0.68);
}

.movie-card-body {
  padding: 14px 3px 0;
}

.movie-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.movie-tags span,
.detail-tags span {
  padding: 5px 9px;
  border-radius: 8px;
  color: #be123c;
  background: #fff1f2;
  font-size: 12px;
  font-weight: 800;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

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

.movie-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.movie-meta a,
.movie-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

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

.side-panel {
  border-radius: 28px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.sticky-panel {
  position: sticky;
  top: 96px;
}

.side-panel h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 950;
}

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

.mini-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 18px;
  transition: 0.2s ease;
}

.mini-card:hover {
  background: #fff1f2;
  transform: translateX(4px);
}

.mini-card img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
}

.mini-card span {
  min-width: 0;
}

.mini-card b,
.mini-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-card b {
  font-size: 14px;
  margin-bottom: 3px;
}

.mini-card small {
  color: var(--muted);
  font-size: 12px;
}

.mini-rank {
  float: left;
  margin-right: 8px;
  min-width: 26px;
  height: 26px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  font-size: 12px;
  font-weight: 900;
}

.panel-link,
.text-button {
  margin-top: 20px;
  min-height: 44px;
  padding: 0 18px;
  color: #be123c;
  background: #fff1f2;
}

.panel-link:hover,
.text-button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
}

.page-hero {
  min-height: 320px;
  color: #fff;
  background: radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.22), transparent 26%), linear-gradient(135deg, #e11d48, #db2777 55%, #7e22ce);
  display: flex;
  align-items: center;
}

.page-hero > div {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.page-hero span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p {
  width: min(720px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.7;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 190px));
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(136, 19, 55, 0.09);
}

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

.category-overview-card {
  min-height: auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
}

.category-cover {
  min-height: 132px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.category-cover img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 18px;
}

.category-cover span {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
}

.category-overview-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 950;
}

.category-overview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-hero {
  position: relative;
  min-height: 520px;
  color: #fff;
  overflow: hidden;
  background: #111827;
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.detail-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(88, 28, 135, 0.62), rgba(244, 63, 94, 0.38));
}

.detail-info {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0;
}

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

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

.detail-info h1 {
  width: min(880px, 100%);
  margin: 0 0 18px;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-info p {
  width: min(760px, 100%);
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.75;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-meta span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

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

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

.main-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

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

.cover-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.22), rgba(15, 23, 42, 0.78));
}

.big-play {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 24px 60px rgba(244, 63, 94, 0.38);
  font-size: 34px;
  padding-left: 4px;
}

.player-cover strong {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.18;
  text-align: left;
}

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

.detail-side {
  overflow: hidden;
  border-radius: 28px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-side img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.detail-side h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 950;
}

.detail-side p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.article-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.article-section article {
  border-radius: 28px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
}

.article-section h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 950;
}

.article-section p {
  margin: 0;
  color: #475467;
  line-height: 1.9;
  font-size: 17px;
}

.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 44px auto 0;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: #667085;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.site-footer strong {
  color: #be123c;
}

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

.no-results {
  display: none;
  grid-column: 1 / -1;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  color: #667085;
  text-align: center;
  box-shadow: var(--shadow);
}

.searchable-grid.has-empty::after {
  content: "没有找到匹配的影片";
  grid-column: 1 / -1;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  color: #667085;
  text-align: center;
  box-shadow: var(--shadow);
}

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

  .split-section,
  .player-layout,
  .article-section,
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .side-panel,
  .sticky-panel {
    position: static;
  }

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

@media (max-width: 760px) {
  .site-nav {
    min-height: 64px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    text-align: center;
  }

  .hero-shell,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding: 64px 0 240px;
  }

  .hero-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 196px;
    overflow: auto;
  }

  .hero-dots {
    bottom: 226px;
  }

  .quick-search form,
  .filter-bar {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-logo strong {
    font-size: 18px;
  }

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

  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p,
  .detail-info p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-thumbs,
  .category-grid,
  .movie-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .poster-link {
    aspect-ratio: 16 / 9;
  }

  .detail-info h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .player-card {
    border-radius: 20px;
  }

  .big-play {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
