/* ── Privacy policy page ─────────────────────────────────────────────────────
   Used by: privacy_page.html
   Served at: /privacy.css
   Note: Google Fonts loaded via <link> in HTML.
   ───────────────────────────────────────────────────────────────────────── */

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

body {
    background: #0a0a0a;
    color: #ccc;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: #080808;
    border-bottom: 1px solid #1a1a1a;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
}

.logo span { color: #2ecc71; }

main {
    max-width: 800px;
    width: 90%;
    margin: 48px auto;
    flex: 1;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: #2ecc71;
    margin-bottom: 8px;
}

.updated {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 32px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #aaa;
    margin: 28px 0 8px;
}

h3 {
    font-size: 1rem;
    color: #888;
    margin: 20px 0 6px;
}

h4 {
    font-size: 0.95rem;
    color: #777;
    margin: 16px 0 4px;
}

p { margin-bottom: 12px; }

ul { margin: 8px 0 12px 20px; }

li { margin-bottom: 6px; }

a { color: #2ecc71; }

footer {
    background: #080808;
    border-top: 1px solid #1a1a1a;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: #444;
}

footer a { color: #444; text-decoration: none; }

footer a:hover { color: #2ecc71; }
