:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #fff7ed;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --amber: #d97706;
  --amber-dark: #b45309;
  --orange: #ea580c;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -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%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 10px 22px rgba(217, 119, 6, 0.28);
}

.brand-text {
  font-size: 1.22rem;
  letter-spacing: 0.02em;
}

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

.nav-link,
.mobile-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: var(--amber-dark);
  background: #ffedd5;
}

.header-search {
  width: 258px;
  display: flex;
  align-items: center;
  padding: 4px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
}

.header-search input,
.mobile-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 8px 10px;
  color: var(--text);
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  color: #ffffff;
  padding: 8px 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #374151;
  background: #f3f4f6;
  font-size: 1.25rem;
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.mobile-search {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 14px;
  background: #f3f4f6;
}

.hero-section {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 42%, #fed7aa 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(251, 191, 36, 0.36), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(234, 88, 12, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(248, 250, 252, 0.84));
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 44px;
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 8% -16% auto auto;
  width: 580px;
  height: 580px;
  border-radius: 999px;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(217, 119, 6, 0.22)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(26px);
  opacity: 0.3;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 48px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--amber-dark);
  background: rgba(255, 237, 213, 0.9);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  display: block;
  margin-top: 12px;
  color: var(--amber-dark);
}

.hero-copy p,
.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 1.18rem;
}

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

.hero-tags {
  margin-top: 24px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ffedd5;
  color: #9a3412;
  padding: 6px 11px;
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  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(--amber), var(--orange));
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.28);
}

.btn-light {
  color: var(--amber-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 25px rgba(17, 24, 39, 0.08);
}

.hero-poster {
  position: relative;
  z-index: 2;
  min-height: 520px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  box-shadow: 0 35px 80px rgba(146, 64, 14, 0.32);
}

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

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

.hero-play-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.78);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(180, 83, 9, 0.32);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: var(--amber-dark);
}

.stats-band {
  width: min(1180px, calc(100% - 32px));
  margin: -44px auto 0;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 24px;
  background: #e5e7eb;
  box-shadow: var(--shadow);
}

.stats-band div {
  padding: 26px 20px;
  background: #ffffff;
  text-align: center;
}

.stats-band strong {
  display: block;
  color: var(--amber-dark);
  font-size: 2rem;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

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

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--amber-dark);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 6, 0.28);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.13);
}

.card-poster {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #f59e0b, #fb923c);
}

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

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

.card-poster::after,
.ranking-poster::after,
.side-poster::after,
.category-cover::after,
.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.card-year {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(180, 83, 9, 0.88);
  font-size: 0.78rem;
  font-weight: 850;
}

.card-play {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
}

.card-body {
  padding: 18px;
}

.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.card-body h3 {
  margin: 10px 0 8px;
  font-size: 1.12rem;
  line-height: 1.28;
  font-weight: 900;
}

.card-body h3 a:hover,
.ranking-body h2 a:hover,
.category-overview-card h2 a:hover {
  color: var(--amber-dark);
}

.card-body p {
  min-height: 3.2em;
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 0.94rem;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.card-category,
.card-more,
.inline-more {
  color: var(--amber-dark);
  font-weight: 850;
}

.soft-panel {
  width: 100%;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

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

.category-tile {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: 24px;
  color: #ffffff;
  background-image: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.76)), var(--tile-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.12);
  isolation: isolate;
}

.category-tile span,
.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
}

.category-tile span {
  font-size: 1.3rem;
  font-weight: 900;
}

.category-tile strong {
  margin-top: 5px;
}

.category-tile em {
  margin-top: 8px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.two-column {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 46px 76px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
  transform: translateX(4px);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.rank-number {
  color: var(--amber-dark);
  font-size: 1.3rem;
  font-weight: 950;
}

.rank-item img {
  width: 76px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.rank-info strong,
.rank-info em {
  display: block;
}

.rank-info strong {
  line-height: 1.3;
  font-weight: 900;
}

.rank-info em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.cta-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
  padding: 58px;
  border-radius: 30px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 26px 70px rgba(217, 119, 6, 0.28);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
}

.cta-band p {
  max-width: 740px;
  margin: 16px auto 28px;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 86% 20%, rgba(234, 88, 12, 0.32), transparent 28%),
    linear-gradient(135deg, #fef3c7, #fff7ed 52%, #fed7aa);
}

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

.compact-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.9rem);
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.filter-input,
.big-search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: 0;
  background: #f9fafb;
  color: var(--text);
  padding: 14px 16px;
  font-size: 1rem;
}

.filter-input:focus,
.big-search:focus {
  border-color: rgba(217, 119, 6, 0.62);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.16);
}

.toolbar-note,
.result-count {
  color: var(--muted);
  font-weight: 750;
  white-space: nowrap;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.category-chip {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: #374151;
  font-weight: 800;
}

.category-chip:hover,
.category-chip.active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.result-count {
  margin-bottom: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 750;
}

.breadcrumb a:hover {
  color: var(--amber-dark);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.category-cover {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 22px;
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74)), var(--tile-image);
  background-size: cover;
  background-position: center;
}

.category-cover span {
  position: relative;
  z-index: 2;
  padding: 18px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 950;
}

.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  font-weight: 950;
}

.category-overview-card p {
  color: var(--muted);
}

.category-overview-card strong {
  display: block;
  margin: 12px 0;
  color: var(--amber-dark);
}

.category-overview-card ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: #4b5563;
}

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

.ranking-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
}

.ranking-poster {
  position: relative;
  min-height: 136px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

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

.ranking-poster span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 950;
}

.ranking-body h2 {
  margin: 8px 0 8px;
  font-size: 1.35rem;
  font-weight: 950;
}

.ranking-body p {
  color: #4b5563;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.search-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.search-hints button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #374151;
  padding: 8px 14px;
  font-weight: 800;
}

.search-hints button:hover {
  color: #ffffff;
  background: var(--amber);
}

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

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.detail-main,
.detail-side {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.07);
}

.detail-main {
  padding: 28px;
}

.detail-tags-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.detail-tags-top a,
.detail-tags-top span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffedd5;
  color: #9a3412;
  font-size: 0.84rem;
  font-weight: 850;
}

.detail-main h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.player-card {
  margin: 26px 0;
}

.video-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 18%, rgba(251, 191, 36, 0.24), transparent 28%),
    #111827;
}

.video-player video {
  width: 100%;
  height: 100%;
  background: #111827;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.72));
  cursor: pointer;
}

.player-start span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 48px rgba(234, 88, 12, 0.36);
  font-size: 2rem;
}

.player-start strong {
  font-size: 1.25rem;
}

.player-start em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.video-player.is-playing .player-start {
  display: none;
}

.content-section {
  margin-top: 26px;
}

.content-section h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  font-weight: 950;
}

.content-section p {
  margin: 0;
  color: #374151;
  font-size: 1.02rem;
}

.lead-text {
  font-size: 1.15rem !important;
  color: #111827 !important;
  font-weight: 700;
}

.review-box {
  padding: 22px;
  border-left: 5px solid var(--amber);
  border-radius: 18px;
  background: #fffbeb;
}

.detail-side {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.side-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

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

.info-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f3f4f6;
}

.info-list dt {
  color: var(--muted);
  font-weight: 850;
}

.info-list dd {
  margin: 0;
  color: #111827;
  font-weight: 750;
}

.detail-tag-row {
  margin-bottom: 18px;
}

.side-button {
  width: 100%;
}

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

.static-page {
  max-width: 880px;
  color: #374151;
  font-size: 1.05rem;
}

.static-page h2 {
  margin: 28px 0 10px;
  color: #111827;
  font-size: 1.55rem;
  font-weight: 950;
}

.site-footer {
  margin-top: 40px;
  color: #d1d5db;
  background: #111827;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.75fr);
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 18px;
  color: #9ca3af;
}

.footer-logo .brand-text {
  color: #ffffff;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-links a {
  color: #9ca3af;
}

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

.footer-copy {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  text-align: center;
}

.movie-card.is-hidden,
.ranking-card.is-hidden {
  display: none;
}

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .hero-slide,
  .detail-card,
  .two-column,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    position: relative;
    min-height: auto;
    padding: 80px 0 110px;
  }

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

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

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

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

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

  .detail-side {
    position: static;
  }
}

@media (max-width: 700px) {
  .header-inner {
    min-height: 66px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-poster {
    min-height: 280px;
    border-width: 6px;
    border-radius: 24px;
  }

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

  .stats-band,
  .category-grid,
  .movie-grid,
  .mini-grid,
  .related-grid,
  .all-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .section-block {
    padding: 50px 0;
  }

  .toolbar,
  .search-panel,
  .ranking-card,
  .category-overview-card {
    grid-template-columns: 1fr;
  }

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

  .toolbar-note,
  .result-count {
    white-space: normal;
  }

  .ranking-poster {
    min-height: 210px;
  }

  .category-overview-card {
    display: block;
  }

  .category-cover {
    margin-bottom: 18px;
  }

  .detail-main {
    padding: 18px;
  }

  .cta-band {
    padding: 34px 18px;
    border-radius: 22px;
  }
}
