/* Shared styles for bzgaming.xyz — the public site behind the app's OAuth
   consent screen. Deliberately one small stylesheet, no build step: Netlify
   serves these files exactly as they are. Palette and Georgia serif match the
   game itself so the consent screen's links land somewhere recognisable. */

:root {
  --bg: #0a1f0a;
  --panel: #0f2a10;
  --border: #1d4a1f;
  --gold: #f9ca24;
  --text: #dcefdc;
  --muted: #8ecfaa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

header.site {
  border-bottom: 1px solid var(--border);
  background: #081a08;
}

header.site .wrap {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-size: 15px;
}

.brand img { width: 28px; height: 28px; border-radius: 6px; display: block; }

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
  font-size: 14px;
}

nav a:hover, nav a:focus { color: var(--gold); text-decoration: underline; }

h1 {
  color: var(--gold);
  font-size: 30px;
  line-height: 1.25;
  margin: 8px 0 4px;
}

h2 {
  color: var(--gold);
  font-size: 19px;
  margin: 32px 0 8px;
}

.lede { color: var(--muted); font-size: 17px; margin-top: 0; }

.updated {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 28px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 24px 0;
}

a { color: var(--gold); }

ul { padding-left: 22px; }
li { margin-bottom: 6px; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 4px;
  font-size: 15px;
}

th, td {
  text-align: left;
  padding: 9px 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th { color: var(--gold); font-size: 14px; letter-spacing: 0.3px; }

.table-scroll { overflow-x: auto; }

footer.site {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

footer.site .wrap { padding: 22px 20px; }
footer.site a { color: var(--muted); }

code {
  background: #081a08;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 14px;
}
