/* Refleks policy pages — minimal okunabilir tipografi */
:root {
    --fg: #1f2937;
    --muted: #6b7280;
    --accent: #3b82f6;
    --border: #e5e7eb;
    --bg: #ffffff;
}
@media (prefers-color-scheme: dark) {
    :root {
        --fg: #e5e7eb;
        --muted: #9ca3af;
        --accent: #60a5fa;
        --border: #374151;
        --bg: #0f172a;
    }
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--fg);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
main { max-width: 760px; margin: 0 auto; padding: 32px 20px 80px; }
header { border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 24px; }
header .brand { font-weight: 600; color: var(--accent); font-size: 14px; letter-spacing: 0.3px; text-transform: uppercase; }
h1 { font-size: 28px; line-height: 1.25; margin: 8px 0 4px; }
h2 { font-size: 20px; margin-top: 32px; line-height: 1.3; }
h3 { font-size: 16px; margin-top: 20px; }
p, li { font-size: 15px; }
.meta { color: var(--muted); font-size: 13px; margin: 4px 0 0; }
.lang-switch { float: right; font-size: 13px; }
.lang-switch a { color: var(--accent); text-decoration: none; margin-left: 10px; }
table { border-collapse: collapse; width: 100%; margin: 16px 0; font-size: 14px; }
th, td { border: 1px solid var(--border); padding: 8px 10px; text-align: left; vertical-align: top; }
th { background: rgba(59, 130, 246, 0.06); font-weight: 600; }
code { background: rgba(59, 130, 246, 0.08); padding: 1px 6px; border-radius: 4px; font-size: 13px; }
footer { border-top: 1px solid var(--border); margin-top: 48px; padding-top: 16px; color: var(--muted); font-size: 13px; }
a { color: var(--accent); }
