:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --gold: #facc15;
  --gold-deep: #eab308;
  --orange: #f97316;
  --blue: #38bdf8;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  background: linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(250, 204, 21, 0.12), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(56, 189, 248, 0.12), transparent 32%),
    radial-gradient(circle at 65% 75%, rgba(249, 115, 22, 0.10), transparent 28%);
  z-index: -2;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(2, 6, 23, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.topbar {
  width: min(1280px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand {
  font-size: clamp(18px, 2vw, 24px);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  box-shadow: 0 10px 30px rgba(234, 179, 8, 0.35);
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.header-search,
.mobile-search,
.hero-search {
  position: relative;
}

.header-search {
  width: min(280px, 25vw);
}

.header-search input,
.mobile-search input,
.hero-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search input,
.mobile-search input,
.hero-search input {
  padding: 12px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(250, 204, 21, 0.66);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.08);
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(440px, 92vw);
  max-height: 430px;
  overflow: auto;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  z-index: 80;
}

.search-panel.is-open {
  display: block;
}

.search-result {
  display: block;
  padding: 12px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.search-result:hover {
  background: rgba(255, 255, 255, 0.08);
}

.search-result strong {
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

.search-result small,
.search-empty {
  color: var(--muted);
  font-size: 13px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-menu {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(30, 41, 59, 0.95), #020617 70%);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 118px 16px 80px;
}

.star-field {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    radial-gradient(2px 2px at 20px 30px, white, transparent),
    radial-gradient(2px 2px at 60px 70px, white, transparent),
    radial-gradient(1px 1px at 50px 50px, white, transparent),
    radial-gradient(1px 1px at 130px 80px, white, transparent),
    radial-gradient(2px 2px at 90px 10px, white, transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: starMove 20s linear infinite;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.35) 55%, #020617 100%);
}

.hero-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.13);
  filter: blur(50px);
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-symbol {
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 24px 60px rgba(234, 179, 8, 0.28);
  font-size: 34px;
  animation: float 6s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.42);
}

.hero-lead,
.page-hero p {
  width: min(780px, 100%);
  margin: 22px auto 0;
  color: #cbd5e1;
  font-size: clamp(17px, 2.4vw, 24px);
  line-height: 1.8;
}

.hero-search {
  width: min(680px, 100%);
  margin: 34px auto 0;
}

.hero-search input {
  padding: 17px 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 16px;
}

.hero-search-panel {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  text-align: left;
}

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

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

.primary-btn,
.rank-go {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  box-shadow: 0 18px 38px rgba(234, 179, 8, 0.26);
}

.ghost-btn,
.section-more {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.rank-go:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-focus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 42px auto 0;
  width: min(920px, 100%);
}

.hero-focus-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  text-align: left;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-focus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.hero-focus-card img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 14px;
}

.hero-focus-card strong,
.hero-focus-card small {
  display: block;
}

.hero-focus-card strong {
  color: #fff;
  margin-bottom: 6px;
}

.hero-focus-card small {
  color: var(--muted);
  line-height: 1.5;
}

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

.section-head,
.strip-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head.centered {
  display: block;
  text-align: center;
}

.section-head h2,
.strip-head h3,
.detail-card h2,
.side-card h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.16;
}

.strip-head h3 {
  font-size: clamp(22px, 3vw, 32px);
}

.section-head p,
.strip-head p,
.category-tile small,
.category-card-copy small,
.detail-card p,
.side-card p {
  color: var(--muted);
  line-height: 1.75;
}

.muted-section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1280px) / 2));
  padding-right: max(16px, calc((100% - 1280px) / 2));
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.44), rgba(15, 23, 42, 0.22));
}

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

.feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 80px rgba(234, 179, 8, 0.18);
}

.feature-card img,
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover img,
.category-card:hover img,
.movie-card:hover img,
.related-card:hover img {
  transform: scale(1.08);
}

.feature-overlay,
.category-card-shade,
.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.62) 58%, rgba(0, 0, 0, 0.92) 100%);
}

.feature-rank {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(234, 179, 8, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.feature-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
}

.feature-content small,
.feature-content strong,
.feature-content em,
.movie-card-body strong,
.movie-card-body small,
.movie-card-body em,
.movie-card-body span {
  display: block;
}

.feature-content small {
  color: #e2e8f0;
  margin-bottom: 10px;
}

.feature-content strong {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.feature-content em,
.movie-card-body em {
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.55;
}

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

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

.stat-grid div,
.category-tile,
.detail-card,
.side-card,
.filter-panel {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.stat-grid div {
  padding: 28px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-grid div:hover,
.category-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(250, 204, 21, 0.46);
}

.stat-grid strong {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.stat-grid span {
  color: var(--muted);
}

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

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

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

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

.poster-frame {
  display: block;
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #1e293b;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.23);
}

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

.corner-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  max-width: calc(100% - 20px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(234, 179, 8, 0.92);
  font-size: 12px;
  font-weight: 700;
}

.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  background: rgba(234, 179, 8, 0.92);
  color: white;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

.movie-card-body strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  min-height: 42px;
  transition: color 0.2s ease;
}

.movie-card:hover strong {
  color: var(--gold);
}

.movie-card-body small,
.movie-card-body em,
.movie-card-body span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.movie-card-body span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.category-tile {
  padding: 24px;
  min-height: 148px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile span,
.category-card-copy strong {
  display: block;
  font-size: 22px;
  font-weight: 850;
  margin-bottom: 12px;
}

.category-preview-wrap {
  display: grid;
  gap: 60px;
  margin-top: 70px;
}

.strip-head a {
  color: var(--gold);
  font-weight: 700;
}

.category-card {
  position: relative;
  min-height: 260px;
  border-radius: 26px;
  overflow: hidden;
  background: #1e293b;
  box-shadow: var(--shadow);
}

.category-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 48px 72px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.58);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(250, 204, 21, 0.36);
}

.rank-num {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-copy strong,
.rank-copy small {
  display: block;
}

.rank-copy strong {
  margin-bottom: 8px;
}

.rank-copy small {
  color: var(--muted);
  line-height: 1.5;
}

.page-main {
  padding-top: 76px;
}

.small-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 70px 16px;
}

.small-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, 180px);
  gap: 14px;
  padding: 16px;
  margin-bottom: 32px;
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  padding: 0 16px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  margin-bottom: 26px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.9fr);
  gap: 30px;
  align-items: start;
}

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

.player-card {
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.player-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.player-stage video {
  object-fit: contain;
  background: #000;
}

.player-cover {
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  overflow: hidden;
  background: #000;
  z-index: 2;
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
}

.player-dim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.76));
}

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 20px 44px rgba(234, 179, 8, 0.32);
  font-size: 30px;
}

.player-caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  right: 28px;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  text-align: left;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.detail-card,
.side-card {
  padding: 28px;
}

.detail-card h1 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.16;
}

.genre-line {
  color: #cbd5e1;
  margin-bottom: 16px;
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-row span,
.tag-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 13px;
}

.meta-row span {
  background: rgba(234, 179, 8, 0.18);
  color: #fde68a;
}

.tag-row {
  margin: 18px 0 28px;
}

.tag-row span {
  background: rgba(51, 65, 85, 0.8);
  color: #cbd5e1;
}

.detail-card h2,
.side-card h2 {
  font-size: 24px;
}

.detail-card p {
  font-size: 16px;
  margin: 0 0 16px;
}

.detail-side {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 22px;
}

.side-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.related-list {
  display: grid;
  gap: 14px;
}

.related-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.related-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.related-card img {
  width: 78px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.related-card strong,
.related-card small,
.related-card em {
  display: block;
}

.related-card strong {
  margin-bottom: 7px;
  line-height: 1.38;
}

.related-card small,
.related-card em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.site-footer {
  margin-top: 40px;
  background: linear-gradient(135deg, #020617, #0f172a 60%, #111827);
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.5fr;
  gap: 36px;
  padding: 52px 0;
}

.footer-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.footer-grid h2 {
  font-size: 18px;
  margin: 0 0 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
}

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

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 22px 0 30px;
  color: var(--muted-2);
  font-size: 14px;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes starMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200px);
  }
}

@media (max-width: 1100px) {
  .nav-links,
  .header-search {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .feature-grid,
  .category-overview-grid,
  .category-card-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .movie-grid,
  .compact-grid,
  .all-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar {
    height: 68px;
  }
  .hero {
    min-height: auto;
    padding-top: 110px;
  }
  .hero-focus,
  .feature-grid,
  .rank-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stat-grid,
  .category-overview-grid,
  .category-card-grid {
    grid-template-columns: 1fr;
  }
  .movie-grid,
  .compact-grid,
  .all-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .section,
  .detail-wrap {
    padding: 54px 0;
  }
  .section-head,
  .strip-head {
    display: block;
  }
  .filter-panel {
    grid-template-columns: 1fr;
  }
  .rank-item {
    grid-template-columns: 40px 62px 1fr;
  }
  .rank-go {
    display: none;
  }
  .rank-item img {
    width: 62px;
    height: 86px;
  }
  .feature-card {
    min-height: 420px;
  }
  .player-start {
    width: 66px;
    height: 66px;
  }
  .detail-card,
  .side-card {
    padding: 20px;
  }
}
