@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&display=swap');

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

:root {
  --gold: #FFE600;
  --dark: #080C14;
  --panel: #0D1117;
  --line: rgba(255,255,255,0.08);
  --muted: rgba(255,255,255,0.4);
  --text: rgba(255,255,255,0.75);
}

body {
  background: var(--dark);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::selection { background: var(--gold); color: var(--dark); }

/* HEADER */
.site-header {
  border-bottom: 1px solid var(--line);
  padding: 16px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}
.brand .mark {
  background: var(--gold);
  color: var(--dark);
  font-weight: 900;
  font-size: 12px;
  padding: 4px 8px;
}
.brand .name { font-weight: 700; letter-spacing: 0.15em; font-size: 13px; }
.brand:hover .name { color: var(--gold); }

/* MAIN */
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* PAGE HEADER */
.page-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.page-tag span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.page-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,230,0,0.2);
}
h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-meta {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.fidleg-box {
  border: 1px solid rgba(255,230,0,0.2);
  background: rgba(255,230,0,0.04);
  padding: 14px 16px;
  margin-bottom: 48px;
}
.fidleg-box p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* SECTIONS */
.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.legal-section:last-of-type { border-bottom: none; }

.legal-section h2 {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.legal-section p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: white; }
.legal-section a { color: var(--gold); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

/* BULLETS */
.legal-bullets {
  list-style: none;
  margin: 10px 0;
}
.legal-bullets li {
  display: flex;
  gap: 12px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-bullets li::before {
  content: '◆';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 8px;
}

/* IP FOOTER */
.ip-footer {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  text-align: center;
}
.ip-footer p {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  line-height: 1.9;
  letter-spacing: 0.05em;
}

/* SITE FOOTER */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px;
  margin-top: 0;
}
.site-footer .inner {
  max-width: 760px;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  line-height: 1.7;
}
