* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0a0a0d;
  --bg-elevated: #131318;
  --border: rgba(249,146,45,0.15);
  --orange: #f9922d;
  --gold: #ffb84d;
  --text: #f5f4f2;
  --text-dim: rgba(245,244,242,0.65);
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10,10,13,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.site-header .container { max-width: 1180px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--text); }
.brand img { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #1a1206 !important; text-decoration: none !important;
}
.legal { padding: 72px 0 96px; }
.legal h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.legal .updated { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.3rem; font-weight: 700; margin: 36px 0 12px; }
.legal p { color: var(--text-dim); margin-bottom: 14px; font-size: 1rem; }
.legal ul { color: var(--text-dim); margin: 0 0 14px 20px; }
.legal li { margin-bottom: 8px; }
.site-footer { padding: 48px 0; border-top: 1px solid var(--border); text-align: center; color: var(--text-dim); font-size: 0.9rem; }
.site-footer .flinks { display: flex; gap: 24px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.site-footer a { color: var(--text-dim); }
