/* Shared styles for static SEO/legal pages (privacy, guide) */
:root {
  --bg: #0A0D1A;
  --bg-soft: #11162A;
  --text: #e8eaf0;
  --text-muted: #9aa3b8;
  --accent: #4DA3FF;
  --border: rgba(255, 255, 255, 0.12);
  --max-width: 720px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
  font-size: 16px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.header-start {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-header a.nav-home {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(77, 163, 255, 0.35);
  background: rgba(77, 163, 255, 0.08);
}

.site-header a.nav-home:hover {
  background: rgba(77, 163, 255, 0.16);
  text-decoration: none;
}

.site-header .brand-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid transparent;
}

.lang-switch a:hover { color: var(--text); border-color: var(--border); }

.lang-switch a.active {
  color: var(--accent);
  border-color: rgba(77, 163, 255, 0.35);
  background: rgba(77, 163, 255, 0.08);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

h1 {
  font-size: 1.75rem;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.subtitle {
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 0.95rem;
}

h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
  font-weight: 600;
}

p, li { color: var(--text); }

p { margin: 0 0 1rem; }

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

li { margin-bottom: 0.4rem; }

a { color: var(--accent); }

a:hover { text-decoration: underline; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer a:hover { color: var(--accent); }

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.25rem;
  background: rgba(77, 163, 255, 0.15);
  border: 1px solid rgba(77, 163, 255, 0.4);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.cta:hover {
  background: rgba(77, 163, 255, 0.22);
  text-decoration: none;
}

.updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
