/* Privacy page styles */

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

:root {
    --bg: #0a0a0a;
    --bg-secondary: #111;
    --bg-tertiary: #1a1a1a;
    --text: #e0e0e0;
    --text-muted: #666;
    --border: #222;
    --accent: #00d4aa;
    --accent-hover: #00b894;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border);
}

.logo {
    color: var(--accent);
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
}

.header-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 20px;
    font-size: 13px;
    font-family: inherit;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.header-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Content */
main {
    flex: 1;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--accent);
}

h2 {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text);
}

p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-left {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-right a {
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Mobile */
@media (max-width: 600px) {
    header, footer {
        padding: 16px 20px;
    }
    
    main {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    footer {
        flex-direction: column;
        text-align: center;
    }
}
