:root {
  --bg: #0f1119;
  --bg-soft: #17131f;
  --ink: #f7f1ec;
  --muted: #b9aebc;
  --paper: #10121b;
  --paper-ink: #f7f1ec;
  --paper-muted: #b9aebc;
  --line: rgba(255, 255, 255, 0.13);
  --red: #d64158;
  --rose: #ff6a86;
  --gold: #f2bd68;
  --cyan: #66d7df;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.105);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper-ink);
  background:
    linear-gradient(180deg, #0f1119 0%, #17131f 48%, #0f1119 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.75;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 106, 134, 0.08), transparent 42%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(12, 14, 22, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: #171018;
  background: linear-gradient(135deg, var(--gold), #ffe0a3);
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(240, 180, 91, 0.24);
}

.nav-download:hover,
.nav-download:focus-visible {
  box-shadow: 0 0 28px rgba(242, 189, 104, 0.34);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}

.nav-toggle span:nth-child(1) {
  top: 14px;
}

.nav-toggle span:nth-child(2) {
  top: 20px;
}

.nav-toggle span:nth-child(3) {
  top: 26px;
}

.nav-toggle.is-active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.section-band,
.section {
  position: relative;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

.section::before {
  right: min(6vw, 80px);
  top: 44px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 106, 134, 0.2);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transform: rotate(18deg);
}

.section::after {
  left: min(5vw, 70px);
  bottom: 42px;
  width: 112px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 215, 223, 0.55), transparent);
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--bg);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 17, 0.94) 0%, rgba(24, 13, 25, 0.66) 44%, rgba(10, 11, 20, 0.22) 100%),
    linear-gradient(0deg, rgba(15, 17, 25, 1) 0%, rgba(15, 17, 25, 0) 34%),
    radial-gradient(circle at 18% 52%, rgba(214, 65, 88, 0.22), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 140px 0 92px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  color: var(--rose);
  font-size: 64px;
  line-height: 1.02;
  font-weight: 900;
  text-shadow: 0 10px 34px rgba(211, 61, 85, 0.34);
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-copy strong,
.feature-panel strong,
.guide-card strong,
.system-card strong,
.faq-item strong,
.download-inner strong {
  color: var(--rose);
  font-weight: 900;
}

.hero-copy strong {
  color: var(--gold);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #190f15;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 16px 34px rgba(211, 61, 85, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 0 32px rgba(255, 106, 134, 0.36), 0 16px 34px rgba(242, 189, 104, 0.18);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 106, 134, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 106, 134, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hero-stats dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 1;
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollCue 1.4s ease-in-out infinite;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 106, 134, 0.18);
  color: #fff;
}

.quick-item {
  padding: 26px 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    #151722;
}

.quick-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 18px;
}

.quick-item span {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 96px 0;
}

.content-section {
  background:
    linear-gradient(180deg, rgba(15, 17, 25, 0.98), rgba(23, 19, 31, 0.98)),
    radial-gradient(circle at 80% 8%, rgba(214, 65, 88, 0.14), transparent 30%);
}

.section-dark {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(10, 11, 18, 0.94), rgba(23, 19, 31, 0.97)),
    url("img/tu2.jpeg") center / cover fixed;
}

.section-heading,
.intro-grid,
.world-layout,
.guide-grid,
.gallery-grid,
.update-card,
.faq-list,
.download-inner,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--red);
  font-size: 36px;
  line-height: 1.18;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--rose), var(--gold), transparent);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 106, 134, 0.28);
}

.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-heading .eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--rose));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 12px rgba(102, 215, 223, 0.42);
}

.section-dark .section-heading h2 {
  color: var(--rose);
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(247, 241, 236, 0.72);
  font-size: 17px;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.feature-panel,
.guide-card,
.system-card,
.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-panel::before,
.guide-card::before,
.system-card::before,
.faq-item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-top: 2px solid rgba(242, 189, 104, 0.58);
  border-right: 2px solid rgba(255, 106, 134, 0.52);
  opacity: 0.78;
}

.feature-panel::after,
.guide-card::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 44px;
  height: 8px;
  background: linear-gradient(90deg, rgba(102, 215, 223, 0.34), transparent);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.feature-panel:hover,
.guide-card:hover,
.system-card:hover,
.faq-item:hover {
  border-color: rgba(255, 106, 134, 0.46);
  box-shadow: 0 18px 48px rgba(214, 65, 88, 0.16);
  transform: translateY(-2px);
}

.feature-panel {
  padding: 28px;
}

.feature-panel h3,
.guide-card h3,
.system-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 22px;
}

.feature-panel p,
.guide-card p,
.system-card p {
  margin: 0;
  color: rgba(247, 241, 236, 0.7);
}

.image-panel,
.wide-image,
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 106, 134, 0.18);
  background: #151827;
  box-shadow: var(--shadow);
}

.image-panel::before,
.wide-image::before,
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.image-panel::after,
.wide-image::after,
.gallery-item::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 134, 0.68), transparent);
  pointer-events: none;
}

.image-panel img,
.wide-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-panel:hover img,
.wide-image:hover img,
.gallery-item:hover img {
  transform: scale(1.035);
}

figcaption {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(12, 14, 22, 0.96);
  font-size: 13px;
}

.world-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.wide-image {
  min-height: 520px;
}

.system-list {
  display: grid;
  gap: 16px;
}

.system-card {
  position: relative;
  padding: 24px 24px 24px 72px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.system-card p {
  color: rgba(255, 255, 255, 0.72);
}

.sprite {
  position: absolute;
  left: 22px;
  top: 26px;
  width: 32px;
  height: 32px;
  background:
    linear-gradient(135deg, rgba(255, 111, 141, 0.9), rgba(240, 180, 91, 0.9));
  box-shadow: 0 0 26px rgba(255, 111, 141, 0.34);
}

.sprite::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: rgba(255, 255, 255, 0.32);
  clip-path: inherit;
}

.sprite-crystal {
  clip-path: polygon(50% 0, 88% 24%, 72% 100%, 28% 100%, 12% 24%);
}

.sprite-core {
  border-radius: 50%;
}

.sprite-blade {
  clip-path: polygon(56% 0, 74% 0, 46% 100%, 28% 100%);
}

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

.guide-card {
  padding: 24px;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(23, 19, 31, 0.98), rgba(15, 17, 25, 0.98)),
    radial-gradient(circle at 18% 20%, rgba(102, 215, 223, 0.08), transparent 28%);
}

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

.gallery-item {
  aspect-ratio: 16 / 10;
  position: relative;
}

.gallery-item figcaption {
  position: static;
}

.updates-section {
  background:
    linear-gradient(180deg, rgba(15, 17, 25, 0.98), rgba(22, 14, 24, 0.98));
}

.update-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius);
  color: #fff;
  border: 1px solid rgba(255, 106, 134, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, #151722, #2b1725 62%, #341b29);
  box-shadow: var(--shadow);
}

.version-badge {
  display: grid;
  align-content: center;
  gap: 4px;
  place-items: center;
  min-height: 112px;
  border: 1px solid rgba(242, 189, 104, 0.32);
  border-radius: var(--radius);
  color: var(--gold);
  background:
    linear-gradient(135deg, rgba(242, 189, 104, 0.12), rgba(255, 106, 134, 0.08));
}

.version-badge span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.version-badge strong {
  font-size: 30px;
  font-weight: 900;
}

.update-body {
  min-width: 0;
}

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

.update-card h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.update-date {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.68);
}

.update-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.update-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(102, 215, 223, 0.32);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(102, 215, 223, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.update-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.update-timeline li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.update-timeline strong {
  color: var(--gold);
  font-weight: 900;
}

.update-timeline li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.74em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(242, 189, 104, 0.48);
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(22, 14, 24, 0.98), rgba(15, 17, 25, 0.98));
}

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

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
}

.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: rgba(247, 241, 236, 0.7);
}

.download-band {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 14, 22, 0.96), rgba(55, 20, 37, 0.88)),
    url("img/tu3.jpeg") center / cover;
}

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

.download-inner h2 {
  margin: 0;
  color: var(--rose);
  font-size: 32px;
}

.download-inner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.72);
}

footer {
  background: #0b0d14;
}

.site-footer strong {
  display: block;
  color: #fff;
}

.site-footer p {
  max-width: 780px;
  margin: 6px 0 0;
}

.back-top {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: #171018;
  background: var(--gold);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, 8px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(15, 17, 25, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-download {
    display: none;
  }

  .intro-grid,
  .world-layout,
  .guide-grid,
  .gallery-grid,
  .update-card,
  .download-inner {
    grid-template-columns: 1fr;
  }

  .download-inner {
    display: grid;
  }

  .update-head {
    display: grid;
  }

  .update-tags {
    justify-content: flex-start;
  }

  .wide-image {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 720px) {
  .nav {
    width: min(100% - 24px, 1180px);
    min-height: 64px;
  }

  .nav-links {
    top: 64px;
  }

  .brand span {
    font-size: 15px;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 100px 0 58px;
  }

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

  .hero-stats,
  .quick-strip {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 11, 20, 0.94), rgba(22, 12, 24, 0.7)),
      linear-gradient(0deg, rgba(15, 17, 25, 1) 0%, rgba(15, 17, 25, 0) 40%);
  }

  .section-heading,
  .intro-grid,
  .world-layout,
  .guide-grid,
  .gallery-grid,
  .update-card,
  .faq-list,
  .download-inner,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2 {
    font-size: 27px;
  }

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

  .download-inner h2 {
    font-size: 24px;
  }

  .feature-panel,
  .guide-card,
  .system-card {
    padding: 22px;
  }

  .system-card {
    padding-left: 66px;
  }

  .update-card {
    padding: 22px;
  }

  .version-badge {
    min-height: 88px;
  }

  .version-badge strong {
    font-size: 26px;
  }

  .update-card h3 {
    font-size: 21px;
  }

  .update-timeline {
    gap: 12px;
  }

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