/* Shared styles for legal pages (/terms, /privacy, /refunds) */
:root {
  --gold: #e6c487;
  --gold-light: #ffdea4;
  --gold-dim: #c9a96e;
  --bg: #131318;
  --bg-card: #1f1f25;
  --text: #e4e1e9;
  --text-dim: #d0c5b5;
  --text-muted: #998f81;
  --border: rgba(201, 169, 110, 0.3);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  padding: 64px 24px 80px;
}
.legal-wrap { max-width: 720px; margin: 0 auto; }
.back {
  display: inline-block;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 40px;
}
.back:hover { color: var(--gold-dim); }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.updated { color: var(--text-muted); font-size: 13px; margin-bottom: 40px; }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  margin: 36px 0 12px;
}
p, li { color: var(--text-dim); margin-bottom: 12px; }
ul { padding-left: 20px; margin-bottom: 12px; }
a { color: var(--gold-dim); }
.lang-divider {
  margin: 56px 0;
  border: none;
  border-top: 1px solid var(--border);
}
.footer-links {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}
.footer-links a { color: var(--text-muted); margin-right: 16px; }
.footer-links a:hover { color: var(--gold-dim); }
