:root {
  color-scheme: dark;
  --bg: #09090b;
  --bg-soft: #111113;
  --panel: #18181b;
  --panel-soft: rgba(39, 39, 42, 0.65);
  --line: rgba(82, 82, 91, 0.55);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --dim: #71717a;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;
  --blue: #2563eb;
  --green: #22c55e;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 32rem),
    var(--bg);
  color: var(--text);
}

body::selection {
  background: rgba(34, 211, 238, 0.35);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(63, 63, 70, 0.85);
  background: rgba(9, 9, 11, 0.86);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-strong), var(--blue));
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.28);
}

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

.brand-text strong {
  font-size: 1.16rem;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #67e8f9, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 4px;
  color: var(--dim);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #d4d4d8;
  font-size: 0.94rem;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--cyan);
  background: rgba(39, 39, 42, 0.85);
}

.nav-search,
.mobile-search,
.search-page-form,
.page-filter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.mobile-search input,
.search-page-form input,
.page-filter input {
  width: 240px;
  border: 1px solid rgba(82, 82, 91, 0.85);
  outline: none;
  border-radius: 14px;
  background: rgba(39, 39, 42, 0.74);
  color: var(--text);
  padding: 11px 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.page-filter input:focus {
  border-color: rgba(34, 211, 238, 0.82);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
  background: rgba(24, 24, 27, 0.95);
}

.nav-search button,
.mobile-search button,
.search-page-form button {
  border: 0;
  border-radius: 14px;
  padding: 11px 16px;
  color: white;
  background: linear-gradient(135deg, var(--cyan-strong), var(--blue));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(39, 39, 42, 0.85);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #e4e4e7;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #d4d4d8;
}

.mobile-panel a:hover {
  color: var(--cyan);
  background: rgba(39, 39, 42, 0.8);
}

.hero-slider {
  position: relative;
  min-height: clamp(620px, 78vh, 820px);
  overflow: hidden;
  border-bottom: 1px solid rgba(63, 63, 70, 0.7);
  background: #09090b;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  align-items: center;
  gap: 52px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  filter: blur(18px) saturate(1.12);
  transform: scale(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.94), rgba(9, 9, 11, 0.64), rgba(9, 9, 11, 0.96)),
    linear-gradient(0deg, #09090b, transparent 45%, #09090b);
}

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

.hero-content {
  padding-top: 40px;
}

.eyebrow,
.hero-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 760px;
}

.hero-summary {
  max-width: 720px;
  margin: 26px 0 0;
  color: #d4d4d8;
  font-size: clamp(1.04rem, 2vw, 1.35rem);
  line-height: 1.8;
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  border: 1px solid rgba(82, 82, 91, 0.88);
  border-radius: 999px;
  background: rgba(39, 39, 42, 0.75);
  color: #d4d4d8;
  padding: 6px 11px;
  font-size: 0.84rem;
}

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

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

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

.btn.primary {
  background: linear-gradient(135deg, var(--cyan-strong), var(--blue));
  color: white;
  box-shadow: 0 18px 40px rgba(6, 182, 212, 0.22);
}

.btn.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.34);
  background: var(--panel);
  box-shadow: var(--shadow), 0 0 80px rgba(34, 211, 238, 0.13);
}

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

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

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 48%);
}

.hero-poster span,
.featured-image span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  color: white;
  font-size: 1.5rem;
  background: rgba(6, 182, 212, 0.9);
  box-shadow: 0 18px 45px rgba(6, 182, 212, 0.25);
}

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

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  color: white;
  background: rgba(39, 39, 42, 0.72);
  backdrop-filter: blur(14px);
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 2rem;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  transition: width 0.22s ease, background 0.22s ease;
}

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

.section {
  padding: 70px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.4), rgba(24, 24, 27, 0.65));
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  letter-spacing: -0.04em;
}

.section-head span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section-more {
  flex: 0 0 auto;
  color: var(--cyan);
  font-weight: 800;
}

.category-grid,
.category-large-grid {
  display: grid;
  gap: 18px;
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.category-tile:hover img {
  transform: scale(1.06);
  opacity: 0.6;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 70%);
}

.category-tile span {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
}

.category-tile strong,
.category-tile em {
  display: block;
}

.category-tile strong {
  font-size: 1.24rem;
}

.category-tile em {
  margin-top: 8px;
  color: #d4d4d8;
  font-style: normal;
  line-height: 1.55;
}

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

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

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

.single-column {
  grid-template-columns: 1fr;
}

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

.card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(63, 63, 70, 0.8);
  border-radius: 22px;
  background: rgba(24, 24, 27, 0.68);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.66);
  box-shadow: 0 24px 54px rgba(6, 182, 212, 0.12);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #27272a;
}

.movie-card.compact .poster-frame {
  aspect-ratio: 16 / 10;
}

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

.card-link:hover .poster-frame img {
  transform: scale(1.06);
}

.poster-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 45%);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  opacity: 0;
  color: white;
  background: rgba(6, 182, 212, 0.92);
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-category,
.card-duration {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 9px;
  color: white;
  font-size: 0.76rem;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.card-category {
  left: 12px;
  background: rgba(6, 182, 212, 0.85);
}

.card-duration {
  right: 12px;
}

.card-body {
  display: block;
  padding: 17px;
}

.card-body strong {
  display: -webkit-box;
  min-height: 3.1em;
  overflow: hidden;
  color: #fafafa;
  font-size: 1.08rem;
  line-height: 1.52;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.card-link:hover .card-body strong {
  color: var(--cyan);
}

.card-body em {
  display: -webkit-box;
  min-height: 3.2em;
  margin-top: 8px;
  overflow: hidden;
  color: var(--muted);
  font-style: normal;
  line-height: 1.62;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--dim);
  font-size: 0.82rem;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  padding: 4px 8px;
  font-size: 0.75rem;
}

.featured-band {
  padding: 80px 0;
  border-top: 1px solid rgba(34, 211, 238, 0.15);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  background:
    radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.18), transparent 34rem),
    linear-gradient(135deg, rgba(8, 47, 73, 0.35), rgba(30, 64, 175, 0.22));
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 56px;
}

.featured-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 2px solid rgba(34, 211, 238, 0.28);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

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

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

.featured-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.featured-copy p:not(.eyebrow) {
  color: #d4d4d8;
  line-height: 1.85;
  font-size: 1.04rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.64fr);
  gap: 36px;
}

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

.rank-row,
.ranking-card {
  display: grid;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(63, 63, 70, 0.8);
  border-radius: 18px;
  background: rgba(24, 24, 27, 0.74);
  transition: transform 0.2s ease, border 0.2s ease;
}

.rank-row {
  grid-template-columns: 44px 82px minmax(0, 1fr) auto;
  padding: 10px 14px;
}

.ranking-card {
  grid-template-columns: 64px 130px minmax(0, 1fr);
  padding: 15px;
}

.rank-row:hover,
.ranking-card:hover {
  transform: translateX(4px);
  border-color: rgba(34, 211, 238, 0.62);
}

.rank-number,
.ranking-no {
  font-weight: 900;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}

.rank-row img,
.ranking-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

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

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

.ranking-copy span {
  display: block;
  margin-top: 8px;
  color: var(--dim);
  font-size: 0.88rem;
}

.rank-year {
  color: var(--dim);
}

.page-main {
  min-height: 65vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(34, 211, 238, 0.17), transparent 28rem),
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.16), transparent 30rem),
    rgba(9, 9, 11, 0.88);
}

.compact-hero {
  padding: 86px 0 58px;
  border-bottom: 1px solid rgba(63, 63, 70, 0.7);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  letter-spacing: -0.06em;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: #d4d4d8;
  line-height: 1.8;
}

.page-filter,
.search-page-form {
  margin-top: 28px;
}

.page-filter input,
.search-page-form input {
  width: min(560px, 100%);
}

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

.category-card-large a {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(24, 24, 27, 0.74);
  transition: transform 0.22s ease, border 0.22s ease;
}

.category-card-large a:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.62);
}

.category-covers {
  position: relative;
  min-height: 154px;
}

.category-covers img {
  position: absolute;
  width: 48%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.category-covers img:nth-child(1) {
  left: 0;
  top: 0;
  z-index: 3;
}

.category-covers img:nth-child(2) {
  left: 26%;
  top: 14px;
  z-index: 2;
}

.category-covers img:nth-child(3) {
  right: 0;
  top: 28px;
  z-index: 1;
}

.category-copy {
  align-self: center;
}

.category-copy strong,
.category-copy em,
.category-copy span {
  display: block;
}

.category-copy strong {
  font-size: 1.6rem;
}

.category-copy em {
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.category-copy span {
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 800;
}

.empty-filter {
  display: none;
  padding: 50px 20px;
  text-align: center;
  color: var(--muted);
}

.empty-filter.is-visible {
  display: block;
}

.detail-main {
  padding: 32px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--cyan);
}

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

.detail-primary,
.detail-side {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: #000;
  border: 1px solid rgba(34, 211, 238, 0.24);
  box-shadow: var(--shadow);
}

.movie-video,
.player-cover,
.player-cover img,
.player-cover-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.movie-video {
  z-index: 1;
  background: #000;
}

.player-cover {
  z-index: 3;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  object-fit: cover;
  filter: brightness(0.72);
}

.player-cover-shade {
  background:
    radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.16), transparent 13rem),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.player-play {
  position: relative;
  z-index: 5;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 999px;
  color: white;
  font-size: 2.2rem;
  background: rgba(6, 182, 212, 0.9);
  box-shadow: 0 24px 60px rgba(6, 182, 212, 0.28);
}

.detail-title-block {
  padding: 28px 0 6px;
}

.detail-title-block h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
}

.detail-meta a,
.detail-meta span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(24, 24, 27, 0.72);
}

.detail-meta a {
  color: var(--cyan);
}

.detail-tags {
  margin-top: 18px;
}

.detail-panel,
.side-card {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(63, 63, 70, 0.8);
  border-radius: 24px;
  background: rgba(24, 24, 27, 0.76);
}

.soft-panel {
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.9), rgba(14, 116, 144, 0.11));
}

.detail-panel h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 1.28rem;
}

.detail-panel p {
  margin: 0;
  color: #d4d4d8;
  line-height: 1.9;
}

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

.poster-side {
  padding: 0;
  overflow: hidden;
}

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

.side-card dl,
.side-card dd {
  margin: 0;
}

.side-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(63, 63, 70, 0.65);
}

.side-card div:last-child {
  border-bottom: 0;
}

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

.side-card dd {
  color: #fafafa;
  text-align: right;
}

.side-card dd a {
  color: var(--cyan);
}

.related-section {
  padding-bottom: 0;
}

.search-status {
  margin-bottom: 20px;
  color: var(--muted);
}

.search-status strong {
  color: var(--cyan);
}

.site-footer {
  border-top: 1px solid rgba(63, 63, 70, 0.78);
  background: rgba(9, 9, 11, 0.95);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 0.75fr 0.75fr;
  gap: 36px;
}

.footer-brand p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:not(.brand) {
  color: var(--muted);
}

.site-footer a:not(.brand):hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(63, 63, 70, 0.6);
  color: var(--dim);
  font-size: 0.9rem;
}

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

  .nav-wrap {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.is-open .mobile-panel {
    display: grid;
    gap: 4px;
  }

  .mobile-search input {
    width: 100%;
  }

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

  .hero-slider {
    min-height: 820px;
  }

  .hero-poster {
    width: min(360px, 82vw);
    margin: 0 auto;
  }

  .detail-side {
    position: static;
  }

  .poster-side {
    display: none;
  }

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

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

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

@media (max-width: 720px) {
  .container,
  .footer-grid,
  .footer-bottom,
  .nav-wrap,
  .mobile-panel {
    width: min(100% - 22px, 1180px);
  }

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

  .brand-text small {
    display: none;
  }

  .hero-slider {
    min-height: 760px;
  }

  .hero-slide {
    gap: 28px;
    align-content: center;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-actions,
  .section-head,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .category-grid,
  .grid-three,
  .grid-four {
    grid-template-columns: 1fr;
  }

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

  .category-covers {
    min-height: 220px;
  }

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

  .rank-year {
    display: none;
  }

  .ranking-card {
    grid-template-columns: 48px 96px minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .player-play {
    width: 76px;
    height: 76px;
    font-size: 1.7rem;
  }
}
