:root {
  --bg-primary: #0f1219;
  --bg-secondary: #161b26;
  --orange: #e88a2d;
  --text-primary: #f0ece4;
  --text-secondary: #8b919e;
  --text-muted: #555d6e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}
.grid-pattern {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(232,138,45,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,138,45,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0.5rem 2rem;
  display: flex; justify-content: center; align-items: center;
  background: rgba(15,18,25,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,138,45,0.08);
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 70px; width: auto; }
.legal-content {
  max-width: 800px;
  margin: 120px auto 4rem;
  padding: 0 2rem;
  position: relative; z-index: 1;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  margin-bottom: 0.5rem;
}
.legal-content .legal-updated {
  color: var(--text-muted);
  font-size: 0.85rem; margin-bottom: 2.5rem;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--orange);
  margin-top: 2.5rem; margin-bottom: 0.8rem;
}
.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 0.92rem; line-height: 1.8;
  margin-bottom: 0.8rem;
}
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content a { color: var(--orange); text-decoration: underline; }
.legal-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--orange); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  margin-bottom: 2rem; transition: opacity 0.3s;
}
.legal-back:hover { opacity: 0.7; }
footer {
  position: relative; z-index: 1;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(232,138,45,0.1);
  color: var(--text-muted); font-size: 0.82rem;
}
footer a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
footer a:hover { color: var(--orange); }
.footer-legal { margin-top: 0.5rem; display: flex; justify-content: center; gap: 1.5rem; }
