/* Páginas legales: mismos colores y tipografía que index.html (Versión 1 · Noche) */
:root {
  --bg: #0a0f1e; --card: #111831; --border: #1e2945; --text: #eef2ff;
  --muted: #8a96b3; --dim: #c3cbe0; --accent: #22d3ae; --header-bg: rgba(10,15,30,.75);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg); color: var(--dim); font-family: 'Inter', system-ui, sans-serif;
  min-height: 100vh; display: flex; flex-direction: column; -webkit-font-smoothing: antialiased;
  line-height: 1.65; font-size: 15px;
}
.wrap { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 20px; }
header { background: var(--header-bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10;
  backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); }
header .wrap { max-width: 1080px; height: 64px; display: flex; align-items: center; }
.brand { font-size: 18px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 10px; text-decoration: none; letter-spacing: -0.01em; }
.brand svg { color: var(--accent); }
.brand em { font-style: normal; color: var(--accent); }
main { flex: 1; padding: 48px 0 64px; }
h1 { color: var(--text); font-size: 36px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.updated { color: var(--muted); font-size: 13px; margin: 8px 0 36px; }
h2 { color: var(--text); font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 34px 0 10px; }
p, li { margin-bottom: 10px; }
ul { padding-left: 20px; }
b { color: var(--text); font-weight: 600; }
a { color: var(--accent); }
.box { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; margin: 18px 0; }
footer { border-top: 1px solid var(--border); padding: 28px 0 34px; font-size: 13px; color: var(--muted); }
footer .wrap { max-width: 1080px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
footer nav { display: flex; gap: 18px; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover, footer a.cur { color: var(--text); }
@media (max-width: 700px) { main { padding: 32px 0 48px; } h1 { font-size: 28px; } }
