:root {
  --bg: #0d0c0f;
  --bg-soft: #17151a;
  --text: #f2f0f4;
  --muted: #a5a1ac;
  --accent: #ff9e1f;
  --border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  font-size: 17px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 720px; margin: 0 auto; padding: 0 22px; }

/* Header */
header {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
header .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; color: var(--text); }
.brand span { color: var(--accent); }
nav a { color: var(--muted); margin-left: 20px; font-size: 15px; }
nav a:hover { color: var(--text); text-decoration: none; }

/* Hero (landing) */
.hero { text-align: center; padding: 88px 0 64px; }
.lens {
  width: 116px; height: 116px; border-radius: 50%; margin: 0 auto 34px;
  background: linear-gradient(180deg, #fae0b8 0%, #b8a9bd 50%, #29304d 100%);
  border: 5px solid var(--accent);
  box-shadow: 0 0 60px rgba(255, 158, 31, 0.25);
  position: relative;
}
.lens::after {
  content: ""; position: absolute; width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,250,0.95), transparent 70%);
  top: 20px; right: 22px;
}
.hero h1 { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; margin: 0 0 14px; }
.hero p { font-size: 19px; color: var(--muted); max-width: 500px; margin: 0 auto 30px; }
.badge {
  display: inline-block; padding: 12px 22px; border-radius: 14px;
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--muted);
  font-size: 15px;
}

/* Legal pages */
main { padding: 48px 0 80px; }
h1.title { font-size: 32px; letter-spacing: -0.02em; margin: 0 0 6px; }
.updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
h2 { font-size: 21px; margin: 36px 0 10px; letter-spacing: -0.01em; }
p, li { color: #d9d6de; }
ul { padding-left: 22px; }
li { margin: 6px 0; }
.callout {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 14px;
  padding: 18px 20px; margin: 22px 0;
}
.callout strong { color: var(--accent); }

/* Language toggle */
.lang-toggle { display: inline-flex; gap: 4px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; padding: 4px; margin-bottom: 28px; }
.lang-toggle button {
  background: transparent; border: 0; color: var(--muted); font: inherit; font-size: 14px;
  padding: 6px 14px; border-radius: 7px; cursor: pointer;
}
.lang-toggle button.active { background: var(--accent); color: #1a1206; font-weight: 600; }

.lang-tr { display: none; }
body[data-lang="tr"] .lang-en { display: none; }
body[data-lang="tr"] .lang-tr { display: block; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 30px 0; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }

@media (max-width: 520px) {
  .hero h1 { font-size: 32px; }
  h1.title { font-size: 27px; }
}
