* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #1f2933;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 45%, #fff3c4 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, #facc15 0%, #fde047 50%, #f59e0b 100%);
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.16);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #f59e0b;
  box-shadow: 0 10px 24px rgba(120, 53, 15, 0.22);
  font-size: 18px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  color: #111827;
  font-size: 22px;
  line-height: 1.05;
}

.brand-text em {
  color: #6b4b0d;
  font-style: normal;
  font-size: 12px;
}

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

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #3f2d00;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.header-search input,
.mobile-search input,
.wide-search input,
.search-panel input,
.search-panel select {
  border: 0;
  outline: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
}

.header-search input {
  width: 160px;
  padding: 10px 14px;
}

.header-search button,
.mobile-search button,
.wide-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: #111827;
  color: #ffffff;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #111827;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(146, 64, 14, 0.2);
}

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

.mobile-nav-inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.mobile-search {
  display: flex;
  gap: 8px;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
  background: radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.72), transparent 22%), linear-gradient(135deg, #facc15 0%, #fcd34d 42%, #f59e0b 100%);
}

.hero-orb {
  position: absolute;
  border: 4px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  animation: floatPulse 6s ease-in-out infinite;
}

.hero-orb-one {
  width: 108px;
  height: 108px;
  top: 44px;
  left: 7%;
}

.hero-orb-two {
  width: 210px;
  height: 210px;
  right: 6%;
  bottom: 34px;
  animation-delay: 1.4s;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translateY(-18px) scale(1.06);
    opacity: 0.42;
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.1);
  color: #3f2d00;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy h1 {
  margin: 20px 0 18px;
  color: #111827;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-copy p {
  max-width: 560px;
  margin: 0 0 30px;
  color: #4b3600;
  font-size: 19px;
}

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

.hero-cats {
  margin-top: 22px;
}

.hero-cats a {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: #3f2d00;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(120, 53, 15, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 46px rgba(120, 53, 15, 0.28);
}

.btn-dark {
  background: #111827;
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: #111827;
}

.hero-stage {
  position: relative;
  min-height: 500px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  opacity: 0;
  transform: translateX(30px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-image {
  display: block;
  min-height: 380px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(135deg, #111827, #78350f);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.38);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.hero-slide-card {
  width: min(88%, 520px);
  margin: -104px auto 0;
  position: relative;
  z-index: 3;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.22);
  backdrop-filter: blur(18px);
}

.hero-slide-card span {
  color: #b45309;
  font-weight: 900;
}

.hero-slide-card h2 {
  margin: 8px 0;
  font-size: 28px;
  line-height: 1.15;
  color: #111827;
}

.hero-slide-card p {
  margin: 0;
  color: #4b5563;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.88);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.32);
}

.hero-controls button {
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 22px;
  line-height: 1;
}

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

.hero-dot {
  width: 9px !important;
  height: 9px !important;
  padding: 0;
  background: rgba(255, 255, 255, 0.38) !important;
}

.hero-dot.is-active {
  width: 28px !important;
  border-radius: 999px !important;
  background: #facc15 !important;
}

.stats-strip {
  background: #ffffff;
  padding: 34px 0;
  box-shadow: 0 10px 26px rgba(120, 53, 15, 0.08);
}

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

.stats-grid div {
  padding: 22px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffbeb, #ffffff);
  box-shadow: 0 12px 28px rgba(146, 64, 14, 0.08);
}

.stats-grid strong {
  display: block;
  color: #111827;
  font-size: 28px;
}

.stats-grid span {
  color: #6b7280;
}

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

.tinted {
  background: linear-gradient(135deg, #fffbeb 0%, #fff7d1 100%);
}

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

.section-heading h2,
.rank-panel-head h2,
.category-block h2,
.article-card h2,
.side-card h2,
.player-panel h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
}

.section-heading p {
  margin: 8px 0 0;
  color: #6b7280;
}

.section-more,
.rank-panel-head a,
.filter-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b45309;
  font-weight: 900;
}

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

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

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

.compact-grid {
  gap: 18px;
}

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.18);
}

.poster-link,
.poster-shell {
  display: block;
}

.poster-shell {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #111827, #92400e);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.66));
  opacity: 0.9;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.82);
  border-radius: 50%;
  background: #facc15;
  color: #111827;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.poster-year {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.82);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.movie-card-body {
  padding: 18px;
}

.movie-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9a6700;
  font-size: 13px;
  font-weight: 800;
}

.movie-card h2 {
  margin: 9px 0 8px;
  color: #111827;
  font-size: 19px;
  line-height: 1.3;
}

.movie-card h2 a:hover {
  color: #b45309;
}

.movie-card p {
  margin: 0 0 14px;
  color: #5b6472;
  font-size: 14px;
}

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

.tag-row span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #fef3c7;
  color: #a16207;
  font-size: 12px;
  font-weight: 800;
}

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

.category-tile,
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #fff4bd);
  box-shadow: 0 14px 30px rgba(146, 64, 14, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:after,
.category-card:after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.5);
}

.category-tile:hover,
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(146, 64, 14, 0.16);
}

.category-tile span,
.category-card span {
  color: #a16207;
  font-weight: 900;
}

.category-tile strong,
.category-card strong {
  color: #111827;
  font-size: 25px;
  line-height: 1.1;
}

.category-tile em,
.category-card em {
  color: #6b7280;
  font-style: normal;
  font-weight: 700;
}

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

.rank-panel,
.side-card,
.article-card,
.player-panel {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
}

.rank-panel {
  position: sticky;
  top: 102px;
  padding: 24px;
}

.rank-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

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

.media-row {
  display: grid;
  grid-template-columns: auto 88px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border-radius: 16px;
  background: #fffbeb;
  transition: background 0.25s ease, transform 0.25s ease;
}

.media-row:hover {
  background: #fef3c7;
  transform: translateX(3px);
}

.rank-num {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111827;
  color: #facc15;
  font-weight: 900;
}

.media-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #111827, #92400e);
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-text {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.media-text strong,
.media-text em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-text strong {
  color: #111827;
}

.media-text em {
  color: #6b7280;
  font-style: normal;
  font-size: 13px;
}

.cta-band {
  padding: 74px 0;
  background: linear-gradient(90deg, #facc15, #f59e0b);
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 52px);
  color: #111827;
}

.cta-inner p {
  margin: 0 0 24px;
  color: #4b3600;
  font-size: 18px;
}

.page-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #facc15, #f59e0b);
}

.slim-hero h1 {
  margin: 18px 0 10px;
  color: #111827;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1;
}

.slim-hero p {
  max-width: 720px;
  margin: 0;
  color: #4b3600;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  color: #4b3600;
  font-weight: 800;
}

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

.list-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.wide-search {
  flex: 1;
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.wide-search input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  background: #fff7d1;
}

.pagination {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.pagination a,
.pagination strong,
.pagination span {
  min-width: 40px;
  height: 40px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

.pagination strong {
  background: #111827;
  color: #facc15;
}

.category-overview {
  display: grid;
  gap: 46px;
}

.category-block h2 {
  margin-bottom: 18px;
}

.rank-grid {
  display: grid;
  gap: 18px;
}

.rank-card {
  position: relative;
}

.rank-badge {
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111827;
  color: #facc15;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.22);
}

.movie-card-wide {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.movie-card-wide .poster-shell {
  height: 100%;
  aspect-ratio: auto;
}

.search-panel {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.1);
  margin-bottom: 22px;
}

.search-panel label {
  display: grid;
  gap: 8px;
  color: #4b5563;
  font-weight: 800;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 2px solid #fde68a;
  border-radius: 14px;
}

.search-panel input:focus,
.search-panel select:focus {
  border-color: #f59e0b;
}

.search-status {
  margin-bottom: 18px;
  color: #92400e;
  font-weight: 900;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: #111827;
  color: #ffffff;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  filter: blur(12px);
  transform: scale(1.08);
}

.detail-backdrop:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.48));
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #111827, #92400e);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

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

.detail-copy h1 {
  margin: 14px 0 14px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
}

.detail-copy .breadcrumb {
  color: #fde68a;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 20px;
  color: #fef3c7;
  font-size: 19px;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.detail-primary {
  display: grid;
  gap: 24px;
}

.player-panel,
.article-card,
.side-card {
  padding: 24px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 24px;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.movie-video,
.video-cover,
.video-cover img {
  width: 100%;
  height: 100%;
}

.movie-video {
  background: #000000;
  object-fit: contain;
}

.video-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #111827;
  display: grid;
  place-items: center;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-cover img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.72;
}

.video-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.12), rgba(0, 0, 0, 0.68));
}

.play-ring {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #facc15;
  color: #111827;
  font-size: 30px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}

.video-cover:hover .play-ring {
  transform: scale(1.08);
}

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

.player-status {
  margin: 12px 0 0;
  color: #b45309;
  font-weight: 800;
}

.article-card p {
  margin: 16px 0 0;
  color: #4b5563;
  font-size: 17px;
}

.detail-side {
  position: sticky;
  top: 102px;
}

.side-card h2 {
  margin-bottom: 18px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #facc15;
  color: #111827;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  background: linear-gradient(90deg, #111827, #1f2937);
  color: #d1d5db;
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand {
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
}

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

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 8px 0;
  color: #d1d5db;
}

.site-footer a:hover {
  color: #facc15;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

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

  .hero-grid,
  .split-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 480px;
  }

  .rank-panel,
  .detail-side {
    position: static;
  }

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

  .search-panel {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .primary-nav {
    display: none;
  }

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

  .header-inner {
    height: 66px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text em {
    display: none;
  }

  .hero-section {
    padding: 56px 0 76px;
  }

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

  .hero-stage {
    min-height: 430px;
  }

  .hero-image,
  .hero-image img {
    min-height: 320px;
  }

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

  .stats-grid,
  .three-cols,
  .four-cols,
  .category-grid,
  .category-card-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-poster {
    width: min(280px, 70vw);
  }

  .movie-card-wide {
    grid-template-columns: 1fr;
  }

  .wide-search,
  .mobile-search {
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-copy h1,
  .detail-copy h1,
  .slim-hero h1 {
    letter-spacing: -0.035em;
  }

  .hero-actions,
  .hero-cats {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .hero-cats a {
    width: 100%;
  }

  .hero-slide-card {
    width: 94%;
    margin-top: -84px;
    padding: 18px;
  }

  .stats-grid,
  .three-cols,
  .four-cols,
  .category-grid,
  .category-card-grid,
  .footer-grid,
  .search-panel {
    grid-template-columns: 1fr;
  }

  .media-row {
    grid-template-columns: auto 78px 1fr;
  }

  .player-panel,
  .article-card,
  .side-card {
    padding: 18px;
    border-radius: 18px;
  }

  .video-frame {
    border-radius: 16px;
  }
}
