:root {
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --red: #dc2626;
  --amber: #f59e0b;
  --ink: #111827;
  --muted: #6b7280;
  --soft: #f8fafc;
  --line: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 22%, #f8fafc 100%);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--orange-dark), var(--red), var(--orange));
  box-shadow: 0 12px 35px rgba(194, 65, 12, 0.28);
}

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

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

.brand {
  color: #ffffff;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.brand-name {
  font-size: 22px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 650;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.site-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 265px;
}

.site-search input,
.filter-bar input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  outline: none;
  transition: box-shadow 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.site-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.site-search input:focus {
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.site-search button,
.filter-bar button {
  border: 0;
  border-radius: 14px;
  padding: 10px 16px;
  color: var(--orange-dark);
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-search button:hover,
.filter-bar button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  gap: 8px;
  flex-direction: column;
}

.mobile-search {
  min-width: 0;
  margin-top: 8px;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: 42px;
  padding: 72px max(32px, calc((100vw - 1180px) / 2)) 88px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.05);
  transform: scale(1.08);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(245, 158, 11, 0.38), transparent 34%),
    linear-gradient(90deg, rgba(127, 29, 29, 0.96) 0%, rgba(127, 29, 29, 0.84) 42%, rgba(17, 24, 39, 0.76) 100%);
}

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

.hero-content,
.hero-poster,
.hero-controls {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 32px;
}

.hero-meta span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 14px 32px rgba(220, 38, 38, 0.35);
}

.btn.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}

.hero-poster {
  width: min(360px, 100%);
  justify-self: end;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.4);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
  font-size: 34px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-prev,
.hero-next {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-size: 30px;
}

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

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

.hero-dot.is-active {
  width: 30px;
  background: #ffffff;
}

.quick-panel {
  position: relative;
  z-index: 5;
  margin-top: -44px;
}

.quick-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(254, 215, 170, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.quick-copy h2,
.section-heading h2,
.side-panel h2,
.ranking-panel h2,
.category-info h2,
.text-panel h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.04em;
}

.quick-copy p,
.page-hero p,
.category-info p,
.text-panel p,
.side-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.pill-cloud a {
  color: var(--orange-dark);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pill-cloud a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  transform: translateY(-2px);
}

.section {
  padding: 72px 0;
}

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

.section-heading.compact {
  margin-bottom: 18px;
}

.more-link {
  color: var(--orange-dark);
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 850;
}

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

.movie-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fecaca);
}

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

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.66) 100%);
  opacity: 0.75;
}

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
}

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.card-body {
  padding: 16px;
}

.card-title {
  display: -webkit-box;
  min-height: 48px;
  color: #111827;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.4;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .card-title {
  color: var(--orange);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 13px;
}

.card-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 6px;
}

.card-body p {
  display: -webkit-box;
  height: 44px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  color: var(--orange-dark);
  background: #fff7ed;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 750;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.52fr);
  gap: 28px;
}

.ranking-panel,
.side-panel,
.text-panel {
  border-radius: var(--radius-lg);
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.88);
  box-shadow: var(--shadow-soft);
}

.rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.rank-list.full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rank-item a {
  display: grid;
  grid-template-columns: 44px 82px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.rank-item a:hover {
  transform: translateX(4px);
  border-color: #fed7aa;
  background: #fff7ed;
}

.rank-item img {
  width: 82px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
  background: #fed7aa;
}

.rank-no {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--orange-dark);
  background: #ffedd5;
  font-weight: 900;
}

.rank-item.is-hot .rank-no {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.rank-copy {
  min-width: 0;
}

.rank-copy strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-copy em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-arrow {
  color: var(--orange);
  font-size: 30px;
}

.compact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.compact-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.compact-card img {
  width: 76px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  background: #fed7aa;
}

.compact-card strong,
.compact-card em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-card em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 62px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(127, 29, 29, 0.96), rgba(234, 88, 12, 0.88)),
    var(--page-image, linear-gradient(135deg, #7f1d1d, #ea580c));
  background-size: cover;
  background-position: center;
}

.page-hero.subtle {
  color: var(--ink);
  background: linear-gradient(135deg, #fff7ed, #ffffff 55%, #fef2f2);
}

.page-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: inherit;
  opacity: 0.86;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  font-weight: 750;
}

.breadcrumb a {
  color: inherit;
  opacity: 0.86;
}

.breadcrumb a:hover {
  opacity: 1;
}

.filter-bar {
  display: flex;
  gap: 10px;
  width: min(720px, 100%);
  margin-top: 26px;
}

.filter-bar input {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(229, 231, 235, 0.95);
}

.filter-bar input::placeholder {
  color: #9ca3af;
}

.filter-bar button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

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

.category-card a {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 190px;
  background: linear-gradient(135deg, #fed7aa, #fecaca);
}

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

.category-info {
  padding: 26px;
}

.category-info span {
  color: var(--orange-dark);
  font-weight: 850;
}

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

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--detail-image);
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.08);
  transform: scale(1.08);
}

.detail-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 20%, rgba(245, 158, 11, 0.28), transparent 32%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.97), rgba(127, 29, 29, 0.86), rgba(17, 24, 39, 0.88));
}

.detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px;
  padding-top: 44px;
  padding-bottom: 56px;
}

.detail-grid .breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.36);
  background: linear-gradient(135deg, var(--orange), var(--red));
}

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

.detail-copy h1 {
  margin: 16px 0 14px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.detail-copy .lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.8;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 20px;
}

.detail-meta div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.detail-meta dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.detail-meta dd {
  margin: 6px 0 0;
  font-weight: 850;
}

.detail-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.detail-actions {
  margin-top: 24px;
}

.player-section {
  padding-bottom: 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #0f172a;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #0f172a;
  object-fit: contain;
  cursor: pointer;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 18px 44px rgba(220, 38, 38, 0.35);
  font-size: 34px;
}

.player-start strong {
  font-size: 20px;
}

.text-panel {
  font-size: 17px;
}

.text-panel h2 + p {
  margin-top: 14px;
}

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

.site-footer {
  margin-top: 48px;
  color: #fff7ed;
  background: linear-gradient(135deg, #7f1d1d, #111827);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: 28px;
  padding: 42px 0;
}

.footer-brand {
  color: #ffffff;
  font-size: 22px;
}

.site-footer p {
  max-width: 520px;
  color: rgba(255, 247, 237, 0.78);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 247, 237, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 247, 237, 0.68);
  font-size: 14px;
}

.search-empty {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid #eef2f7;
  box-shadow: var(--shadow-soft);
}

.is-filtered-out {
  display: none;
}

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

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

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

  .mobile-nav .nav-link {
    color: #ffffff;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    min-height: 680px;
    padding-top: 58px;
  }

  .hero-poster {
    display: none;
  }

  .quick-grid,
  .split-section,
  .footer-inner,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .pill-cloud {
    justify-content: flex-start;
  }

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

  .rank-list.full,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .brand-name {
    font-size: 18px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-slide {
    padding: 46px 20px 92px;
  }

  .hero h1 {
    font-size: clamp(36px, 14vw, 58px);
  }

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

  .quick-panel {
    margin-top: 0;
  }

  .quick-grid,
  .ranking-panel,
  .side-panel,
  .text-panel,
  .category-info {
    padding: 20px;
  }

  .section {
    padding: 48px 0;
  }

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

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

  .card-body {
    padding: 13px;
  }

  .card-title {
    font-size: 15px;
    min-height: 42px;
  }

  .card-body p,
  .tag-row {
    display: none;
  }

  .rank-item a {
    grid-template-columns: 38px 68px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .rank-item img {
    width: 68px;
    height: 46px;
  }

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

  .category-thumbs {
    min-height: 140px;
  }

  .detail-grid {
    padding-top: 28px;
    padding-bottom: 38px;
  }

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

  .filter-bar {
    flex-direction: column;
  }

  .player-shell {
    border-radius: 18px;
  }
}

@media (max-width: 460px) {
  .movie-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-controls {
    width: calc(100% - 28px);
    justify-content: space-between;
  }

  .hero-dots {
    display: none;
  }
}
