:root {
  color-scheme: dark;
  --bg: #0b0d0c;
  --panel: #151816;
  --panel-strong: #1d211d;
  --text: #f1efe5;
  --muted: #b5b1a4;
  --line: rgba(241, 239, 229, 0.16);
  --accent: #d6a84c;
  --accent-strong: #f0c46a;
  --danger: #a84a35;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

body.is-ready {
  opacity: 1;
  transform: translateY(0);
}

body.is-leaving {
  opacity: 0;
  transform: translateY(-18px);
}

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

[hidden] {
  display: none !important;
}

.page-view {
  min-height: calc(100vh - 68px);
  padding-top: 132px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(241, 239, 229, 0.12);
  background: rgba(11, 13, 12, 0.78);
  backdrop-filter: blur(16px);
}

.site-header nav {
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
}

.brand-logo {
  width: 112px;
  height: 34px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a,
.nav-dropdown-toggle {
  position: relative;
  padding: 10px 13px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

nav a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--text);
  border-color: rgba(214, 168, 76, 0.38);
  background: rgba(214, 168, 76, 0.08);
}

nav a.is-active,
.nav-dropdown.is-active .nav-dropdown-toggle {
  border-color: var(--accent);
  background: var(--accent);
  color: #15110a;
}

nav a.is-active:hover,
.nav-dropdown.is-active .nav-dropdown-toggle:hover {
  color: #15110a;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  cursor: default;
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.86;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  opacity: 1;
  transform: rotate(45deg) translate(1px, -1px);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 168px;
  border: 1px solid rgba(241, 239, 229, 0.16);
  background: rgba(12, 14, 13, 0.96);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(214, 168, 76, 0));
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  white-space: nowrap;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-left: 14px;
  border: 1px solid var(--accent);
  background: rgba(214, 168, 76, 0.12);
  color: var(--accent-strong);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-cta:hover {
  background: var(--accent);
  color: #15110a;
  transform: translateY(-1px);
}

.steam-auth {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
}

.steam-login,
.steam-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(102, 192, 244, 0.42);
  background: rgba(23, 26, 33, 0.78);
  color: #ffffff;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.steam-profile {
  gap: 10px;
}

.steam-profile small {
  color: #9fb6c6;
  font-size: 11px;
  font-weight: 800;
}

.steam-logout {
  color: var(--accent-strong);
}

.steam-login:hover,
.steam-logout:hover {
  border-color: rgba(102, 192, 244, 0.82);
  background: rgba(27, 40, 56, 0.95);
}

.language-menu {
  position: relative;
  margin-left: 18px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 96px;
  height: 38px;
  border: 1px solid rgba(241, 239, 229, 0.2);
  background: rgba(241, 239, 229, 0.08);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.language-toggle:hover {
  border-color: rgba(240, 196, 106, 0.55);
  background: rgba(214, 168, 76, 0.14);
}

.language-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.language-icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.language-caret {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu-panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 4px;
  width: 320px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  border: 1px solid rgba(241, 239, 229, 0.16);
  background: rgba(12, 14, 13, 0.98);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.language-menu:hover .language-menu-panel,
.language-menu:focus-within .language-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu-panel button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.language-menu-panel button:hover,
.language-menu-panel button.is-active {
  border-color: rgba(214, 168, 76, 0.36);
  background: rgba(214, 168, 76, 0.1);
  color: var(--text);
}

.language-menu-panel button.is-active {
  color: var(--accent-strong);
}

.language-menu-panel small {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88vh;
  overflow: hidden;
  padding: 132px 32px 80px;
}

.hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.04);
  filter: saturate(0.85) contrast(1.08);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-slide:nth-child(1) {
  background-position: center right;
}

.hero-slide:nth-child(2) {
  background-position: center;
}

.hero-slide:nth-child(3) {
  background-position: center;
}

.hero-slide:nth-child(4) {
  background-position: center left;
}

.hero-slide:nth-child(5) {
  background-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.96) 0%, rgba(11, 13, 12, 0.72) 42%, rgba(11, 13, 12, 0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(11, 13, 12, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: fit-content;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.hero-copy {
  width: min(620px, 100%);
  color: #d8d3c3;
  font-size: 20px;
  line-height: 1.7;
}

.hero-title-stack {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.hero-logo {
  display: block;
  width: min(300px, 82vw);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.52));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.copy-button {
  background: var(--accent);
  color: #15110a;
}

.button.secondary {
  border-color: rgba(241, 239, 229, 0.28);
  background: rgba(241, 239, 229, 0.08);
}

.button:hover,
.copy-button:hover {
  transform: translateY(-1px);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101310;
}

.status-card {
  position: relative;
  min-height: 132px;
  padding: 22px 32px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  outline: none;
  transition: background 0.18s ease, transform 0.18s ease, min-height 0.18s ease;
}

.status-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(214, 168, 76, 0.22);
  transform: rotate(18deg);
}

.status-card:hover,
.status-card:focus-visible {
  min-height: 176px;
  background: #161a16;
  transform: translateY(-2px);
}

.status-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.status-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

.status-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #c9c4b5;
  font-size: 14px;
  line-height: 1.65;
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, max-height 0.18s ease;
}

.status-card:hover p,
.status-card:focus-visible p {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.section,
.preview-section,
.priority-section,
.videos-section,
.join-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  width: min(640px, 100%);
  margin-bottom: 34px;
}

.about-grid,
.community-grid,
.preview-grid,
.server-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.preview-card,
.server-card,
.priority-panel,
.video-panel,
.connect-panel,
.community-link {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 210px;
  padding: 26px;
}

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

.preview-card {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(214, 168, 76, 0.1), rgba(214, 168, 76, 0) 42%),
    var(--panel);
}

.preview-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(214, 168, 76, 0.32);
  padding: 0 10px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.preview-card p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-card p,
.join-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.server-card {
  position: relative;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
}

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

.server-map-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 560px;
  padding: 0;
  background: #101310;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.server-map-card:hover {
  border-color: rgba(240, 196, 106, 0.58);
  transform: translateY(-3px);
}

.server-card-media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.9) contrast(1.06);
}

.server-card-body {
  display: grid;
  grid-template-rows: auto auto 245px auto 74px 42px;
  align-content: start;
  padding: 24px;
}

.server-card-body .mini-ip {
  align-self: start;
  margin-top: 0;
}

.server-card-body .text-link,
.server-card-body .copy-button {
  align-self: end;
}

.server-card-body .text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 0;
}

.server-placeholder {
  min-height: 74px;
}

.server-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(214, 168, 76, 0.2);
  pointer-events: none;
}

.server-card.is-live::before {
  border-top-color: var(--accent);
}

.server-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.server-card-top strong {
  color: var(--accent-strong);
}

.server-card p,
.split-copy p,
.video-panel p,
.priority-content p,
.priority-panel li {
  color: var(--muted);
  line-height: 1.75;
}

.server-map-card h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.server-map-card p[data-i18n^="servers.card"] {
  min-height: 0;
}

.server-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}

.server-meta span {
  border: 1px solid rgba(241, 239, 229, 0.14);
  padding: 6px 9px;
  color: #d8d3c3;
  font-size: 12px;
  font-weight: 800;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 800;
}

.store-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 116px 0 92px;
}

.store-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.store-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.store-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  min-height: 560px;
  border: 1px solid var(--line);
  background: #101310;
  box-shadow: var(--shadow);
  overflow: visible;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.store-card:hover {
  border-color: rgba(240, 196, 106, 0.58);
  transform: translateY(-3px);
}

.store-card-featured {
  border-color: rgba(214, 168, 76, 0.46);
}

.store-card-media {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.9) contrast(1.06);
}

.store-card-body {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  gap: 14px;
  padding: 26px;
}

.store-card-body > span {
  width: fit-content;
  border: 1px solid rgba(214, 168, 76, 0.34);
  background: rgba(214, 168, 76, 0.1);
  color: var(--accent-strong);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-card-body h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.store-card-body strong {
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

.store-card-body p {
  color: var(--muted);
  line-height: 1.75;
}

.store-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid rgba(214, 168, 76, 0.24);
  background: rgba(214, 168, 76, 0.08);
  padding: 20px 24px;
}

.store-note strong {
  color: var(--accent-strong);
  font-size: 18px;
}

.store-note p {
  margin: 0;
  color: #d8d3c3;
  line-height: 1.7;
}

.store-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.store-help {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(241, 239, 229, 0.24);
  background: rgba(241, 239, 229, 0.08);
  color: var(--accent-strong);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.store-help:hover {
  border-color: rgba(240, 196, 106, 0.7);
  background: rgba(214, 168, 76, 0.14);
  transform: translateY(-1px);
}

.store-help-wrap {
  position: relative;
  display: inline-flex;
}

.store-help-tip {
  position: absolute;
  z-index: 30;
  right: 0;
  top: auto;
  bottom: calc(100% + 12px);
  width: min(460px, 86vw);
  max-height: min(420px, calc(100vh - 140px));
  overflow-y: auto;
  border: 1px solid rgba(214, 168, 76, 0.34);
  background: #151816;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  padding: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.store-help-tip::after {
  content: "";
  position: absolute;
  right: 17px;
  top: auto;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(214, 168, 76, 0.34);
  border-bottom: 1px solid rgba(214, 168, 76, 0.34);
  border-left: 0;
  border-top: 0;
  background: #151816;
  transform: rotate(45deg);
}

.store-help-tip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-strong);
  font-size: 14px;
}

.store-help-tip span {
  display: block;
}

.store-help-tip span + span {
  margin-top: 6px;
}

.store-help:hover + .store-help-tip,
.store-help:focus-visible + .store-help-tip,
.store-help-wrap:hover .store-help-tip {
  opacity: 1;
  transform: translateY(0);
}

.priority-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
}

.priority-content {
  width: min(680px, 100%);
}

.priority-panel {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(214, 168, 76, 0.18), rgba(214, 168, 76, 0) 42%),
    var(--panel-strong);
}

.priority-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.priority-panel strong {
  display: block;
  margin-bottom: 20px;
  font-size: 30px;
}

.priority-panel ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 20px;
}

.donation-section {
  grid-template-columns: 0.85fr 1.15fr;
}

.support-section {
  align-items: start;
}

.donation-mini-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: -34px auto 0;
  padding: 0 0 92px;
}

.about-donation {
  margin-top: 0;
  padding: 0 0 92px;
}

.about-page {
  padding-top: 116px;
}

.donation-mini-section h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.donation-mini-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(214, 168, 76, 0.14), rgba(214, 168, 76, 0) 42%),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 24px;
}

.donation-mini-top,
.donation-mini-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.donation-mini-top {
  margin-bottom: 14px;
}

.donation-mini-foot {
  margin-top: 14px;
}

.donation-mini-top strong,
.donation-mini-foot strong {
  color: var(--text);
  font-size: 20px;
}

.donation-panel {
  padding: 0;
  overflow: hidden;
}

.donation-meter {
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(214, 168, 76, 0.22), rgba(214, 168, 76, 0) 46%),
    #111411;
}

.donation-meter-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.donation-meter-top span,
.donation-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.donation-meter-top strong {
  margin: 0;
  color: var(--accent-strong);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
}

.donation-progress {
  width: 100%;
  height: 18px;
  border: 1px solid rgba(241, 239, 229, 0.16);
  background: #090b0a;
  overflow: hidden;
}

.donation-progress span {
  display: block;
  width: 0;
  height: 100%;
  background:
    linear-gradient(90deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 28px rgba(214, 168, 76, 0.35);
  transition: width 0.45s ease;
}

.donation-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.donation-stats div {
  min-height: 88px;
  border: 1px solid rgba(241, 239, 229, 0.12);
  background: rgba(5, 6, 5, 0.38);
  padding: 16px;
}

.donation-stats strong {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 24px;
}

.donation-panel ul {
  margin: 0;
  padding: 26px 28px 8px 48px;
}

.donation-panel .button {
  margin: 0 28px 28px;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  font-size: 18px;
}

.about-hero,
.about-ecosystem,
.about-ops {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 44px;
  align-items: center;
  min-height: 560px;
  padding: 58px 0 86px;
}

.about-hero-copy h1 {
  margin-bottom: 22px;
}

.about-hero-copy p:not(.eyebrow) {
  color: #d9d4c6;
  font-size: 20px;
  line-height: 1.75;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.about-hero-media {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #111411;
  box-shadow: var(--shadow);
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 12, 0.06), rgba(11, 13, 12, 0.22)),
    linear-gradient(0deg, rgba(11, 13, 12, 0.68), rgba(11, 13, 12, 0) 42%);
  pointer-events: none;
}

.about-hero-media img,
.ecosystem-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-ecosystem {
  padding: 0 0 78px;
}

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

.ecosystem-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  min-height: 500px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.ecosystem-card.text-only {
  grid-template-rows: 1fr;
  background:
    linear-gradient(135deg, rgba(214, 168, 76, 0.18), rgba(214, 168, 76, 0) 46%),
    var(--panel);
}

.ecosystem-card div {
  padding: 28px;
}

.ecosystem-card span {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(214, 168, 76, 0.42);
  padding: 6px 10px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.ecosystem-card h3 {
  font-size: 26px;
  line-height: 1.12;
}

.ecosystem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-ops {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 46px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}

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

.ops-list div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 82px;
  border: 1px solid rgba(241, 239, 229, 0.12);
  background: rgba(21, 24, 22, 0.72);
  padding: 18px 22px;
}

.ops-list strong {
  color: var(--accent-strong);
  font-size: 22px;
}

.ops-list span {
  color: #d8d3c3;
  line-height: 1.7;
}

.videos-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-video {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.video-embed {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050605;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.media-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.media-video-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  background: #111411;
}

.media-video-header h3,
.media-video-header p {
  margin: 0;
}

.media-video-header p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.bilibili-logo {
  display: grid;
  place-items: center;
  width: 210px;
  height: 72px;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px 18px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.bilibili-logo:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.bilibili-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-video-card .video-embed {
  border: 0;
  box-shadow: none;
}

.video-panel {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px;
}

.video-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  background: #fb7299;
  color: white;
  font-size: 38px;
  font-weight: 900;
}

.join-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.connect-panel {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(168, 74, 53, 0.18), rgba(168, 74, 53, 0) 42%),
    var(--panel-strong);
}

.server-name,
.ip-box {
  display: block;
  margin-bottom: 18px;
}

.server-name span,
.ip-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.server-name strong {
  font-size: 24px;
}

.ip-box input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(241, 239, 229, 0.18);
  background: #0c0f0d;
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
}

.copy-button {
  width: 100%;
  min-height: 52px;
  font: inherit;
}

.copy-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.copy-button.small {
  min-height: 42px;
  margin-top: 12px;
}

.server-card-body .copy-button.small {
  margin-top: 0;
}

.mini-ip {
  display: block;
  margin-top: 22px;
}

.mini-ip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.mini-ip input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(241, 239, 229, 0.18);
  background: #0c0f0d;
  color: var(--text);
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
}

.copy-state {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--accent-strong);
  font-size: 14px;
}

.community-link {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 210px;
  padding: 28px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.community-link:hover {
  border-color: rgba(240, 196, 106, 0.65);
  transform: translateY(-2px);
}

.community-link span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.community-link .social-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 86px;
  margin-bottom: 24px;
  border-radius: 8px;
  padding: 14px 20px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.community-link:hover .social-logo {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.social-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.qq-logo {
  background: #ffffff;
}

.kook-logo,
.discord-logo {
  background: #ffffff;
}

.community-link strong {
  font-size: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .site-header nav {
    margin-left: 0;
  }

  .language-menu {
    position: absolute;
    top: 14px;
    right: 18px;
    margin-left: 0;
  }

  .language-menu-panel {
    grid-template-columns: 1fr;
    width: min(280px, calc(100vw - 36px));
  }

  .nav-cta {
    margin-left: 0;
  }

  nav {
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 82vh;
    padding: 140px 24px 58px;
  }

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

  .hero-logo {
    width: min(280px, 86vw);
  }

  .status-strip,
  .about-grid,
  .community-grid,
  .preview-grid,
  .server-grid,
  .server-map-grid,
  .store-grid,
  .about-hero,
  .ecosystem-grid,
  .about-ops,
  .store-note,
  .donation-stats,
  .donation-mini-section,
  .priority-section,
  .split-copy,
  .join-section {
    grid-template-columns: 1fr;
  }

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

  .media-video-header {
    grid-template-columns: 1fr;
  }

  .status-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
  }

  .section,
  .store-section,
  .preview-section,
  .priority-section,
  .videos-section,
  .featured-video,
  .about-hero,
  .about-ecosystem,
  .about-ops,
  .donation-mini-section,
  .join-section {
    width: min(100% - 32px, 1180px);
    padding: 68px 0;
  }

  .about-page {
    padding-top: 96px;
  }

  .about-hero {
    min-height: auto;
    gap: 28px;
  }

  .about-hero-media {
    min-height: 280px;
  }

  .ecosystem-card {
    min-height: auto;
  }

  .store-card {
    min-height: auto;
    grid-template-rows: 220px 1fr;
  }

  .server-map-card {
    min-height: auto;
    grid-template-rows: 220px 1fr;
  }

  .store-card-media {
  }

  .donation-mini-section {
    margin-top: -24px;
  }

  .donation-mini-top,
  .donation-mini-foot {
    flex-direction: column;
    gap: 8px;
  }

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

  .store-actions .button {
    flex: 1;
  }

  .store-help-tip {
    right: auto;
    left: 50%;
    transform: translate(-50%, 8px);
  }

  .store-help-tip::after {
    right: calc(50% - 6px);
  }

  .store-help:hover + .store-help-tip,
  .store-help:focus-visible + .store-help-tip,
  .store-help-wrap:hover .store-help-tip {
    transform: translate(-50%, 0);
  }

  .site-footer {
    flex-direction: column;
    padding: 24px;
  }
}
