/* Standalone legal pages — privacy.html / terms.html / legal.html
   Independent of styles.css to avoid pulling the whole SPA stylesheet. */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #050510;
  color: #e8eaff;
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  padding: 24px 16px 48px;
}
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(15, 15, 42, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.05);
}
header { margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid rgba(0, 240, 255, 0.1); }
.back-link {
  display: inline-block;
  font-size: 12px;
  color: #00f0ff;
  text-decoration: none;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.7; }
h1 {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #00f0ff, #ff00e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}
section { margin-bottom: 24px; }
h2 {
  font-size: 16px;
  color: #00f0ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}
p { margin: 0 0 10px; color: rgba(255, 255, 255, 0.78); }
ul, ol { margin: 0 0 10px 20px; }
li { margin-bottom: 6px; color: rgba(255, 255, 255, 0.78); }
strong { color: #fff; font-weight: 700; }
a {
  color: #00f0ff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
  transition: border-color 0.2s;
}
a:hover { border-bottom-color: #00f0ff; }
.legal-footer {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.legal-footer a { font-size: 11px; }
@media (max-width: 600px) {
  body { padding: 12px 8px; }
  .legal-page { padding: 24px 18px; border-radius: 14px; }
  h1 { font-size: 22px; }
  h2 { font-size: 14px; }
}
