/* Privacy Policy — CSS */
:root {
  --color-bg:       #0d0f1a;
  --color-surface:  #161929;
  --color-border:   rgba(255, 255, 255, 0.08);
  --color-accent:   #a855f7;
  --color-text:     #e2e8f0;
  --color-muted:    #94a3b8;
  --color-link:     #c084fc;
  --font-main:      'Outfit', system-ui, sans-serif;
  --max-width:      720px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  padding: 2rem 1.5rem;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ── */
.privacy-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* ─── Header ── */
.privacy-logo {
  font-size: 3rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.6));
}

.privacy-app-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.privacy-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.privacy-updated {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

/* ─── Sections ── */
.privacy-section {
  margin-bottom: 2.25rem;
}

.privacy-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-section p {
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-size: 0.97rem;
}

.privacy-section ul {
  margin: 0.5rem 0 0.75rem 1.5rem;
  color: var(--color-text);
  font-size: 0.97rem;
}

.privacy-section ul li {
  margin-bottom: 0.35rem;
}

/* ─── Alert box ── */
.privacy-alert {
  padding: 1rem 1.25rem;
  background: rgba(168, 85, 247, 0.08);
  border-left: 3px solid var(--color-accent);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ─── Footer ── */
.privacy-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.privacy-footer a {
  color: var(--color-link);
  text-decoration: none;
}
.privacy-footer a:hover { text-decoration: underline; }

/* ─── Link ── */
a { color: var(--color-link); }
a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .privacy-container { padding: 1.5rem 1rem; }
  .privacy-title { font-size: 1.5rem; }
}
