/* Styling for generated SEO content pages (achievements / upgrades). */
:root { --gold: #d4af37; --gold-light: #f0d98a; --bg: #0f0d18; --panel: #1b1726; --text: #e8e4f0; --dim: #a89fbd; }
* { box-sizing: border-box; }
body {
  margin: 0;
  background: radial-gradient(circle at 50% -10%, #221c33, var(--bg));
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}
.content-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}
.crumbs { font-size: 0.85rem; color: var(--dim); margin-bottom: 1.25rem; }
.crumbs a { color: var(--gold); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
h1 { color: var(--gold-light); font-size: 1.9rem; margin: 0 0 0.5rem; }
h2 { color: var(--gold); font-size: 1.15rem; margin: 1.5rem 0 0.4rem; border-bottom: 1px solid rgba(212,175,55,0.25); padding-bottom: 0.2rem; }
p { margin: 0.5rem 0; }
.lede { font-size: 1.1rem; color: var(--text); }
.muted { color: var(--dim); }
a { color: var(--gold-light); }
.related, .index-list { padding-left: 1.2rem; }
.related li, .index-list li { margin: 0.3rem 0; }
.index-list li { color: var(--dim); }
.index-list a { font-weight: bold; }
.play-cta { margin-top: 2rem; text-align: center; }
.btn-play {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold), #b8902a);
  color: #1a1207;
  font-weight: bold;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.btn-play:hover { filter: brightness(1.08); }
.also { text-align: center; font-size: 0.85rem; }

/* Item icon shown below the page title (achievements / upgrades):
   centered in the text column, at native size (capped to the column width). */
.page-icon {
  display: block;
  margin: 0.5rem auto 1.25rem;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
/* Cross-hub navigation shown at the top of each guide index. */
.hub-nav {
  font-size: 0.9rem;
  margin: 0.5rem 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  color: var(--dim);
}
.hub-nav a { color: var(--gold); text-decoration: none; }
.hub-nav a:hover { text-decoration: underline; }
.hub-nav span[aria-current="page"] { color: var(--gold-light); font-weight: bold; }

/* Index hub rows: small icon + name. */
.index-list { list-style: none; padding-left: 0; }
.index-list li { display: flex; align-items: center; gap: 10px; }
.index-icon { width: 32px; height: 32px; flex: 0 0 32px; }
