
:root {
  --color-blue: #2563eb;
  --color-cyan: #06b6d4;
  --color-teal: #0d9488;
  --color-slate: #0f172a;
  --color-muted: #64748b;
  --color-line: #e2e8f0;
  --color-bg: #f0f9ff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-glow: 0 22px 60px rgba(14, 165, 233, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #1e293b;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 48%, #ecfeff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

img {
  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: 100;
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-blue), var(--color-cyan), var(--color-teal));
  box-shadow: 0 14px 40px rgba(37, 99, 235, 0.24);
}

.header-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 20px;
  pointer-events: none;
}

.header-wave svg {
  width: 100%;
  height: 100%;
}

.header-wave path {
  fill: #ffffff;
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 10px 0 18px;
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 22px;
  font-weight: 900;
}

.brand-text strong,
.footer-brand strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand-text small,
.footer-brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.nav-link {
  position: relative;
  font-weight: 700;
  opacity: 0.92;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  background: #ffffff;
  border-radius: 99px;
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-search {
  position: relative;
  width: 230px;
}

.header-search input,
.page-search-form input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  outline: none;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-search input {
  height: 40px;
  padding: 0 44px 0 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

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

.header-search input:focus {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.header-search button {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(6, 182, 212, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-copy {
  max-width: 670px;
  padding-top: 24px;
  color: #ffffff;
}

.hero-category,
.category-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 5px 13px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.24);
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 630px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: 20px;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  color: #0369a1;
  background: #e0f2fe;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-blue));
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.btn-small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.full-width {
  width: 100%;
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 34px;
  background: #ffffff;
}

.section {
  position: relative;
  padding: 76px 0;
}

.section-light {
  background: linear-gradient(180deg, #eff6ff 0%, #ecfeff 100%);
}

.section-muted {
  background: #f8fafc;
}

.section-wave {
  overflow: hidden;
}

.section-content {
  position: relative;
  z-index: 2;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title span,
.eyebrow,
.panel-head span {
  display: inline-block;
  color: var(--color-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title h2,
.panel-head h2 {
  margin: 8px 0 10px;
  color: var(--color-slate);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.section-title p {
  margin: 0;
  color: var(--color-muted);
}

.row-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
  text-align: left;
}

.compact-title {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.text-link {
  color: var(--color-blue);
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.card-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}

.card-poster::after {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.72));
  content: "";
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.card-poster img,
.category-card img,
.overview-image img,
.horizontal-poster img,
.poster-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.duration-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  min-height: 26px;
  padding: 4px 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  top: 12px;
  right: auto;
  bottom: auto;
  left: 12px;
  background: linear-gradient(90deg, #f97316, #ef4444);
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 12px 0 8px;
  color: var(--color-slate);
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover,
.horizontal-info h3 a:hover {
  color: var(--color-blue);
}

.card-body p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
}

.card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  background: #f1f5f9;
  border-radius: 999px;
}

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

.category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.84));
  content: "";
}

.category-card img {
  position: absolute;
  inset: 0;
}

.category-card div {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
}

.category-card strong {
  display: block;
  font-size: 24px;
}

.category-card span {
  display: inline-block;
  margin: 5px 0 8px;
  color: #bae6fd;
  font-weight: 800;
}

.category-card p {
  margin: 0;
  color: #e0f2fe;
  font-size: 14px;
}

.two-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  align-items: start;
}

.ranking-panel,
.side-panel,
.poster-panel,
.detail-card,
.filter-panel,
.category-overview-card,
.search-summary {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.ranking-panel {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-head h2 {
  margin: 0;
  font-size: 25px;
}

.panel-head a {
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 900;
}

.ranking-list,
.ranking-page-list {
  display: grid;
  gap: 14px;
}

.horizontal-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  overflow: hidden;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.horizontal-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.horizontal-poster {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
  border-radius: 14px;
}

.horizontal-info h3 {
  margin: 8px 0 6px;
  color: var(--color-slate);
  font-size: 18px;
  line-height: 1.3;
}

.horizontal-info p {
  display: -webkit-box;
  margin: 0 0 9px;
  overflow: hidden;
  color: var(--color-muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.horizontal-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.list-rank {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #ef4444);
  border-radius: 10px;
  font-weight: 900;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 86px 0 92px;
}

.gradient-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(90deg, var(--color-blue), var(--color-cyan), var(--color-teal));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #dff9ff;
  font-size: 19px;
}

.animated-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.animated-waves svg {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 210px;
  opacity: 0.22;
}

.animated-waves path {
  fill: currentColor;
}

.text-blue {
  color: #bfdbfe;
}

.text-white {
  color: #ffffff;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  overflow: hidden;
  padding: 16px;
}

.overview-image {
  overflow: hidden;
  min-height: 160px;
  background: #0f172a;
  border-radius: 18px;
}

.category-overview-card span {
  color: var(--color-cyan);
  font-weight: 900;
}

.category-overview-card h2 {
  margin: 6px 0 8px;
  color: var(--color-slate);
  font-size: 24px;
}

.category-overview-card p {
  margin: 0 0 18px;
  color: var(--color-muted);
}

.filter-panel {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 18px;
  margin-bottom: 16px;
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: var(--color-slate);
  font-size: 14px;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select,
.page-search-form input {
  height: 42px;
  padding: 0 13px;
  color: #0f172a;
  background: #f8fafc;
  border-radius: 12px;
}

.filter-panel input:focus,
.filter-panel select:focus,
.page-search-form input:focus {
  background: #ffffff;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14);
}

.filter-count {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-weight: 800;
}

.page-search-form {
  display: flex;
  gap: 12px;
  width: min(680px, 100%);
  margin-top: 28px;
}

.page-search-form input {
  height: 52px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.page-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.page-search-form button {
  padding: 0 28px;
  color: var(--color-blue);
  background: #ffffff;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.search-summary {
  padding: 20px;
  margin-bottom: 24px;
  color: var(--color-muted);
  font-weight: 800;
}

.detail-wrap {
  padding: 34px 0 72px;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

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

.breadcrumb a {
  color: var(--color-blue);
  font-weight: 800;
}

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

.detail-main {
  display: grid;
  gap: 22px;
}

.movie-player {
  position: relative;
  overflow: hidden;
  background: #000000;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(2, 6, 23, 0.28);
}

.movie-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.18), rgba(2, 6, 23, 0.55));
  border: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay-button span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  padding-left: 7px;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
  border-radius: 999px;
  box-shadow: var(--shadow-glow);
  font-size: 34px;
}

.movie-player.is-playing .player-overlay-button,
.movie-player.is-loading .player-overlay-button {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.player-status {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  min-height: 0;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.72);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.player-status:not(:empty) {
  padding: 7px 12px;
}

.detail-card {
  padding: 24px;
}

.detail-card h1 {
  margin: 14px 0 12px;
  color: var(--color-slate);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
}

.detail-one-line {
  margin: 0 0 18px;
  color: #334155;
  font-size: 18px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  margin-bottom: 18px;
  border-top: 1px solid var(--color-line);
}

.detail-meta span {
  padding: 7px 12px;
  color: #0f172a;
  background: #f1f5f9;
  border-radius: 999px;
  font-weight: 800;
}

.prose-card h2,
.side-panel h2 {
  margin: 0 0 14px;
  color: var(--color-slate);
  font-size: 24px;
}

.prose-card p {
  margin: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}

.detail-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.poster-panel {
  overflow: hidden;
  padding: 14px;
}

.poster-panel img {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  margin-bottom: 14px;
}

.side-panel {
  padding: 22px;
}

.side-panel dl {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px 12px;
  margin: 0;
}

.side-panel dt {
  color: #94a3b8;
  font-weight: 900;
}

.side-panel dd {
  min-width: 0;
  margin: 0;
  color: #334155;
  font-weight: 800;
}

.side-panel a {
  color: var(--color-blue);
}

.ranking-page-list .horizontal-card {
  grid-template-columns: 180px minmax(0, 1fr);
}

.sitemap-list {
  columns: 3 260px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sitemap-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.sitemap-list a {
  color: #334155;
  font-size: 14px;
}

.sitemap-list a:hover {
  color: var(--color-blue);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #cbd5e1;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  padding: 72px 0 28px;
}

.footer-wave {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 54px;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-wave path {
  fill: #f8fafc;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand .brand-mark {
  background: linear-gradient(135deg, var(--color-cyan), var(--color-blue));
}

.footer-brand small {
  color: #94a3b8;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #67e8f9;
  font-size: 18px;
}

.site-footer p {
  margin: 14px 0 0;
  color: #94a3b8;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: #67e8f9;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 38px;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 14px;
}

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

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

  .header-search {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

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

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

  .ranking-panel,
  .detail-sidebar {
    position: static;
  }

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

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

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

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

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

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-search {
    display: none;
  }

  .mobile-nav.open {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 540px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .section {
    padding: 52px 0;
  }

  .row-title {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 10px;
  }

  .movie-grid,
  .movie-grid-compact,
  .category-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .category-overview-card,
  .horizontal-card,
  .ranking-page-list .horizontal-card {
    grid-template-columns: 1fr;
  }

  .horizontal-poster,
  .overview-image {
    aspect-ratio: 16 / 9;
  }

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

  .page-search-form {
    flex-direction: column;
  }

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

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

  .footer-grid {
    gap: 24px;
  }

  .copyright {
    flex-direction: column;
  }
}
