/* Two More Please — privacy microsite */

:root {
  color-scheme: light dark;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --text: #1a1d22;
  --muted: #4a5568;
  --rule: rgba(0, 0, 0, 0.08);
  --link: #2563eb;
  --link-visited: #6d28d9;
  --focus: #1d4ed8;
  --maxw: 42rem;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111418;
    --surface: #1a1f26;
    --text: #e8eaed;
    --muted: #9aa3ad;
    --rule: rgba(255, 255, 255, 0.1);
    --link: #60a5fa;
    --link-visited: #c4b5fd;
    --focus: #93c5fd;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--rule);
  border-radius: 6px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

header.site-header {
  padding: 2.25rem 0 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.site-title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.site-subtitle {
  margin: 0.65rem 0 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.site-subtitle--en {
  margin-top: 0.85rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lang-switch {
  font-size: 0.94rem;
  margin: 1rem 0 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
}

.lang-switch__sep {
  margin: 0 0.4rem;
  color: var(--muted);
}

.lang-switch a {
  font-weight: 600;
}

/* İkinci dil bloğu — üst çizgi ile ayrılır */
.policy-tr {
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 2px solid var(--rule);
}

main {
  padding-top: 1.75rem;
}

section {
  margin-bottom: 2rem;
  padding: 1.35rem 1.35rem 1.5rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--rule);
}

h2 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  font-weight: 700;
}

h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 650;
  color: var(--text);
}

p,
ul {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

ul {
  padding-left: 1.35rem;
}

li {
  margin-bottom: 0.35rem;
}

li:last-child {
  margin-bottom: 0;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

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

a:visited {
  color: var(--link-visited);
}

.toc {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.toc li {
  margin-bottom: 0.4rem;
}

.toc a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.note {
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid var(--rule);
  margin-bottom: 1.25rem;
  color: var(--muted);
}

@media (prefers-color-scheme: dark) {
  .note {
    background: rgba(96, 165, 250, 0.1);
  }
}

.placeholder {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.95em;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.12em 0.38em;
  border-radius: 4px;
}

@media (prefers-color-scheme: dark) {
  .placeholder {
    background: rgba(255, 255, 255, 0.08);
  }
}
