/* Lemur Tango: shared styles for content pages (support, privacy, games).
   Mirrors the homepage visual language: dark background, monospace, orange accent.
   The homepage (index.html) keeps its own inline styles; this file styles the
   sub-pages so they stay consistent without restyling the landing page. */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0D0D0D;
  --border: #A0A0A0;
  --orange: #FF5A36;
  --text: #C8C8C8;
  --muted: #555555;
  --white: #ffffff;
  --font: 'Courier New', Courier, monospace;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.8;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TOP NAV ── */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  padding: 3vh 6vw;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.topnav .brand {
  display: flex;
  align-items: center;
  gap: 0.7em;
  color: var(--white);
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(12px, 1vw, 15px);
}

.topnav .brand:hover { text-decoration: none; }
.topnav .brand img { width: clamp(22px, 2.2vw, 32px); height: auto; display: block; }

.topnav nav { display: flex; gap: 1.6em; flex-wrap: wrap; }

.topnav nav a {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(10px, 0.8vw, 13px);
}

.topnav nav a:hover { color: var(--orange); text-decoration: none; }
.topnav nav a[aria-current="page"] { color: var(--orange); }

/* ── CONTENT ── */
.content {
  flex: 1;
  width: 100%;
  padding: 7vh 6vw 9vh;
}

/* Left-anchored to the same 6vw gutter as the nav/footer and the homepage,
   with each block capped to a readable measure (rather than a centered column). */
.content > * { max-width: 74ch; }

.content .label {
  display: block;
  font-size: clamp(9px, 0.7vw, 11px);
  letter-spacing: 0.14em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1.2em;
}

.content h1 {
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.7em;
}

.content h2 {
  color: var(--white);
  font-size: clamp(16px, 1.5vw, 23px);
  font-weight: bold;
  line-height: 1.4;
  margin: 2.2em 0 0.7em;
}

.content h3 {
  color: var(--white);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: bold;
  margin: 1.8em 0 0.4em;
}

.content p { margin-bottom: 1em; }

.content .lead {
  font-size: clamp(15px, 1.25vw, 19px);
  color: var(--text);
  margin-bottom: 1.4em;
}

.content .updated {
  color: var(--muted);
  font-size: clamp(11px, 0.8vw, 13px);
  letter-spacing: 0.04em;
  margin-bottom: 1.6em;
}

.content ul { list-style: none; padding-left: 1.3em; margin-bottom: 1em; }
.content li { position: relative; margin-bottom: 0.6em; }
.content li::before { content: "→"; position: absolute; left: -1.3em; color: var(--orange); }
.content strong { color: var(--white); font-weight: bold; }
.content hr { border: none; border-top: 1px solid var(--border); opacity: 0.4; margin: 2.6em 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  margin: 0.6em 0.8em 0 0;
  padding: 0.6em 1.3em;
  background-color: var(--orange);
  color: #0D0D0D;
  font-family: var(--font);
  font-size: clamp(11px, 0.8vw, 14px);
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn:hover { opacity: 0.85; text-decoration: none; }

.btn.secondary {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--orange);
}

/* ── FOOTER ── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5vh 6vw;
  border-top: 1px solid var(--border);
  gap: 1.5vw;
  flex-wrap: wrap;
}

.footer-left { display: flex; flex-direction: column; gap: 0.7em; }
.footer-copy { font-size: clamp(10px, 0.75vw, 13px); color: var(--muted); letter-spacing: 0.04em; }
.footer-nav { display: flex; gap: 1.2em; flex-wrap: wrap; }

.footer-nav a {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(9px, 0.7vw, 12px);
}

.footer-nav a:hover { color: var(--orange); text-decoration: none; }

.footer-social { display: flex; align-items: center; gap: 1.4vw; }
.social-link { display: flex; align-items: center; color: var(--muted); transition: color 0.15s ease; }
.social-link:hover { color: var(--orange); }
.social-link svg { width: clamp(16px, 1.3vw, 22px); height: clamp(16px, 1.3vw, 22px); }
.social-link.disabled { color: #333333; cursor: default; pointer-events: none; }

/* ── MOBILE ── */
@media (max-width: 680px) {
  .topnav { padding: 4vw 7vw; gap: 3vw; }
  .topnav nav { gap: 1.2em; }
  .content { padding: 7vw 7vw 12vw; }
  .footer { flex-direction: column; align-items: flex-start; gap: 5vw; padding: 7vw; }
}
