:root {
  color-scheme: light;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --orange: #f97316;
  --red: #ef4444;
  --yellow: #eab308;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 12px 28px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 52px rgba(15, 23, 42, 0.16);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gray-50);
  color: var(--gray-800);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.22);
}

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

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

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

.brand {
  flex: 0 0 auto;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.brand-text {
  font-size: clamp(19px, 2.2vw, 26px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 650;
}

.desktop-nav > a,
.nav-dropdown > button {
  color: rgba(255, 255, 255, 0.92);
  border: 0;
  background: transparent;
  padding: 21px 0;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-dropdown:hover > button {
  color: #cffafe;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  color: var(--gray-800);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--gray-700);
}

.nav-dropdown-menu a:hover {
  background: #eff6ff;
  color: var(--cyan-dark);
}

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

.header-search input,
.mobile-search input,
.search-panel input,
.search-panel select {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 999px;
  color: inherit;
}

.header-search input {
  padding: 10px 44px 10px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

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

.header-search button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.mobile-panel {
  background: rgba(29, 78, 216, 0.95);
  padding: 16px;
}

.mobile-search {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-search input {
  min-width: 0;
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 700;
}

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

.mobile-panel nav a {
  border-radius: 10px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.10);
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

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

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

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.06));
}

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

.hero-copy {
  max-width: 720px;
  color: #fff;
}

.hero-badge,
.section-kicker,
.movie-meta span,
.tag-row span,
.detail-tags a,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-badge {
  padding: 8px 16px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.28);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 23px);
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-info span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-actions,
.section-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  padding: 14px 26px;
  color: #fff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  padding: 13px 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.btn-ghost {
  padding: 12px 20px;
  color: var(--cyan-dark);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100vw - 1280px) / 2 + 32px));
  bottom: 36px;
  display: flex;
  gap: 10px;
}

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

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

.section {
  padding: 56px 0;
}

.section.soft-blue {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.section.soft-orange {
  background: linear-gradient(135deg, #fff7ed, #fefce8);
}

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

.section-title {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
  font-weight: 900;
}

.section-desc {
  margin: 8px 0 0;
  color: var(--gray-600);
  max-width: 760px;
}

.section-kicker {
  padding: 6px 12px;
  margin-bottom: 10px;
  color: var(--cyan-dark);
  background: #ecfeff;
  font-weight: 800;
  font-size: 13px;
}

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

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

.movie-card.large {
  border-radius: var(--radius-lg);
}

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

.movie-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2937, #0891b2);
}

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

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

.movie-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.03));
  opacity: 0.82;
}

.play-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.84);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: all 0.25s ease;
}

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

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  border-radius: 8px;
  padding: 4px 9px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.rank-badge {
  left: 12px;
  right: auto;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.movie-body {
  padding: 16px;
}

.movie-card.large .movie-body {
  padding: 20px;
}

.movie-body h3,
.horizontal-body h3 {
  margin: 0 0 8px;
  color: var(--gray-800);
  line-height: 1.35;
  font-size: 18px;
  font-weight: 850;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-body p,
.horizontal-body p {
  margin: 0 0 12px;
  color: var(--gray-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.movie-meta span {
  padding: 4px 9px;
  color: var(--blue);
  background: #eff6ff;
  font-size: 12px;
  font-weight: 750;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  max-width: 100%;
  padding: 4px 8px;
  color: var(--gray-600);
  background: var(--gray-100);
  font-size: 12px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 26px;
  min-height: 190px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: var(--shadow-md);
}

.category-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.category-card h2,
.category-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 25px;
  font-weight: 900;
}

.category-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
}

.category-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-strip a {
  display: inline-flex;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--gray-700);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-weight: 750;
}

.category-strip a:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.ranking-layout,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 28px;
}

.ranking-list,
.side-list {
  display: grid;
  gap: 16px;
}

.horizontal-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.horizontal-card a {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.horizontal-cover {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  background: #111827;
}

.horizontal-cover img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
}

.horizontal-cover span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
}

.horizontal-body {
  min-width: 0;
  padding: 16px 16px 16px 0;
}

.horizontal-body div {
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 800;
}

.side-rank {
  float: right;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.page-hero {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  padding: 58px 0;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  font-weight: 900;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

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

.detail-main {
  padding: 38px 0 56px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow-lg);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.14));
}

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

.player-play {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.34);
  font-size: 34px;
}

.player-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  pointer-events: none;
}

.player-loading[hidden] {
  display: none;
}

.spinner {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.28);
  border-top-color: var(--cyan);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.info-panel,
.review-panel,
.side-panel,
.search-panel,
.empty-panel {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.info-panel,
.review-panel,
.side-panel {
  padding: 24px;
}

.info-panel h1 {
  margin: 0 0 14px;
  color: var(--gray-800);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 900;
}

.info-panel h2,
.review-panel h2,
.side-panel h2 {
  margin: 0 0 14px;
  color: var(--gray-800);
  font-size: 24px;
  font-weight: 900;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 20px;
}

.detail-meta span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--blue);
  background: #eff6ff;
  font-weight: 800;
  font-size: 14px;
}

.detail-copy {
  color: var(--gray-700);
  font-size: 16px;
}

.detail-copy p {
  margin: 0 0 14px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.detail-tags a,
.detail-tags span {
  padding: 8px 12px;
  color: var(--gray-700);
  background: var(--gray-100);
  font-weight: 750;
}

.detail-tags a:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.stack {
  display: grid;
  gap: 20px;
}

.sticky-side {
  position: sticky;
  top: 88px;
}

.search-panel {
  padding: 22px;
  margin-bottom: 26px;
}

.search-panel form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px auto;
  gap: 12px;
}

.search-panel input,
.search-panel select {
  padding: 12px 16px;
  color: var(--gray-800);
  background: var(--gray-100);
}

.search-panel button {
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  font-weight: 800;
  cursor: pointer;
}

.empty-panel {
  padding: 46px;
  text-align: center;
  color: var(--gray-600);
}

.about-card {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.about-card header {
  padding: 34px;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.about-card header h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
}

.about-card .content {
  padding: 30px;
  display: grid;
  gap: 28px;
}

.about-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
}

.about-card p {
  margin: 0;
  color: var(--gray-700);
}

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

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

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

  .ranking-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .sticky-side {
    position: static;
  }
}

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

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

  .hero-slide::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.24));
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 88px;
  }

  .hero-info {
    gap: 8px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
  }

  .hero-dots {
    left: 24px;
    right: auto;
    bottom: 32px;
  }

  .section {
    padding: 40px 0;
  }

  .section-header {
    display: block;
  }

  .section-actions {
    margin-top: 16px;
  }

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

  .movie-body {
    padding: 13px;
  }

  .movie-body h3 {
    font-size: 16px;
  }

  .movie-body p {
    font-size: 13px;
  }

  .horizontal-card a {
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 12px;
  }

  .horizontal-cover,
  .horizontal-cover img {
    min-height: 105px;
  }

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

  .search-panel button {
    padding: 12px 20px;
  }

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

@media (max-width: 460px) {
  .brand-text {
    font-size: 18px;
  }

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

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

  .horizontal-card a {
    grid-template-columns: 1fr;
  }

  .horizontal-body {
    padding: 16px;
  }
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, var(--gray-800), var(--gray-900));
}

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

.footer-inner {
  padding: 46px 0 28px;
}

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

.footer-brand {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}
