@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,400;0,7..72,600;0,7..72,700;1,7..72,400&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  --gh2uk-deep: #0a2224;
  --gh2uk-marsh: #134e4a;
  --gh2uk-teal: #2d7a7a;
  --gh2uk-teal-l: #3d9a96;
  --gh2uk-rust: #c45c26;
  --gh2uk-rust-l: #e07a42;
  --gh2uk-rust-d: #8a3d18;
  --gh2uk-paper: #eef6f5;
  --gh2uk-paper-d: #b8d4d0;
  --gh2uk-ink: #051012;
  --gh2uk-muted: #7a9e9a;
  --gh2uk-border: rgba(196, 92, 38, 0.32);
  --gh2uk-radius: 10px;
  --gh2uk-radius-lg: 18px;
  --gh2uk-shadow: 0 14px 44px rgba(5, 16, 18, 0.58);
  --gh2uk-sans: 'Work Sans', system-ui, sans-serif;
  --gh2uk-serif: 'Literata', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--gh2uk-sans);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--gh2uk-paper);
  background: var(--gh2uk-deep);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(45, 122, 122, 0.24), transparent),
    linear-gradient(180deg, var(--gh2uk-deep) 0%, #071618 100%);
  min-height: 100vh;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gh2uk-rust-l);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: #ffc9a8; }

.gh2uk-wrap { width: min(1080px, 92vw); margin-inline: auto; }

.gh2uk-header {
  background: rgba(19, 78, 74, 0.94);
  border-bottom: 1px solid var(--gh2uk-border);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(10px);
}

.gh2uk-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.75rem 0;
}

.gh2uk-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gh2uk-paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-right: auto;
}

.gh2uk-game-logo {
  width: auto;
  max-width: min(180px, 42vw);
  height: auto;
  max-height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

.gh2uk-logo-meta {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gh2uk-muted);
  font-style: normal;
}

.gh2uk-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gh2uk-btn {
  font-family: var(--gh2uk-sans);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  border-radius: var(--gh2uk-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;
}

.gh2uk-btn-primary {
  background: linear-gradient(135deg, var(--gh2uk-rust) 0%, var(--gh2uk-rust-l) 100%);
  color: var(--gh2uk-paper);
  box-shadow: 0 4px 16px rgba(196, 92, 38, 0.38);
}
.gh2uk-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(224, 122, 66, 0.48);
  color: #fff;
}

.gh2uk-btn-secondary {
  background: transparent;
  color: var(--gh2uk-paper-d);
  border: 1px solid var(--gh2uk-border);
}
.gh2uk-btn-secondary:hover {
  background: rgba(196, 92, 38, 0.12);
  color: #ffc9a8;
}

.gh2uk-btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }

.gh2uk-hamburger {
  display: none;
  background: var(--gh2uk-teal);
  color: var(--gh2uk-paper);
  border: 1px solid var(--gh2uk-border);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.gh2uk-links {
  width: 100%;
  flex-basis: 100%;
}

.gh2uk-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
}

.gh2uk-links a {
  color: var(--gh2uk-paper-d);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
}
.gh2uk-links a:hover,
.gh2uk-links a[aria-current="page"] {
  color: var(--gh2uk-rust-l);
}

.gh2uk-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(45, 122, 122, 0.28) 0%, transparent 100%);
}

.gh2uk-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gh2uk-rust-l);
  background: rgba(138, 61, 24, 0.48);
  border: 1px solid var(--gh2uk-border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
}

.gh2uk-hero h1 {
  font-family: var(--gh2uk-serif);
  font-size: clamp(1.65rem, 4.5vw, 2.45rem);
  line-height: 1.25;
  margin: 0 0 0.85rem;
  color: var(--gh2uk-paper);
}

.gh2uk-lead {
  font-size: 1.08rem;
  color: var(--gh2uk-paper-d);
  max-width: 62ch;
  margin: 0 0 1.5rem;
}

.gh2uk-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.gh2uk-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.gh2uk-fact {
  background: rgba(19, 78, 74, 0.72);
  border: 1px solid var(--gh2uk-border);
  border-radius: var(--gh2uk-radius);
  padding: 0.85rem 1rem;
  text-align: center;
}
.gh2uk-fact b {
  display: block;
  font-family: var(--gh2uk-serif);
  font-size: 1.15rem;
  color: var(--gh2uk-rust-l);
}
.gh2uk-fact small {
  font-size: 0.75rem;
  color: var(--gh2uk-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gh2uk-hero-banner {
  margin: 0;
  border-radius: var(--gh2uk-radius-lg);
  overflow: hidden;
  box-shadow: var(--gh2uk-shadow);
  border: 1px solid var(--gh2uk-border);
}
.gh2uk-hero-banner img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.gh2uk-promo-block {
  margin: 2rem 0;
  border-radius: var(--gh2uk-radius-lg);
  overflow: hidden;
  border: 1px solid var(--gh2uk-border);
  background: rgba(19, 78, 74, 0.52);
}
.gh2uk-promo-block img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.gh2uk-promo-block figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--gh2uk-muted);
}

.gh2uk-main { padding-bottom: 3rem; }

.gh2uk-section {
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.35rem;
  background: rgba(19, 78, 74, 0.58);
  border: 1px solid rgba(45, 122, 122, 0.22);
  border-radius: var(--gh2uk-radius);
}

.gh2uk-section h2 {
  font-family: var(--gh2uk-serif);
  font-size: 1.35rem;
  color: var(--gh2uk-rust-l);
  margin: 0 0 0.75rem;
}
.gh2uk-section h3 {
  font-family: var(--gh2uk-serif);
  font-size: 1.1rem;
  color: var(--gh2uk-paper);
  margin: 1.25rem 0 0.5rem;
}
.gh2uk-section p { margin: 0 0 0.85rem; }
.gh2uk-section p:last-child { margin-bottom: 0; }

.gh2uk-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0;
}
.gh2uk-section th,
.gh2uk-section td {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(45, 122, 122, 0.28);
  text-align: left;
}
.gh2uk-section th {
  background: rgba(138, 61, 24, 0.38);
  color: var(--gh2uk-rust-l);
  font-weight: 600;
}
.gh2uk-section td { background: rgba(10, 34, 36, 0.42); }

.gh2uk-tba {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gh2uk-rust-l);
  background: rgba(196, 92, 38, 0.18);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
}

.gh2uk-footer {
  background: var(--gh2uk-ink);
  border-top: 1px solid var(--gh2uk-border);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.gh2uk-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.gh2uk-footer h3 {
  font-family: var(--gh2uk-serif);
  font-size: 1rem;
  color: var(--gh2uk-rust-l);
  margin: 0 0 0.75rem;
}
.gh2uk-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gh2uk-footer li { margin-bottom: 0.4rem; }
.gh2uk-footer a {
  color: var(--gh2uk-paper-d);
  text-decoration: none;
  font-size: 0.88rem;
}
.gh2uk-footer a:hover { color: var(--gh2uk-rust-l); }

.gh2uk-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(45, 122, 122, 0.22);
  font-size: 0.82rem;
  color: var(--gh2uk-muted);
}

.gh2uk-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.2rem 0.5rem;
  background: var(--gh2uk-rust-d);
  color: var(--gh2uk-paper);
  font-weight: 700;
  border-radius: 6px;
  font-size: 0.78rem;
}

.gh2uk-hub-intro {
  padding: 2.5rem 0 1.5rem;
}
.gh2uk-hub-intro h1 {
  font-family: var(--gh2uk-serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin: 0 0 1rem;
}
.gh2uk-hub-intro h2 {
  font-family: var(--gh2uk-serif);
  font-size: 1.2rem;
  color: var(--gh2uk-rust-l);
  margin: 1.5rem 0 0.75rem;
}
.gh2uk-hub-intro p {
  color: var(--gh2uk-paper-d);
  max-width: 72ch;
}

.gh2uk-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  padding-bottom: 3rem;
}

.gh2uk-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.25rem;
  background: rgba(19, 78, 74, 0.68);
  border: 1px solid var(--gh2uk-border);
  border-radius: var(--gh2uk-radius);
  color: var(--gh2uk-paper);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s, transform 0.15s;
}
.gh2uk-hub-card span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gh2uk-muted);
}
.gh2uk-hub-card:hover {
  background: rgba(138, 61, 24, 0.38);
  transform: translateY(-2px);
  color: var(--gh2uk-paper);
}

@media (max-width: 768px) {
  .gh2uk-hamburger { display: block; }
  .gh2uk-links { display: none; }
  .gh2uk-links.gh2uk-links--visible {
    display: block;
    padding: 0.75rem 0 0.25rem;
  }
  .gh2uk-links ul { flex-direction: column; gap: 0.5rem; }
  .gh2uk-hero { padding-top: 1.75rem; }
  .gh2uk-section { padding: 1rem; }
}

@media (max-width: 320px) {
  .gh2uk-btn-lg { width: 100%; }
  .gh2uk-facts { grid-template-columns: 1fr 1fr; }
}
