:root {
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --ink: #171717;
  --muted: #6b7280;
  --soft: #fff7ed;
  --line: rgba(120, 53, 15, 0.12);
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 60px rgba(146, 64, 14, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 36%, #fef3c7 100%);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 12%, rgba(245, 158, 11, 0.22), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(249, 115, 22, 0.22), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(251, 191, 36, 0.2), transparent 34%);
}

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

img {
  display: block;
  max-width: 100%;
  background: linear-gradient(135deg, #fde68a, #fed7aa);
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 251, 235, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(146, 64, 14, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange-deep));
  box-shadow: 0 14px 28px rgba(234, 88, 12, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--amber-dark), var(--orange-deep));
  -webkit-background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-link {
  border-radius: 14px;
  color: #3f3f46;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-link {
  padding: 10px 16px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 30px rgba(234, 88, 12, 0.22);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fff7ed;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 20px;
  background: var(--orange-deep);
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

.mobile-link {
  display: block;
  padding: 12px 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  padding: 36px 0 26px;
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.88), rgba(254, 243, 199, 0.94));
}

.hero-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.44;
}

.hero-orb-one {
  top: 40px;
  left: -120px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.42), transparent 68%);
}

.hero-orb-two {
  right: -80px;
  bottom: 60px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.38), transparent 70%);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: 48px;
  padding: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 34px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px) scale(0.985);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 237, 213, 0.76));
  box-shadow: var(--shadow);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(1.25);
  transform: scale(1.08);
}

.hero-content h1 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  color: var(--orange-deep);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-content p,
.page-hero p,
.section-heading p,
.spotlight-panel p,
.category-tile em,
.category-board p {
  color: var(--muted);
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 24px;
  font-size: 1.1rem;
}

.hero-tags,
.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.meta-pills span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #78350f;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
}

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

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

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 36px rgba(234, 88, 12, 0.28);
}

.btn-glass {
  color: #78350f;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.btn-glass.dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-ghost {
  color: var(--orange-deep);
  background: rgba(254, 243, 199, 0.82);
}

.hero-poster {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(146, 64, 14, 0.22);
  transform: rotate(2deg);
}

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

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

.hero-poster span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 16px;
  color: #fff;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.hero-controls {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.hero-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 28px rgba(234, 88, 12, 0.2);
  cursor: pointer;
}

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

.hero-dot {
  width: 10px !important;
  height: 10px !important;
  min-height: 10px;
  padding: 0;
  opacity: 0.42;
}

.hero-dot.is-active {
  width: 26px !important;
  opacity: 1;
}

.hero-category-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}

.hero-category-bar a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #78350f;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-weight: 800;
}

.section {
  padding: 76px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.48);
}

.section-warm {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.7), rgba(255, 237, 213, 0.7));
}

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

.section-heading span {
  color: var(--orange-deep);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.section-heading p {
  max-width: 620px;
  margin: 10px 0 0;
}

.section-heading > a,
.compact-heading > a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--orange-deep);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  font-weight: 800;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 0.22fr));
  gap: 14px;
  padding: 16px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(146, 64, 14, 0.08);
}

.filter-panel label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.filter-panel span {
  color: #92400e;
  font-size: 0.82rem;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 14px;
  padding: 0 14px;
  color: #292524;
  background: #fff;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(146, 64, 14, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(249, 115, 22, 0.28);
  box-shadow: 0 28px 60px rgba(146, 64, 14, 0.18);
}

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

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5));
  opacity: 0.92;
}

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

.year-badge {
  left: 12px;
  background: rgba(0, 0, 0, 0.48);
}

.score-badge {
  right: 12px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.movie-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 15px;
}

.movie-card-body strong {
  overflow: hidden;
  color: #1f2937;
  font-size: 1.04rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.movie-card-body small {
  overflow: hidden;
  color: var(--muted);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.movie-card-body em {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  color: #57534e;
  font-size: 0.9rem;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card.is-compact .movie-card-body em {
  display: none;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 44px 82px minmax(0, 1fr) 54px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(146, 64, 14, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  border-color: rgba(249, 115, 22, 0.28);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
}

.rank-row img {
  width: 82px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
}

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

.rank-info strong,
.rank-info small,
.rank-info em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-info strong {
  font-size: 1rem;
}

.rank-info small,
.rank-info em {
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
}

.rank-score {
  color: var(--orange-deep);
  font-weight: 900;
}

.spotlight-panel,
.content-card,
.side-card,
.category-tile,
.category-board {
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(146, 64, 14, 0.1);
}

.spotlight-panel {
  position: sticky;
  top: 96px;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(120, 53, 15, 0.92), rgba(234, 88, 12, 0.88)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 35%);
}

.spotlight-panel h2 {
  margin: 18px 0 10px;
  font-size: 2rem;
  line-height: 1.2;
}

.spotlight-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.category-tile,
.category-board {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-board:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(146, 64, 14, 0.18);
}

.category-tile span,
.category-index {
  color: var(--orange-deep);
  font-weight: 900;
}

.category-tile strong,
.category-board strong {
  font-size: 1.25rem;
}

.category-tile em {
  font-style: normal;
  font-size: 0.92rem;
}

.channel-collection {
  padding-bottom: 76px;
}

.channel-strip {
  margin-bottom: 44px;
}

.sub-page .page-hero {
  padding: 86px 0 70px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.8), rgba(254, 243, 199, 0.72));
}

.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  font-size: 1.08rem;
}

.small-actions {
  margin-top: 22px;
}

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

.category-board {
  min-height: 280px;
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.category-covers img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
}

.full-rank-list {
  gap: 10px;
}

.empty-state {
  padding: 24px;
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 52px 0 70px;
  color: #fff;
  background: #1c1917;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 25, 23, 0.96), rgba(28, 25, 23, 0.58), rgba(28, 25, 23, 0.88));
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px) saturate(1.2);
  transform: scale(1.05);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.3);
}

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

.detail-poster span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  font-weight: 900;
}

.detail-copy h1 {
  margin: 18px 0 16px;
  max-width: 860px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.detail-tags span,
.detail-copy .meta-pills span {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff7ed;
}

.detail-player-section {
  padding-top: 58px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #0c0a09;
  box-shadow: 0 28px 70px rgba(28, 25, 23, 0.28);
}

.player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0c0a09;
  cursor: pointer;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  cursor: pointer;
}

.player-shell.is-playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}

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

.player-overlay strong {
  font-size: 1.1rem;
}

.content-card {
  margin-top: 24px;
  padding: 30px;
}

.content-card h2,
.side-card h2,
.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1.28rem;
}

.content-card p {
  margin: 0 0 22px;
  color: #44403c;
}

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

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 24px;
}

.side-card dl {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
}

.side-card dt {
  color: var(--muted);
}

.side-card dd {
  margin: 0;
  font-weight: 700;
}

.side-link {
  display: block;
  padding: 12px 14px;
  margin-top: 10px;
  border-radius: 14px;
  color: var(--orange-deep);
  background: #fff7ed;
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, #1c1917, #292524 55%, #111827);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.8fr;
  gap: 36px;
  padding: 54px 0;
}

.brand-footer .brand-text strong,
.site-footer h2 {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
}

.footer-brand p {
  max-width: 460px;
  margin: 18px 0 0;
}

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

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

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

.footer-bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  text-align: center;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .movie-grid,
  .small-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

  .menu-toggle {
    display: block;
  }

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

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-slider {
    height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .hero-poster {
    min-height: 320px;
    transform: none;
  }

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

  .search-box {
    grid-column: 1 / -1;
  }

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

  .category-board-grid,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

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

  .brand-text strong {
    font-size: 1rem;
  }

  .hero-slider {
    height: 720px;
  }

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

  .hero-actions,
  .spotlight-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

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

  .rank-row {
    grid-template-columns: 34px 64px minmax(0, 1fr);
  }

  .rank-row img {
    width: 64px;
    height: 48px;
  }

  .rank-score {
    display: none;
  }

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

  .detail-hero {
    padding-top: 34px;
  }

  .content-card,
  .side-card {
    padding: 20px;
  }
}
