:root {
  --geo-bg: #07111f;
  --geo-panel: #0d1b2e;
  --geo-panel-soft: #12243b;
  --geo-text: #eaf0f7;
  --geo-muted: #aebdd0;
  --geo-gold: #e8c97a;
  --geo-gold-dark: #c8a45c;
  --geo-line: rgba(255, 255, 255, 0.1);
  --geo-max: 1180px;
}

.geo-link-hub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.geo-link-hub a,
.geo-section-link a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(232, 201, 122, 0.34);
  border-radius: 999px;
  color: var(--geo-gold);
  text-decoration: none;
  background: rgba(232, 201, 122, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.geo-link-hub a:hover,
.geo-section-link a:hover {
  border-color: var(--geo-gold);
  background: rgba(232, 201, 122, 0.12);
}

.geo-section-link {
  margin-top: 30px;
  text-align: center;
}

body.geo-page {
  margin: 0;
  color: var(--geo-text);
  background: var(--geo-bg);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.75;
}

.geo-page *,
.geo-page *::before,
.geo-page *::after {
  box-sizing: border-box;
}

.geo-site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--geo-line);
  background: rgba(7, 17, 31, 0.94);
  backdrop-filter: blur(14px);
}

.geo-header-inner,
.geo-main,
.geo-footer-inner {
  width: min(calc(100% - 40px), var(--geo-max));
  margin: 0 auto;
}

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

.geo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--geo-text);
  text-decoration: none;
  font-weight: 700;
}

.geo-brand img {
  width: 108px;
  max-height: 44px;
  object-fit: contain;
  padding: 4px 7px;
  border-radius: 5px;
  background: #fff;
}

.geo-brand span {
  display: grid;
  line-height: 1.35;
}

.geo-brand small {
  color: var(--geo-gold-dark);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.geo-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.geo-nav a {
  color: var(--geo-muted);
  text-decoration: none;
  font-size: 14px;
}

.geo-nav a:hover,
.geo-nav a[aria-current="page"] {
  color: var(--geo-gold);
}

.geo-main {
  padding: 48px 0 76px;
}

.geo-breadcrumbs {
  margin: 0 0 26px;
  color: var(--geo-muted);
  font-size: 14px;
}

.geo-breadcrumbs a {
  color: var(--geo-muted);
}

.geo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 42px;
  padding: 46px;
  border: 1px solid var(--geo-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(53, 127, 191, 0.22), transparent 38%),
    linear-gradient(145deg, var(--geo-panel), #091727);
}

.geo-hero.geo-hero-text-only {
  grid-template-columns: 1fr;
}

.geo-eyebrow {
  margin: 0 0 10px;
  color: var(--geo-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.geo-hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.18;
}

.geo-lead {
  margin: 20px 0 0;
  color: #cbd6e4;
  font-size: 18px;
}

.geo-hero img {
  width: 100%;
  max-height: 360px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--geo-panel-soft);
}

.geo-section {
  margin-top: 52px;
}

.geo-section h2 {
  margin: 0 0 20px;
  color: var(--geo-text);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.3;
}

.geo-section h3 {
  margin: 28px 0 12px;
  color: var(--geo-gold);
  font-size: 21px;
}

.geo-section p {
  color: #c7d2df;
}

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

.geo-card {
  overflow: hidden;
  border: 1px solid var(--geo-line);
  border-radius: 16px;
  background: var(--geo-panel);
}

.geo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: var(--geo-panel-soft);
}

.geo-card-body {
  padding: 20px;
}

.geo-card h2,
.geo-card h3 {
  margin: 0 0 8px;
  color: var(--geo-text);
  font-size: 20px;
}

.geo-card p {
  margin: 0;
  color: var(--geo-muted);
  font-size: 15px;
}

.geo-card a {
  color: var(--geo-gold);
}

.geo-en {
  margin-bottom: 10px !important;
  color: #8096ae !important;
  font-size: 13px !important;
}

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

.geo-fact {
  padding: 20px;
  border: 1px solid var(--geo-line);
  border-radius: 14px;
  background: var(--geo-panel);
}

.geo-fact strong {
  display: block;
  color: var(--geo-gold);
  font-size: 28px;
}

.geo-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--geo-line);
  border-radius: 14px;
}

.geo-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--geo-panel);
}

.geo-table th,
.geo-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--geo-line);
  text-align: left;
  vertical-align: top;
}

.geo-table th {
  color: var(--geo-gold);
  background: rgba(255, 255, 255, 0.03);
}

.geo-table td {
  color: #cad5e2;
}

.geo-list {
  margin: 0;
  padding-left: 22px;
  color: #cad5e2;
}

.geo-list li + li {
  margin-top: 8px;
}

.geo-faq details {
  padding: 18px 20px;
  border: 1px solid var(--geo-line);
  border-radius: 12px;
  background: var(--geo-panel);
}

.geo-faq details + details {
  margin-top: 12px;
}

.geo-faq summary {
  color: var(--geo-text);
  cursor: pointer;
  font-weight: 700;
}

.geo-faq p {
  margin-bottom: 0;
}

.geo-callout {
  padding: 24px;
  border-left: 4px solid var(--geo-gold);
  border-radius: 0 12px 12px 0;
  background: rgba(232, 201, 122, 0.08);
}

.geo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.geo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 8px;
  color: #07111f;
  background: var(--geo-gold);
  text-decoration: none;
  font-weight: 700;
}

.geo-button-secondary {
  color: var(--geo-gold);
  border: 1px solid var(--geo-gold-dark);
  background: transparent;
}

.geo-site-footer {
  border-top: 1px solid var(--geo-line);
  background: #050d17;
}

.geo-footer-inner {
  padding: 30px 0;
  color: #8293a8;
  font-size: 14px;
}

.geo-footer-inner a {
  color: #aebdd0;
}

@media (max-width: 900px) {
  .geo-hero,
  .geo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .geo-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .geo-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .geo-nav {
    justify-content: flex-start;
  }

  .geo-main {
    padding-top: 26px;
  }

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

  .geo-hero {
    padding: 28px 22px;
  }

  .geo-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  .geo-facts {
    grid-template-columns: 1fr;
  }
}
