@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --gh2p-swamp: #1a2e1a;
  --gh2p-swamp-m: #243824;
  --gh2p-swamp-l: #3d5c2e;
  --gh2p-moss: #4a7c3f;
  --gh2p-mud: #c87941;
  --gh2p-mud-l: #f4a261;
  --gh2p-hunter: #5c3d1e;
  --gh2p-hunter-l: #8b5a2b;
  --gh2p-paper: #e8efe4;
  --gh2p-paper-d: #b8c9b0;
  --gh2p-ink: #0f1a0f;
  --gh2p-muted: #7a9470;
  --gh2p-border: rgba(244, 162, 97, 0.28);
  --gh2p-radius: 10px;
  --gh2p-radius-lg: 18px;
  --gh2p-shadow: 0 14px 44px rgba(15, 26, 15, 0.55);
  --gh2p-sans: 'IBM Plex Sans', system-ui, sans-serif;
  --gh2p-serif: 'Bitter', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--gh2p-sans);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--gh2p-paper);
  background: var(--gh2p-swamp);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(74, 124, 63, 0.22), transparent),
    linear-gradient(180deg, var(--gh2p-swamp) 0%, #142214 100%);
  min-height: 100vh;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gh2p-mud-l);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: #ffd4a8; }

.gh2p-wrap { width: min(1080px, 92vw); margin-inline: auto; }

.gh2p-header {
  background: rgba(36, 56, 36, 0.94);
  border-bottom: 1px solid var(--gh2p-border);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(10px);
}

.gh2p-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.75rem 0;
}

.gh2p-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gh2p-paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-right: auto;
}

.gh2p-game-logo {
  width: auto;
  max-width: min(180px, 42vw);
  height: auto;
  max-height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

.gh2p-logo-meta {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gh2p-muted);
  font-style: normal;
}

.gh2p-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gh2p-btn {
  font-family: var(--gh2p-sans);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  border-radius: var(--gh2p-radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.gh2p-btn-primary {
  background: linear-gradient(135deg, var(--gh2p-mud) 0%, var(--gh2p-hunter-l) 100%);
  color: var(--gh2p-paper);
  box-shadow: 0 4px 16px rgba(200, 121, 65, 0.35);
}
.gh2p-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(244, 162, 97, 0.45);
  color: #fff;
}

.gh2p-btn-secondary {
  background: transparent;
  color: var(--gh2p-mud-l);
  border: 1px solid var(--gh2p-border);
}
.gh2p-btn-secondary:hover {
  background: rgba(244, 162, 97, 0.1);
  color: #ffd4a8;
}

.gh2p-btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }

.gh2p-hamburger {
  display: none;
  background: var(--gh2p-swamp-l);
  color: var(--gh2p-paper);
  border: 1px solid var(--gh2p-border);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.gh2p-links {
  width: 100%;
  flex-basis: 100%;
}

.gh2p-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
}

.gh2p-links a {
  color: var(--gh2p-paper-d);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
}
.gh2p-links a:hover,
.gh2p-links a[aria-current="page"] {
  color: var(--gh2p-mud-l);
}

.gh2p-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(61, 92, 46, 0.25) 0%, transparent 100%);
}

.gh2p-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gh2p-mud-l);
  background: rgba(92, 61, 30, 0.45);
  border: 1px solid var(--gh2p-border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
}

.gh2p-hero h1 {
  font-family: var(--gh2p-serif);
  font-size: clamp(1.65rem, 4.5vw, 2.45rem);
  line-height: 1.25;
  margin: 0 0 0.85rem;
  color: var(--gh2p-paper);
}

.gh2p-lead {
  font-size: 1.08rem;
  color: var(--gh2p-paper-d);
  max-width: 62ch;
  margin: 0 0 1.5rem;
}

.gh2p-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.gh2p-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.gh2p-fact {
  background: rgba(36, 56, 36, 0.7);
  border: 1px solid var(--gh2p-border);
  border-radius: var(--gh2p-radius);
  padding: 0.85rem 1rem;
  text-align: center;
}
.gh2p-fact b {
  display: block;
  font-family: var(--gh2p-serif);
  font-size: 1.15rem;
  color: var(--gh2p-mud-l);
}
.gh2p-fact small {
  font-size: 0.75rem;
  color: var(--gh2p-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gh2p-hero-banner {
  margin: 0;
  border-radius: var(--gh2p-radius-lg);
  overflow: hidden;
  box-shadow: var(--gh2p-shadow);
  border: 1px solid var(--gh2p-border);
}
.gh2p-hero-banner img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.gh2p-promo-block {
  margin: 2rem 0;
  border-radius: var(--gh2p-radius-lg);
  overflow: hidden;
  border: 1px solid var(--gh2p-border);
  background: rgba(36, 56, 36, 0.5);
}
.gh2p-promo-block img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.gh2p-promo-block figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--gh2p-muted);
}

.gh2p-main { padding-bottom: 3rem; }

.gh2p-section {
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.35rem;
  background: rgba(36, 56, 36, 0.55);
  border: 1px solid rgba(74, 124, 63, 0.2);
  border-radius: var(--gh2p-radius);
}

.gh2p-section h2 {
  font-family: var(--gh2p-serif);
  font-size: 1.35rem;
  color: var(--gh2p-mud-l);
  margin: 0 0 0.75rem;
}
.gh2p-section h3 {
  font-family: var(--gh2p-serif);
  font-size: 1.1rem;
  color: var(--gh2p-paper);
  margin: 1.25rem 0 0.5rem;
}
.gh2p-section p { margin: 0 0 0.85rem; }
.gh2p-section p:last-child { margin-bottom: 0; }

.gh2p-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0;
}
.gh2p-section th,
.gh2p-section td {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(74, 124, 63, 0.25);
  text-align: left;
}
.gh2p-section th {
  background: rgba(92, 61, 30, 0.35);
  color: var(--gh2p-mud-l);
  font-weight: 600;
}
.gh2p-section td { background: rgba(26, 46, 26, 0.4); }

.gh2p-tba {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gh2p-mud);
  background: rgba(200, 121, 65, 0.15);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
}

.gh2p-footer {
  background: var(--gh2p-ink);
  border-top: 1px solid var(--gh2p-border);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.gh2p-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.gh2p-footer h3 {
  font-family: var(--gh2p-serif);
  font-size: 1rem;
  color: var(--gh2p-mud-l);
  margin: 0 0 0.75rem;
}
.gh2p-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gh2p-footer li { margin-bottom: 0.4rem; }
.gh2p-footer a {
  color: var(--gh2p-paper-d);
  text-decoration: none;
  font-size: 0.88rem;
}
.gh2p-footer a:hover { color: var(--gh2p-mud-l); }

.gh2p-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(74, 124, 63, 0.2);
  font-size: 0.82rem;
  color: var(--gh2p-muted);
}

.gh2p-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.2rem 0.5rem;
  background: var(--gh2p-hunter);
  color: var(--gh2p-paper);
  font-weight: 700;
  border-radius: 6px;
  font-size: 0.78rem;
}

.gh2p-hub-intro {
  padding: 2.5rem 0 1.5rem;
}
.gh2p-hub-intro h1 {
  font-family: var(--gh2p-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin: 0 0 1rem;
}
.gh2p-hub-intro h2 {
  font-family: var(--gh2p-serif);
  font-size: 1.2rem;
  color: var(--gh2p-mud-l);
  margin: 1.5rem 0 0.75rem;
}
.gh2p-hub-intro p {
  color: var(--gh2p-paper-d);
  max-width: 72ch;
}

.gh2p-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  padding-bottom: 3rem;
}

.gh2p-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.25rem;
  background: rgba(36, 56, 36, 0.65);
  border: 1px solid var(--gh2p-border);
  border-radius: var(--gh2p-radius);
  color: var(--gh2p-paper);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
}
.gh2p-hub-card span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gh2p-muted);
}
.gh2p-hub-card:hover {
  background: rgba(92, 61, 30, 0.35);
  transform: translateY(-2px);
  color: var(--gh2p-paper);
}

@media (max-width: 768px) {
  .gh2p-hamburger { display: block; }
  .gh2p-links { display: none; }
  .gh2p-links.gh2p-links--visible {
    display: block;
    padding: 0.75rem 0 0.25rem;
  }
  .gh2p-links ul { flex-direction: column; gap: 0.5rem; }
  .gh2p-hero { padding-top: 1.75rem; }
  .gh2p-section { padding: 1rem; }
}

@media (max-width: 320px) {
  .gh2p-btn-lg { width: 100%; }
  .gh2p-facts { grid-template-columns: 1fr 1fr; }
}
