:root {
  --rain-50: #f8f9fa;
  --rain-100: #e9ecef;
  --rain-200: #dee2e6;
  --rain-300: #ced4da;
  --rain-400: #adb5bd;
  --rain-500: #6c757d;
  --rain-600: #495057;
  --rain-700: #343a40;
  --rain-800: #212529;
  --rain-900: #111418;
  --mist-50: #f0f4f8;
  --mist-100: #d9e2ec;
  --mist-300: #9fb3c8;
  --mist-400: #829ab1;
  --mist-500: #627d98;
  --mist-600: #486581;
  --mist-700: #334e68;
  --mist-800: #243b53;
  --alley-50: #faf9f7;
  --alley-100: #f5f3ef;
  --white: #ffffff;
  --shadow-soft: 0 14px 32px rgba(17, 20, 24, 0.08);
  --shadow-hover: 0 22px 48px rgba(17, 20, 24, 0.16);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--alley-50);
  color: var(--rain-700);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--rain-200);
  box-shadow: 0 1px 8px rgba(17, 20, 24, 0.05);
  backdrop-filter: blur(10px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rain-800);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--mist-500), var(--mist-800));
  box-shadow: 0 8px 20px rgba(72, 101, 129, 0.25);
  font-size: 14px;
  padding-left: 2px;
}

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

.brand-text strong,
.footer-brand strong {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--rain-700);
  font-size: 15px;
  font-weight: 600;
}

.desktop-nav a,
.nav-more > button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-more:hover > button {
  color: var(--mist-700);
}

.nav-more {
  position: relative;
}

.nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  width: 190px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--rain-200);
  display: none;
}

.nav-more:hover .nav-panel {
  display: grid;
  gap: 6px;
}

.nav-panel a {
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-panel a:hover {
  background: var(--mist-50);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--rain-100);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--rain-700);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--rain-200);
  padding: 10px 16px 18px;
  background: rgba(255, 255, 255, 0.98);
}

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

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--rain-700);
  font-weight: 600;
}

.mobile-nav a:hover {
  background: var(--mist-50);
  color: var(--mist-700);
}

.hero {
  position: relative;
  min-height: 560px;
  height: 78vh;
  overflow: hidden;
  background: var(--rain-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 0.7s ease, transform 1s ease;
}

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

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 96px;
}

.hero-copy {
  width: min(680px, 100%);
  color: var(--white);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #facc15;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.hero p {
  margin: 0 0 22px;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 700px;
}

.hero-meta,
.hero-tags,
.detail-meta,
.detail-tags,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta span,
.detail-meta span {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
}

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

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 11px;
  color: var(--mist-800);
  background: var(--mist-50);
  font-size: 13px;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn.light {
  color: var(--rain-900);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--mist-600), var(--mist-800));
  box-shadow: 0 14px 28px rgba(72, 101, 129, 0.28);
}

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

.hero-controls > button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 30px;
  line-height: 1;
  transition: background 0.2s ease;
}

.hero-controls > button:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

.hero-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 34px;
  background: var(--white);
}

.quick-search {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.quick-search-inner {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--rain-200);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: center;
  backdrop-filter: blur(12px);
}

.quick-search span,
.section-heading span,
.page-hero span {
  display: inline-block;
  color: var(--mist-600);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.quick-search h2,
.section-heading h2,
.page-hero h1 {
  margin: 6px 0 0;
  color: var(--rain-800);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

.quick-search h2 {
  font-size: 24px;
}

.home-search {
  display: flex;
  align-items: center;
  background: var(--rain-50);
  border: 1px solid var(--rain-200);
  border-radius: 999px;
  overflow: hidden;
}

.home-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 14px 18px;
  min-width: 0;
}

.home-search button {
  border: 0;
  background: var(--mist-700);
  color: var(--white);
  align-self: stretch;
  padding: 0 24px;
  font-weight: 800;
}

.quick-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--mist-50);
  color: var(--mist-700);
  font-size: 14px;
  font-weight: 700;
}

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

.white-band {
  background: var(--white);
}

.mist-band {
  background: var(--mist-50);
}

.dark-band {
  background: linear-gradient(135deg, var(--mist-600), var(--mist-800));
  color: var(--white);
}

.dark-band .section-heading h2,
.dark-band .section-heading p {
  color: var(--white);
}

.dark-band .section-heading span {
  color: #fde68a;
}

.section-heading {
  position: relative;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.section-heading p {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--rain-600);
}

.section-action {
  position: absolute;
  right: 0;
  top: 8px;
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--rain-100);
  color: var(--rain-700);
  font-weight: 800;
}

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

.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.library-grid {
  margin-top: 26px;
}

.related-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.movie-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(222, 226, 230, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(98, 125, 152, 0.35);
}

.movie-card.glass {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.movie-card.glass .card-body h2,
.movie-card.glass .card-meta {
  color: var(--white);
}

.movie-card.wide {
  width: 280px;
  flex: 0 0 280px;
}

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

.card-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  background: var(--rain-100);
  overflow: hidden;
}

.movie-card.wide .card-poster,
.movie-card.large .card-poster {
  aspect-ratio: 16 / 10;
}

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

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

.card-type,
.rank-badge,
.list-rank {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
}

.card-type {
  right: 12px;
  top: 12px;
  padding: 5px 9px;
}

.rank-badge {
  left: 12px;
  top: 12px;
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f59e0b;
}

.card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-round {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rain-800);
  background: rgba(255, 255, 255, 0.92);
  padding-left: 4px;
  font-size: 24px;
}

.card-hover p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.card-body {
  padding: 16px;
}

.card-body h2 {
  margin: 0 0 10px;
  color: var(--rain-800);
  font-size: 18px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  transition: color 0.2s ease;
}

.movie-card:hover .card-body h2 {
  color: var(--mist-700);
}

.card-meta {
  color: var(--rain-500);
  font-size: 13px;
}

.pill {
  color: var(--mist-700);
  background: var(--mist-50);
  border-radius: 7px;
  padding: 3px 8px;
  font-weight: 800;
}

.scroll-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 20px;
  scrollbar-width: thin;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 22px;
}

.list-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rain-200);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.list-card a {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 150px;
}

.list-cover {
  position: relative;
  background: var(--rain-100);
  overflow: hidden;
}

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

.list-rank {
  left: 10px;
  top: 10px;
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mist-700);
}

.list-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.list-info h2 {
  margin: 0 0 8px;
  color: var(--rain-800);
  font-size: 20px;
}

.list-info p {
  margin: 0 0 14px;
  color: var(--rain-600);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.category-mini-grid,
.category-grid {
  display: grid;
  gap: 22px;
}

.category-mini-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.category-mini,
.category-card {
  background: var(--white);
  border: 1px solid var(--rain-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.category-mini-head {
  display: block;
  padding: 22px;
  background: linear-gradient(135deg, var(--mist-50), var(--alley-50));
}

.category-mini-head span {
  display: inline-block;
  color: var(--mist-700);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.category-mini-head strong {
  display: block;
  color: var(--rain-800);
  font-size: 22px;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

.category-mini-links {
  display: grid;
  padding: 14px 22px 22px;
  gap: 8px;
}

.category-mini-links a {
  color: var(--rain-600);
  font-size: 14px;
}

.category-mini-links a:hover {
  color: var(--mist-700);
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.category-card {
  display: grid;
  grid-template-columns: 150px 1fr;
}

.category-art {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: var(--rain-100);
}

.category-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-art span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 800;
}

.category-card-body {
  padding: 22px;
}

.category-card-body h2 {
  margin: 0 0 10px;
  color: var(--rain-800);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

.category-card-body p {
  margin: 0 0 14px;
  color: var(--rain-600);
}

.category-preview {
  display: grid;
  gap: 6px;
}

.category-preview a {
  color: var(--mist-700);
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  padding: 84px 0;
  background: linear-gradient(135deg, var(--mist-50), var(--alley-50));
  border-bottom: 1px solid var(--rain-200);
}

.page-hero.small-hero,
.page-hero.category-hero {
  background: linear-gradient(135deg, var(--alley-50), var(--mist-50));
}

.page-hero.ranking-hero {
  color: var(--white);
  background: linear-gradient(135deg, var(--mist-700), var(--rain-900));
}

.page-hero.ranking-hero h1,
.page-hero.ranking-hero p {
  color: var(--white);
}

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

.page-hero p {
  margin: 12px 0 0;
  max-width: 760px;
  color: var(--rain-600);
  font-size: 18px;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: end;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--rain-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--rain-600);
  font-size: 13px;
  font-weight: 800;
}

.search-label input,
.filter-panel select {
  min-height: 46px;
  border: 1px solid var(--rain-200);
  border-radius: 999px;
  background: var(--rain-50);
  outline: 0;
  padding: 0 16px;
  color: var(--rain-700);
}

.search-label input:focus,
.filter-panel select:focus {
  border-color: var(--mist-500);
  box-shadow: 0 0 0 4px rgba(98, 125, 152, 0.12);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.movie-card.is-hidden,
.list-card.is-hidden {
  display: none;
}

.empty-state {
  display: none;
  margin-top: 32px;
  padding: 28px;
  text-align: center;
  color: var(--rain-600);
  background: var(--white);
  border: 1px solid var(--rain-200);
  border-radius: var(--radius);
}

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

.detail-hero {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--mist-50), var(--alley-50));
  border-bottom: 1px solid var(--rain-200);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-cover {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--rain-100);
  aspect-ratio: 2 / 3;
}

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

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--rain-500);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumbs a:hover {
  color: var(--mist-700);
}

.detail-info h1 {
  margin: 0 0 16px;
  color: var(--rain-800);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.08;
}

.detail-info .lead {
  margin: 0 0 20px;
  color: var(--rain-600);
  font-size: 19px;
  max-width: 860px;
}

.detail-meta span {
  color: var(--mist-700);
  background: var(--white);
  border-color: var(--rain-200);
}

.detail-tags {
  margin: 18px 0 26px;
}

.player-section {
  background: var(--rain-900);
  color: var(--white);
}

.player-section .section-heading h2,
.player-section .section-heading p {
  color: var(--white);
}

.compact-heading {
  margin-bottom: 20px;
}

.player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.movie-player {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: var(--white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.22));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-button {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rain-900);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.22);
  padding-left: 6px;
  font-size: 38px;
}

.player-overlay strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.article-content {
  max-width: 920px;
}

.article-content h2 {
  margin: 0 0 14px;
  color: var(--rain-800);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 30px;
}

.article-content h2:not(:first-child) {
  margin-top: 34px;
}

.article-content p {
  margin: 0;
  color: var(--rain-700);
  font-size: 18px;
  text-align: justify;
}

.site-footer {
  background: var(--rain-800);
  color: var(--rain-300);
  padding: 54px 0 24px;
}

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

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

.site-footer h2 {
  color: var(--white);
  margin: 0 0 14px;
  font-size: 17px;
}

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

.site-footer a:hover {
  color: var(--white);
}

.footer-brand {
  color: var(--white);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(206, 212, 218, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--rain-400);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    height: 72vh;
    min-height: 520px;
  }

  .quick-search-inner,
  .filter-panel,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-layout {
    align-items: start;
  }

  .detail-cover {
    max-width: 340px;
  }

  .section-action {
    position: static;
    margin-top: 14px;
  }
}

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

  .header-inner {
    height: 64px;
  }

  .brand-text strong,
  .footer-brand strong {
    font-size: 18px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    height: 74vh;
    min-height: 520px;
  }

  .hero-content {
    padding-bottom: 104px;
  }

  .hero-meta span {
    font-size: 12px;
  }

  .quick-search {
    margin-top: 0;
  }

  .quick-search-inner {
    border-radius: 0;
    width: calc(100% + 24px);
    margin-left: -12px;
  }

  .home-search {
    border-radius: 16px;
    align-items: stretch;
    flex-direction: column;
  }

  .home-search button {
    padding: 12px;
  }

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

  .movie-grid,
  .featured-grid,
  .library-grid,
  .related-grid,
  .category-grid,
  .category-mini-grid,
  .list-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .list-card a {
    grid-template-columns: 120px 1fr;
  }

  .category-art {
    min-height: 180px;
  }

  .list-info h2 {
    font-size: 18px;
  }

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

  .detail-cover {
    max-width: 280px;
  }

  .player-wrap {
    border-radius: 12px;
  }

  .player-button {
    width: 66px;
    height: 66px;
    font-size: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
