:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --cyan-700: #0e7490;
  --cyan-600: #0891b2;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --blue-500: #3b82f6;
  --orange-500: #f97316;
  --green-500: #22c55e;
  --red-500: #ef4444;
  --pink-500: #ec4899;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--slate-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, var(--slate-800), var(--slate-700), #164e63);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.28);
}

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

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

.brand-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  box-shadow: 0 12px 28px rgba(6, 182, 212, 0.32);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08) rotate(-2deg);
}

.brand-icon span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

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

.brand-text em {
  margin-top: 3px;
  color: var(--slate-300);
  font-size: 0.78rem;
  font-style: normal;
}

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

.desktop-nav a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--cyan-400);
}

.header-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: min(280px, 26vw);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 10px 12px 10px 16px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.64);
}

.header-search button {
  border: 0;
  color: #fff;
  cursor: pointer;
  background: var(--cyan-600);
  padding: 10px 15px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 12% 10%, rgba(34, 211, 238, 0.3), transparent 30%), linear-gradient(135deg, var(--slate-800), var(--slate-700) 44%, #164e63);
  padding: 64px 0 72px;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -8% -42% auto;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.16);
  filter: blur(8px);
}

.hero-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.hero-heading h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-heading p {
  margin: 0 auto 28px;
  max-width: 680px;
  color: var(--slate-200);
  font-size: 1.12rem;
}

.hero-search {
  display: flex;
  width: min(620px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.32);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.25);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  padding: 16px 22px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hero-search button {
  border: 0;
  color: #fff;
  background: var(--cyan-600);
  padding: 0 26px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-search button:hover {
  background: var(--cyan-700);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hero-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--slate-700), var(--slate-900));
  box-shadow: var(--shadow-lg);
  transform: translateZ(0);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  opacity: 0.96;
  transition: transform 0.7s ease;
}

.hero-card.image-missing {
  background: linear-gradient(135deg, #0f172a, #164e63 55%, #0891b2);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.86));
}

.hero-card:hover img {
  transform: scale(1.1);
}

.hero-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  border-radius: 999px;
  background: var(--cyan-500);
  padding: 7px 13px;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 30px;
  transform: translateY(10px);
  transition: transform 0.25s ease;
}

.hero-card:hover .hero-card-copy {
  transform: translateY(0);
}

.hero-card-copy h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.hero-card-copy p {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--slate-200);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-card-copy div {
  color: var(--slate-300);
  font-size: 0.95rem;
}

.hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #fff;
  background: rgba(6, 182, 212, 0.9);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.soft-section {
  background: linear-gradient(90deg, var(--slate-100), #ecfeff);
  padding: 64px 0;
}

.dark-section {
  color: #fff;
  background: var(--slate-800);
  padding: 64px 0;
}

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

.section-title-row h2 {
  margin: 4px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.compact-title {
  align-items: center;
  margin-bottom: 20px;
}

.section-kicker {
  color: var(--cyan-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.light-title .section-kicker,
.dark-section .section-kicker {
  color: var(--cyan-400);
}

.section-more {
  color: var(--cyan-600);
  font-weight: 700;
  white-space: nowrap;
}

.dark-section .section-more,
.light-title .section-more {
  color: var(--cyan-400);
}

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

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

.movie-card {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dark-section .movie-card {
  background: var(--slate-900);
}

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

.movie-card-link {
  display: block;
  height: 100%;
}

.poster-frame {
  position: relative;
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), #164e63);
}

.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-frame.image-missing::after,
.rank-thumb.image-missing::after,
.detail-poster.image-missing::after,
.category-tile-images.image-missing::after,
.overview-image-grid.image-missing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.28), transparent 42%), linear-gradient(135deg, var(--slate-800), #164e63);
}

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

.card-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.card-meta-row span {
  border-radius: 999px;
  background: #ecfeff;
  color: var(--cyan-700);
  padding: 3px 9px;
  font-size: 0.76rem;
  font-weight: 700;
}

.dark-section .card-meta-row span {
  background: rgba(6, 182, 212, 0.18);
  color: var(--cyan-400);
}

.movie-card h3 {
  display: -webkit-box;
  margin: 0 0 8px;
  min-height: 2.85em;
  overflow: hidden;
  color: var(--slate-900);
  font-size: 1.05rem;
  line-height: 1.42;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.dark-section .movie-card h3 {
  color: #fff;
}

.movie-card:hover h3 {
  color: var(--cyan-600);
}

.movie-card p {
  display: -webkit-box;
  min-height: 3em;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 0.92rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.dark-section .movie-card p {
  color: var(--slate-300);
}

.tag-line {
  color: var(--slate-500);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-card-compact .movie-card-body {
  padding: 14px;
}

.movie-card-compact h3 {
  font-size: 0.98rem;
}

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

.category-tile,
.category-overview-card a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-tile-images,
.overview-image-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), #164e63);
}

.overview-image-grid {
  grid-template-columns: repeat(6, 1fr);
  height: 180px;
}

.category-tile-images img,
.overview-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tile div:last-child,
.overview-copy {
  padding: 22px;
}

.category-tile h3,
.overview-copy h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.category-tile p,
.overview-copy p {
  margin: 0;
  color: var(--slate-600);
}

.overview-copy span {
  display: inline-flex;
  margin-top: 16px;
  color: var(--cyan-600);
  font-weight: 700;
}

.two-column-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.rank-number {
  color: var(--cyan-600);
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
}

.rank-thumb {
  position: relative;
  width: 88px;
  height: 58px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--slate-800), #164e63);
}

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

.rank-main {
  min-width: 0;
  display: grid;
}

.rank-main strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-main em {
  color: var(--slate-500);
  font-size: 0.88rem;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-side {
  color: var(--slate-500);
  font-size: 0.88rem;
  white-space: nowrap;
}

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

.full-rank-list .rank-thumb {
  width: 112px;
  height: 72px;
}

.page-hero {
  color: #fff;
  background: radial-gradient(circle at 20% 0, rgba(34, 211, 238, 0.25), transparent 28%), linear-gradient(135deg, var(--slate-800), var(--slate-700), #164e63);
  padding: 54px 0;
}

.page-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--slate-200);
  font-size: 1.08rem;
}

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

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

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.38);
}

.filter-panel {
  margin-bottom: 28px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.filter-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.filter-heading h2 {
  margin: 0;
  font-size: 1.35rem;
}

.filter-heading span {
  color: var(--slate-500);
  font-size: 0.92rem;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(140px, 1fr));
  gap: 14px;
}

.filter-grid label {
  display: grid;
  gap: 7px;
  color: var(--slate-600);
  font-weight: 700;
  font-size: 0.86rem;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  outline: 0;
  background: var(--slate-50);
  padding: 11px 12px;
}

.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.search-summary {
  margin-bottom: 18px;
  color: var(--slate-600);
  font-weight: 700;
}

.detail-top {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--slate-900);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  filter: blur(3px);
  transform: scale(1.03);
}

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

.detail-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.9));
}

.detail-top-inner {
  position: relative;
  z-index: 1;
  padding: 34px 0 56px;
}

.detail-breadcrumb {
  margin-bottom: 28px;
}

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

.detail-poster {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--slate-800), #164e63);
  box-shadow: var(--shadow-lg);
}

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

.detail-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 800px;
  margin: 0 0 18px;
  color: var(--slate-200);
  font-size: 1.12rem;
}

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

.detail-meta-list span,
.detail-tags span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 7px 12px;
  font-size: 0.9rem;
}

.detail-tags span {
  background: rgba(6, 182, 212, 0.22);
  color: #cffafe;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--cyan-600);
  color: #fff;
  padding: 13px 24px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(6, 182, 212, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.primary-link:hover {
  background: var(--cyan-700);
  transform: translateY(-2px);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  padding: 46px 0 72px;
}

.detail-main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow-lg);
}

.video-node {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-circle {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--cyan-600);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.36);
  font-size: 2rem;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  color: #fff;
  padding: 7px 12px;
  font-size: 0.86rem;
  pointer-events: none;
}

.player-status:empty {
  display: none;
}

.content-card,
.sidebar-card {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 26px;
}

.content-card h2,
.sidebar-card h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.content-card p {
  margin: 0 0 18px;
  color: var(--slate-700);
}

.content-card .lead-text {
  color: var(--slate-900);
  font-weight: 700;
}

.content-card blockquote {
  margin: 0;
  border-left: 4px solid var(--cyan-500);
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  color: var(--slate-700);
  padding: 16px 18px;
}

.detail-sidebar {
  display: grid;
  align-content: start;
  gap: 22px;
}

.sidebar-card {
  position: sticky;
  top: 98px;
}

.sidebar-card + .sidebar-card {
  position: static;
}

.side-rec {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  padding: 8px;
  transition: background 0.2s ease;
}

.side-rec:hover {
  background: var(--slate-50);
}

.side-rec img {
  width: 96px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: linear-gradient(135deg, var(--slate-800), #164e63);
}

.side-rec span {
  display: grid;
  min-width: 0;
}

.side-rec strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-rec em {
  color: var(--slate-500);
  font-size: 0.84rem;
  font-style: normal;
}

.info-list {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px 14px;
  margin: 0;
}

.info-list dt {
  color: var(--slate-500);
}

.info-list dd {
  margin: 0;
  min-width: 0;
}

.info-list a {
  color: var(--cyan-600);
  font-weight: 700;
}

.site-footer {
  color: var(--slate-300);
  background: var(--slate-900);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}

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

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.05rem;
}

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

.footer-links a:hover {
  color: var(--cyan-400);
}

.footer-bottom {
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  color: var(--slate-500);
}

.is-hidden {
  display: none !important;
}

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

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

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

  .two-column-section,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-sidebar,
  .sidebar-card {
    position: static;
  }

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

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

  .header-inner {
    min-height: 66px;
  }

  .brand-text em {
    display: none;
  }

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

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

  .hero-section,
  .section-block,
  .soft-section,
  .dark-section {
    padding: 42px 0;
  }

  .hero-search {
    display: grid;
    border-radius: var(--radius-lg);
  }

  .hero-search button {
    padding: 13px 18px;
  }

  .hero-grid,
  .movie-grid,
  .small-grid,
  .category-grid,
  .category-overview-grid,
  .rail-grid,
  .footer-grid,
  .filter-grid,
  .detail-intro {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card img {
    min-height: 380px;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .rank-row,
  .full-rank-list .rank-row {
    grid-template-columns: 44px 76px minmax(0, 1fr);
  }

  .rank-side {
    display: none;
  }

  .rank-thumb,
  .full-rank-list .rank-thumb {
    width: 76px;
    height: 54px;
  }

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

  .detail-layout {
    padding: 28px 0 48px;
  }

  .content-card,
  .sidebar-card,
  .filter-panel {
    padding: 18px;
  }
}
