:root {
  color-scheme: dark;
  --bg: #030712;
  --panel: #0b1120;
  --panel-soft: rgba(17, 24, 39, 0.72);
  --panel-deep: #111827;
  --text: #f9fafb;
  --muted: #9ca3af;
  --muted-strong: #d1d5db;
  --line: rgba(255, 255, 255, 0.08);
  --amber: #f59e0b;
  --amber-soft: rgba(245, 158, 11, 0.18);
  --red: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(245, 158, 11, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(239, 68, 68, 0.13), transparent 32rem),
    var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 12px 36px rgba(245, 158, 11, 0.35);
  font-size: 18px;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav,
.footer-links,
.mobile-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link,
.mobile-link,
.category-mini {
  border-radius: 12px;
  color: var(--muted-strong);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 650;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #fff;
  background: rgba(245, 158, 11, 0.15);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: currentColor;
}

.mobile-nav {
  display: none;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 0 0 16px;
}

.mobile-link,
.category-mini {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
}

.category-mini {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
}

main {
  min-height: 70vh;
}

.hero-carousel {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050816;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: blur(8px) brightness(0.48) saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 18, 0.96) 0%, rgba(3, 7, 18, 0.78) 46%, rgba(3, 7, 18, 0.36) 100%),
    linear-gradient(180deg, rgba(3, 7, 18, 0.15), rgba(3, 7, 18, 0.86));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  min-height: 760px;
  margin: 0 auto;
  padding: 96px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 54px;
}

.hero-text {
  max-width: 760px;
}

.hero-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  color: #fbbf24;
  background: var(--amber-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-text h1 {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-one-line {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
  font-weight: 750;
}

.hero-summary,
.page-hero p,
.quick-search-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.8;
}

.hero-tags,
.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 24px 0 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: #f9fafb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1;
}

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

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

.primary-button {
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  box-shadow: 0 16px 42px rgba(245, 158, 11, 0.28);
}

.ghost-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--panel);
}

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

.hero-poster span,
.poster-play {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: rgba(251, 191, 36, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.hero-poster span {
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  font-size: 26px;
}

.hero-poster:hover img,
.movie-card:hover img,
.category-cover:hover img {
  transform: scale(1.06);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  font-size: 34px;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.2s ease, background-color 0.2s ease;
}

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

.content-section,
.page-main {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

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

.page-main {
  padding: 34px 0 0;
}

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

.section-head h2,
.page-hero h1,
.quick-search-card h2,
.detail-copy h2 {
  margin: 0;
  color: #fff;
  letter-spacing: -0.03em;
}

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

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more,
.text-link {
  color: #fbbf24;
  font-weight: 800;
}

.quick-search-card,
.page-hero,
.prose-card,
.filter-panel,
.detail-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.88), rgba(5, 8, 22, 0.88));
  box-shadow: var(--shadow);
}

.quick-search-card {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 20px;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll .movie-card {
  scroll-snap-align: start;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.38);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(17, 24, 39, 0.72);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.34);
  background: rgba(31, 41, 55, 0.82);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--panel-deep);
}

.poster-link img,
.compact-poster img,
.category-cover img,
.ranking-row img,
.detail-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.poster-link::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
}

.poster-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  color: #111827;
  background: #fbbf24;
  font-size: 12px;
  font-weight: 900;
}

.poster-play {
  right: 10px;
  bottom: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
}

.card-body {
  padding: 14px;
}

.card-meta,
.detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.card-meta span:first-child {
  color: #fbbf24;
  font-weight: 900;
}

.card-body h3 {
  margin: 8px 0 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
}

.card-body h3 a:hover,
.compact-card h3 a:hover,
.ranking-row a:hover strong {
  color: #fbbf24;
}

.card-body p,
.compact-card p,
.category-overview-card p,
.prose-card p,
.detail-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.card-tags {
  margin-top: 12px;
}

.category-grid,
.category-overview-grid {
  display: grid;
  gap: 20px;
}

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

.category-card,
.category-overview-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.84), rgba(7, 11, 26, 0.92));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card {
  min-height: 160px;
  padding: 24px;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.36);
}

.category-card span,
.category-overview-card h2 {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.category-card p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
}

.ranking-list,
.ranking-page-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking-list {
  display: grid;
  gap: 10px;
}

.ranking-list a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.75);
}

.rank-num {
  color: #fbbf24;
  font-weight: 950;
  font-size: 20px;
}

.ranking-list strong {
  color: #fff;
}

.ranking-list em,
.ranking-row em {
  color: var(--muted);
  font-style: normal;
}

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

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

.compact-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(17, 24, 39, 0.72);
}

.compact-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
}

.compact-card h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
}

.compact-card span {
  display: inline-block;
  margin-top: 8px;
  color: #fbbf24;
  font-size: 12px;
  font-weight: 750;
}

.page-hero {
  margin-bottom: 24px;
  padding: 44px;
  min-height: 220px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  filter: blur(12px);
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
}

.filter-panel {
  margin-bottom: 26px;
  padding: 20px;
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
}

.filter-row label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.filter-row input,
.filter-row select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #fff;
  background: rgba(3, 7, 18, 0.72);
  padding: 0 14px;
  outline: none;
}

.filter-row input:focus,
.filter-row select:focus {
  border-color: rgba(245, 158, 11, 0.58);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.filter-result {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.category-overview-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.category-overview-card > div {
  padding: 22px;
}

.category-cover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  height: 150px;
  overflow: hidden;
  background: #111827;
}

.category-cover img {
  min-width: 0;
}

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

.ranking-row a {
  display: grid;
  grid-template-columns: 66px 72px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.75);
}

.rank-num.large {
  font-size: 24px;
}

.ranking-row img {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
}

.rank-copy {
  display: grid;
  gap: 6px;
}

.rank-copy strong {
  color: #fff;
  font-size: 18px;
}

.ranking-row b {
  color: #fbbf24;
  font-size: 18px;
}

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

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

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  gap: 24px;
  align-items: stretch;
}

.player-shell {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow);
}

.main-video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
  cursor: pointer;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  font-size: 32px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
}

.player-overlay strong {
  font-size: 18px;
}

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

.detail-panel {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(17, 24, 39, 0.76);
  box-shadow: var(--shadow);
}

.detail-poster {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: #111827;
}

.detail-info h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}

.detail-one-line {
  margin: 0 0 18px;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.75;
}

.detail-meta {
  align-items: start;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.detail-copy {
  padding: 28px;
}

.detail-copy h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.detail-copy p + h2 {
  margin-top: 26px;
}

.prose-card {
  padding: 32px;
}

.prose-card p + p {
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .movie-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .detail-hero {
    grid-template-columns: 1fr;
  }
}

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

  .menu-toggle {
    display: block;
  }

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

  .mobile-categories {
    margin-top: 8px;
  }

  .hero-carousel,
  .hero-content {
    min-height: 700px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 70px 0 92px;
  }

  .hero-poster {
    display: none;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

  .split-section,
  .filter-row {
    grid-template-columns: 1fr;
  }

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

  .quick-search-card,
  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .detail-panel {
    grid-template-columns: 130px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(100% - 20px, var(--max));
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 11px;
  }

  .hero-carousel,
  .hero-content {
    min-height: 650px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-one-line {
    font-size: 18px;
  }

  .hero-summary,
  .page-hero p,
  .quick-search-card p {
    font-size: 15px;
  }

  .content-section,
  .page-main {
    width: min(100% - 20px, var(--max));
  }

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

  .page-hero,
  .quick-search-card,
  .prose-card,
  .detail-copy {
    padding: 24px;
  }

  .movie-grid,
  .movie-grid-tight,
  .category-grid,
  .category-overview-grid,
  .compact-list-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .horizontal-scroll {
    grid-auto-columns: 185px;
  }

  .card-body {
    padding: 12px;
  }

  .card-body h3 {
    font-size: 15px;
  }

  .category-overview-card {
    grid-column: span 2;
  }

  .ranking-row a {
    grid-template-columns: 46px 58px 1fr;
  }

  .ranking-row b {
    grid-column: 3;
    justify-self: start;
  }

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

  .detail-poster {
    max-width: 220px;
  }

  .player-shell,
  .main-video {
    min-height: 300px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  margin-top: 54px;
  border-top: 1px solid var(--line);
  background: rgba(3, 7, 18, 0.86);
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
}

.footer-inner strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.footer-links {
  justify-content: flex-end;
}

.footer-links a {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
