/* Lean, JS-free styles for the legal pages (imprint/privacy/disclaimer).
   Self-contained dark theme — intentionally independent of the runtime header
   so legal pages never depend on market-clock / data-freshness JavaScript. */
:root {
  --lg-bg: #070b14;
  --lg-surface: rgba(15, 23, 42, 0.55);
  --lg-border: rgba(148, 163, 184, 0.16);
  --lg-text: #e5e7eb;
  --lg-muted: #94a3b8;
  --lg-link: #38bdf8;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--lg-bg);
  color: var(--lg-text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.lg-header {
  border-bottom: 1px solid var(--lg-border);
  background: rgba(5, 8, 17, 0.9);
}
.lg-header-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.lg-brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--lg-text); }
.lg-brand img { width: 26px; height: 26px; border-radius: 5px; }
.lg-brand span { font-family: 'Outfit', sans-serif; font-weight: 800; letter-spacing: 0.01em; }
.lg-nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.lg-nav a { color: var(--lg-muted); text-decoration: none; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.lg-nav a:hover { color: var(--lg-text); }
.lg-main { max-width: 880px; margin: 0 auto; padding: 2.5rem 1.25rem 3rem; }
.lg-main h1 { font-family: 'Outfit', sans-serif; font-size: 1.9rem; margin: 0 0 0.4rem; }
.lg-main h2 { font-size: 1.1rem; margin: 2rem 0 0.5rem; color: #f3f4f6; }
.lg-main p, .lg-main li { color: #cbd5e1; font-size: 0.95rem; }
.lg-main a { color: var(--lg-link); }
.lg-updated { color: var(--lg-muted); font-size: 0.82rem; margin-bottom: 1.5rem; }
.lg-card { background: var(--lg-surface); border: 1px solid var(--lg-border); border-radius: 10px; padding: 1rem 1.25rem; margin: 1rem 0; }
.lg-en { border-top: 1px dashed var(--lg-border); margin-top: 2.5rem; padding-top: 1.5rem; }
.lg-footer { border-top: 1px solid var(--lg-border); }
.lg-footer-inner { max-width: 880px; margin: 0 auto; padding: 1.5rem 1.25rem; text-align: center; color: var(--lg-muted); font-size: 0.82rem; }
.lg-footer-links { display: flex; gap: 1.25rem; justify-content: center; margin-bottom: 0.75rem; flex-wrap: wrap; }
.lg-footer-links a { color: var(--lg-muted); text-decoration: none; }
.lg-footer-links a:hover { color: var(--lg-text); }
