:root {
  --teal: #1f8a80;
  --teal-dark: #14655d;
  --pink: #e98ba6;
  --ink: #1c2b2a;
  --muted: #5b6b6a;
  --line: #e3eceb;
  --bg: #f6faf9;
  --card: #ffffff;
  --radius: 16px;
}

* { box-sizing: border-box; }

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

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

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  color: var(--teal-dark);
  text-decoration: none;
}

.brand .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--pink));
  flex: 0 0 auto;
}

.langtoggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--card);
}

.langtoggle button {
  border: 0;
  background: transparent;
  padding: 7px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.langtoggle button[aria-pressed="true"] {
  background: var(--teal);
  color: #fff;
}

h1 { font-size: 30px; line-height: 1.25; margin: 0 0 6px; }
h2 { font-size: 21px; margin: 34px 0 10px; color: var(--teal-dark); }
h3 { font-size: 17px; margin: 22px 0 6px; }

.updated { color: var(--muted); font-size: 14px; margin: 0 0 8px; }

p, li { color: var(--ink); }
.muted { color: var(--muted); }

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

ul { padding-left: 22px; }
li { margin: 4px 0; }

.callout {
  background: #fff4f7;
  border: 1px solid #f3c9d6;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 20px 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 22px 22px;
  margin-top: 8px;
}

.steps { counter-reset: step; list-style: none; padding-left: 0; }
.steps li {
  position: relative;
  padding-left: 42px;
  margin: 14px 0;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer.site {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
footer.site a { margin-right: 16px; white-space: nowrap; }

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

/* Download page */
.download .dl-hero { text-align: center; padding: 12px 0 8px; }
.download .dl-hero p { color: var(--muted); max-width: 520px; margin: 0 auto; }

.dl-redirecting {
  margin-top: 18px !important;
  font-weight: 600;
  color: var(--teal-dark) !important;
}

.dl-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 26px 0 8px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  padding: 12px 20px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.store-btn:hover { transform: translateY(-1px); opacity: 0.92; }
.store-btn:active { transform: translateY(0); }

.store-btn__glyph { width: 26px; height: 26px; flex: 0 0 auto; }

.store-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.store-btn__top { font-size: 12px; opacity: 0.85; }
.store-btn__big { font-size: 19px; font-weight: 700; }

.dl-hint { margin-top: 18px !important; font-size: 15px; }
