:root {
  --wgf-bg: #070503;
  --wgf-bg-2: #110b05;
  --wgf-panel: #17110a;
  --wgf-panel-2: #24180b;
  --wgf-border: rgba(244, 196, 92, 0.24);
  --wgf-border-strong: rgba(244, 196, 92, 0.42);
  --wgf-gold: #f4c45c;
  --wgf-gold-2: #ffd978;
  --wgf-text: #f4ead9;
  --wgf-muted: #b9a98f;
  --wgf-link: #ffd978;
}

* {
  box-sizing: border-box;
}

body.wgf-shell-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(127, 76, 17, 0.32), transparent 34rem),
    linear-gradient(180deg, var(--wgf-bg-2), var(--wgf-bg));
  color: var(--wgf-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

.wgf-shell-topbar {
  border-bottom: 1px solid var(--wgf-border);
  background: rgba(5, 4, 2, 0.94);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
}

.wgf-shell-topbar__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.wgf-shell-logo {
  color: var(--wgf-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 14px;
}

.wgf-shell-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.wgf-shell-nav a {
  color: var(--wgf-link);
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
}

.wgf-shell-nav a:hover {
  text-decoration: underline;
}

.wgf-shell-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 34px 18px 44px;
}

.wgf-home-hero {
  border: 1px solid var(--wgf-border-strong);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(61, 37, 12, 0.9), rgba(13, 9, 4, 0.95)),
    radial-gradient(circle at top right, rgba(244, 196, 92, 0.14), transparent 24rem);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.wgf-home-eyebrow {
  color: var(--wgf-gold-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 850;
  font-size: 12px;
  margin-bottom: 12px;
}

.wgf-home-hero h1,
.wgf-shell-page h1 {
  color: var(--wgf-gold);
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.98;
  margin: 0 0 18px;
}

.wgf-home-hero p {
  max-width: 820px;
  color: var(--wgf-muted);
  font-size: clamp(17px, 2.1vw, 22px);
  margin: 0 0 26px;
}

.wgf-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wgf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--wgf-border-strong);
  color: #130c04;
  background: linear-gradient(180deg, #ffe39a, #d99b2b);
  text-decoration: none;
  font-weight: 900;
}

.wgf-button--ghost {
  color: var(--wgf-gold-2);
  background: rgba(244, 196, 92, 0.08);
}

.wgf-home-grid,
.wgf-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.wgf-card,
.wgf-sitemap-card {
  border: 1px solid var(--wgf-border);
  background: rgba(16, 11, 6, 0.88);
  border-radius: 18px;
  padding: 18px;
}

.wgf-card h2,
.wgf-sitemap-card h2 {
  color: var(--wgf-gold);
  margin: 0 0 8px;
  font-size: 20px;
}

.wgf-card p,
.wgf-sitemap-card p {
  color: var(--wgf-muted);
  margin: 0 0 12px;
}

.wgf-card a,
.wgf-sitemap-card a,
.wgf-shell-page a {
  color: var(--wgf-link);
}

.wgf-sitemap-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wgf-sitemap-card li {
  margin: 8px 0;
}

.wgf-section {
  margin-top: 26px;
  border: 1px solid var(--wgf-border);
  background: rgba(8, 6, 3, 0.74);
  border-radius: 18px;
  padding: 20px;
}

.wgf-section h2 {
  color: var(--wgf-gold);
  margin-top: 0;
}

.wgf-section p {
  color: var(--wgf-muted);
}

.wgf-site-footer {
  border-top: 1px solid var(--wgf-border);
  background:
    linear-gradient(180deg, rgba(9, 6, 3, 0.98), rgba(3, 2, 1, 1));
  color: var(--wgf-muted);
  padding: 34px 18px 28px;
  margin-top: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wgf-site-footer__inner {
  max-width: 1220px;
  margin: 0 auto;
}

.wgf-site-footer__brand {
  margin-bottom: 24px;
}

.wgf-site-footer__logo {
  display: inline-block;
  color: var(--wgf-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  margin-bottom: 8px;
}

.wgf-site-footer__brand p {
  max-width: 620px;
  margin: 0;
  color: var(--wgf-muted);
}

.wgf-site-footer__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(244, 196, 92, 0.16);
  border-bottom: 1px solid rgba(244, 196, 92, 0.16);
}

.wgf-site-footer__nav h2 {
  color: var(--wgf-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

.wgf-site-footer__nav a {
  display: block;
  color: var(--wgf-link);
  text-decoration: none;
  margin: 7px 0;
  font-size: 14px;
  font-weight: 650;
}

.wgf-site-footer__nav a:hover {
  text-decoration: underline;
}

.wgf-site-footer__bottom {
  padding-top: 16px;
}

.wgf-site-footer__bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #9f927c;
}

@media (max-width: 760px) {
  .wgf-shell-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .wgf-shell-nav {
    gap: 10px;
  }

  .wgf-home-hero {
    padding: 24px;
  }
}
