:root {
  --mist-950: #081a2a;
  --mist-900: #102a43;
  --mist-850: #18334f;
  --mist-800: #243b53;
  --mist-700: #334e68;
  --mist-600: #486581;
  --mist-500: #627d98;
  --mist-400: #829ab1;
  --mist-200: #d9e2ec;
  --swamp-600: #20656a;
  --swamp-500: #2d8285;
  --swamp-400: #52a0a3;
  --gold: #f7c948;
  --radius-lg: 18px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(45, 130, 133, 0.18), transparent 30rem), var(--mist-900);
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 42, 67, 0.94);
  border-bottom: 1px solid rgba(130, 154, 177, 0.16);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  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;
  min-width: max-content;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--swamp-400), var(--swamp-600));
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(45, 130, 133, 0.38);
}

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

.brand-text span,
.footer-brand span:last-child {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--mist-400);
  font-size: 12px;
}

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

.nav-link,
.dropdown-button {
  position: relative;
  color: var(--mist-200);
  border: 0;
  background: transparent;
  padding: 23px 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.dropdown-button:hover {
  color: #ffffff;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--swamp-400);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 188px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(130, 154, 177, 0.16);
  border-radius: 16px;
  background: rgba(36, 59, 83, 0.98);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--mist-200);
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: rgba(82, 160, 163, 0.16);
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-wrapper {
  position: relative;
  width: min(280px, 30vw);
}

.site-search-input,
.local-filter-input {
  width: 100%;
  border: 1px solid rgba(130, 154, 177, 0.22);
  border-radius: 14px;
  background: rgba(8, 26, 42, 0.52);
  color: #ffffff;
  outline: none;
  padding: 11px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search-input::placeholder,
.local-filter-input::placeholder {
  color: var(--mist-400);
}

.site-search-input:focus,
.local-filter-input:focus {
  border-color: var(--swamp-400);
  box-shadow: 0 0 0 3px rgba(82, 160, 163, 0.18);
  background: rgba(8, 26, 42, 0.78);
}

.search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(380px, 88vw);
  max-height: 480px;
  overflow-y: auto;
  display: none;
  padding: 10px;
  border: 1px solid rgba(130, 154, 177, 0.18);
  border-radius: 18px;
  background: rgba(16, 42, 67, 0.98);
  box-shadow: var(--shadow-soft);
}

.search-panel.is-open {
  display: grid;
  gap: 8px;
}

.search-result {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
}

.search-result:hover {
  background: rgba(82, 160, 163, 0.14);
}

.search-result img {
  width: 54px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--mist-800);
}

.search-result strong {
  display: block;
  font-size: 14px;
  color: #ffffff;
}

.search-result span {
  display: block;
  margin-top: 4px;
  color: var(--mist-400);
  font-size: 12px;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(130, 154, 177, 0.2);
  border-radius: 12px;
  background: rgba(36, 59, 83, 0.8);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #ffffff;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(130, 154, 177, 0.12);
  background: rgba(16, 42, 67, 0.98);
  padding: 16px;
}

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

.mobile-search {
  position: relative;
  margin-bottom: 14px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 4px;
  color: var(--mist-200);
}

.mobile-nav-link.is-active {
  color: var(--swamp-400);
}

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

.hero-slider {
  position: relative;
  height: min(72vh, 650px);
  min-height: 520px;
  overflow: hidden;
  background: var(--mist-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 max(16px, calc((100vw - 1180px) / 2)) 86px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 26, 42, 0.94), rgba(16, 42, 67, 0.7) 42%, rgba(16, 42, 67, 0.18)), linear-gradient(0deg, var(--mist-900), transparent 40%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow,
.hero-kicker {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: rgba(82, 160, 163, 0.18);
  color: #bdf2f2;
  padding: 8px 13px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-summary {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--mist-200);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

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

.hero-tags span,
.detail-meta span,
.tag-cloud span {
  border: 1px solid rgba(217, 226, 236, 0.16);
  border-radius: 999px;
  background: rgba(36, 59, 83, 0.66);
  color: var(--mist-200);
  padding: 7px 11px;
  font-size: 13px;
}

.hero-actions,
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.ghost-button,
.intro-actions a,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button,
.intro-actions a:first-child {
  background: var(--swamp-500);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(45, 130, 133, 0.32);
}

.ghost-button,
.intro-actions a:last-child,
.section-more {
  border: 1px solid rgba(217, 226, 236, 0.18);
  background: rgba(36, 59, 83, 0.6);
  color: #ffffff;
}

.primary-button:hover,
.ghost-button:hover,
.intro-actions a:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 226, 236, 0.16);
  border-radius: 999px;
  background: rgba(8, 26, 42, 0.5);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(217, 226, 236, 0.42);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 32px;
  background: var(--swamp-400);
}

.intro-panel,
.page-hero,
.detail-hero,
.content-section {
  margin-top: 34px;
}

.intro-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(130, 154, 177, 0.14);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(36, 59, 83, 0.78), rgba(16, 42, 67, 0.7));
  box-shadow: var(--shadow-soft);
}

.intro-panel h2,
.page-hero h1,
.content-section h2,
.detail-copy h1,
.detail-section h2 {
  margin: 0 0 12px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.intro-panel h2,
.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.intro-panel p,
.page-hero p,
.section-head p,
.detail-section p,
.category-card span,
.category-overview-card span {
  color: var(--mist-200);
  line-height: 1.8;
}

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

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

.section-head h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-head p {
  margin: 0;
}

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

.full-grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}

.movie-card {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.poster-box {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--mist-800);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
}

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

.movie-card:hover .poster-box img,
.compact-card:hover img,
.large-feature:hover img {
  transform: scale(1.06);
}

.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 26, 42, 0.86), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-gradient {
  opacity: 1;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(45, 130, 133, 0.9);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: 0.25s ease;
}

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

.poster-year,
.poster-type {
  position: absolute;
  top: 10px;
  border-radius: 10px;
  background: rgba(8, 26, 42, 0.72);
  color: #ffffff;
  padding: 5px 8px;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.poster-year {
  left: 10px;
}

.poster-type {
  right: 10px;
}

.movie-title {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-title {
  color: #bdf2f2;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--mist-400);
  font-size: 13px;
}

.movie-line {
  display: -webkit-box;
  overflow: hidden;
  color: var(--mist-400);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.band-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background: rgba(36, 59, 83, 0.24);
}

.scroll-actions {
  display: flex;
  gap: 8px;
}

.scroll-actions button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(217, 226, 236, 0.14);
  border-radius: 999px;
  background: rgba(36, 59, 83, 0.88);
  color: #ffffff;
  cursor: pointer;
  font-size: 24px;
}

.horizontal-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scrollbar-width: none;
}

.horizontal-row::-webkit-scrollbar {
  display: none;
}

.compact-card {
  display: grid;
  grid-template-columns: 120px 220px;
  flex: 0 0 auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(130, 154, 177, 0.12);
  border-radius: 18px;
  background: rgba(36, 59, 83, 0.5);
  padding: 10px;
}

.compact-card img {
  width: 120px;
  height: 78px;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.compact-card strong {
  color: #ffffff;
  line-height: 1.45;
}

.compact-card em {
  margin-top: 8px;
  color: var(--mist-400);
  font-size: 13px;
  font-style: normal;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 20px;
}

.large-feature {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--mist-800);
  box-shadow: var(--shadow-soft);
}

.large-feature img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.large-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 26, 42, 0.92), rgba(8, 26, 42, 0.18));
}

.large-feature span {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.large-feature em,
.large-feature strong,
.large-feature small {
  display: block;
}

.large-feature em {
  width: fit-content;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(82, 160, 163, 0.22);
  color: #bdf2f2;
  padding: 6px 10px;
  font-style: normal;
  font-size: 13px;
}

.large-feature strong {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

.large-feature small {
  color: var(--mist-200);
  font-size: 15px;
  line-height: 1.8;
}

.feature-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.feature-side .compact-card {
  grid-template-columns: 120px 1fr;
  width: 100%;
}

.category-grid,
.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.category-card,
.category-overview-card {
  border: 1px solid rgba(130, 154, 177, 0.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(36, 59, 83, 0.78), rgba(16, 42, 67, 0.72));
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 160, 163, 0.36);
}

.category-card strong,
.category-main-link strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 20px;
}

.category-card em {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  font-style: normal;
}

.category-card em a {
  border-radius: 999px;
  background: rgba(82, 160, 163, 0.14);
  color: #bdf2f2;
  padding: 6px 9px;
  font-size: 12px;
}

.category-overview-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.category-overview-card li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  background: rgba(8, 26, 42, 0.32);
  padding: 10px 12px;
  color: #ffffff;
}

.category-overview-card li span {
  color: var(--mist-400);
  font-size: 12px;
}

.ranking-section {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 42, 67, 0), rgba(36, 59, 83, 0.34));
}

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

.wide-ranking {
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
}

.ranking-item {
  display: grid;
  grid-template-columns: 54px 86px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(130, 154, 177, 0.12);
  border-radius: 18px;
  background: rgba(36, 59, 83, 0.52);
  padding: 12px;
}

.ranking-item:hover {
  background: rgba(36, 59, 83, 0.78);
}

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

.ranking-item img {
  width: 86px;
  height: 112px;
  border-radius: 14px;
  object-fit: cover;
}

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

.rank-copy strong {
  color: #ffffff;
  font-size: 17px;
}

.rank-copy em {
  margin: 7px 0;
  color: var(--mist-400);
  font-size: 13px;
  font-style: normal;
}

.rank-copy small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--mist-200);
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.page-hero {
  overflow: hidden;
  border: 1px solid rgba(130, 154, 177, 0.14);
  border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(82, 160, 163, 0.26), transparent 22rem), linear-gradient(135deg, rgba(36, 59, 83, 0.82), rgba(8, 26, 42, 0.82));
  padding: clamp(28px, 5vw, 58px);
}

.small-hero p:last-child {
  max-width: 780px;
  margin-bottom: 0;
}

.local-filter {
  position: sticky;
  top: 84px;
  z-index: 8;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(130, 154, 177, 0.12);
  border-radius: 18px;
  background: rgba(16, 42, 67, 0.92);
  backdrop-filter: blur(14px);
}

.detail-main {
  padding-top: 24px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 8px 0 24px;
  color: var(--mist-400);
  font-size: 14px;
}

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

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.78fr);
  gap: 28px;
  align-items: center;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(0deg, rgba(8, 26, 42, 0.6), rgba(8, 26, 42, 0.2));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(45, 130, 133, 0.92);
  color: #ffffff;
  font-size: 34px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

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

.detail-copy {
  min-width: 0;
}

.detail-copy h1 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
}

.detail-one-line {
  color: var(--mist-200);
  font-size: 17px;
  line-height: 1.8;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.detail-section {
  margin-top: 30px;
  border: 1px solid rgba(130, 154, 177, 0.13);
  border-radius: 24px;
  background: rgba(36, 59, 83, 0.46);
  padding: 26px;
}

.detail-section p {
  margin: 0;
}

.related-section {
  margin-bottom: 40px;
}

.site-footer {
  margin-top: 54px;
  border-top: 1px solid rgba(130, 154, 177, 0.12);
  background: rgba(8, 26, 42, 0.54);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 42px 0;
}

.footer-inner p {
  max-width: 450px;
  color: var(--mist-400);
  line-height: 1.7;
}

.footer-inner h2 {
  margin: 0 0 14px;
  font-size: 16px;
}

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

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

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid rgba(130, 154, 177, 0.1);
  color: var(--mist-500);
  padding: 22px 0 34px;
  text-align: center;
  font-size: 14px;
}

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

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

  .mobile-toggle {
    display: block;
  }

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

  .hero-slide {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .intro-panel,
  .feature-grid,
  .detail-hero,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .ranking-list,
  .wide-ranking {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner,
  main,
  .page-main,
  .detail-main,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-text small {
    display: none;
  }

  .brand-text span {
    font-size: 17px;
  }

  .hero-slider {
    min-height: 540px;
    height: 76vh;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 34px;
  }

  .hero-tags span,
  .detail-meta span,
  .tag-cloud span {
    font-size: 12px;
  }

  .intro-panel,
  .page-hero,
  .detail-section {
    padding: 20px;
  }

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

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

  .compact-card {
    grid-template-columns: 96px 200px;
  }

  .compact-card img {
    width: 96px;
    height: 64px;
  }

  .ranking-item {
    grid-template-columns: 42px 72px 1fr;
    gap: 10px;
  }

  .ranking-item img {
    width: 72px;
    height: 96px;
  }

  .rank-copy small {
    display: none;
  }

  .player-overlay span {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
