/* Ruvion Studio — yasal belge stili (okunabilirlik öncelikli) */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&display=swap');

:root {
  --green: #58CC02;
  --ink: #2b2f36;
  --ink-soft: #55606e;
  --paper: #ffffff;
  --paper-alt: #f7f8fa;
  --line: #e6e8ec;
  --font: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper-alt);
  line-height: 1.7;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green); font-weight: 800; }

.legal-nav {
  background: #0E0F13; color: #fff; border-bottom: 1px solid #2A2F3D;
}
.legal-nav .inner {
  max-width: 780px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.legal-nav .brand { display: flex; align-items: center; gap: 10px; font-weight: 900; color: #fff; }
.legal-nav .brand .m {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, #58CC02, #1CB0F6); font-weight: 900; font-size: 16px;
}
.legal-nav a.back { color: #A2A8B8; font-weight: 800; font-size: 14px; }
.legal-nav a.back:hover { color: #fff; }

.doc { max-width: 780px; margin: 0 auto; padding: 48px 24px 80px; }
.doc-head { border-bottom: 2px solid var(--line); padding-bottom: 24px; margin-bottom: 32px; }
.doc-head h1 { font-size: 34px; font-weight: 900; letter-spacing: -0.02em; }
.doc-head .meta { color: var(--ink-soft); font-weight: 700; margin-top: 8px; font-size: 15px; }

.notice {
  background: #FFF8E1; border: 1px solid #FFE39A; border-radius: 12px;
  padding: 14px 18px; margin-bottom: 32px; font-size: 14px; color: #7a5b00; font-weight: 700;
}

.doc h2 { font-size: 22px; font-weight: 900; margin: 36px 0 12px; letter-spacing: -0.01em; }
.doc h3 { font-size: 17px; font-weight: 900; margin: 24px 0 8px; }
.doc p { margin: 0 0 14px; color: var(--ink-soft); }
.doc ul { margin: 0 0 14px 22px; color: var(--ink-soft); }
.doc li { margin-bottom: 7px; }
.doc strong { color: var(--ink); font-weight: 800; }

.doc table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: 14.5px; }
/* Dar ekranda tablo taşmasın: kendi içinde yatay kayar, sayfa gövdesi kaymaz */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 14px 0 20px; }
.table-scroll table { margin: 0; min-width: 460px; }
.doc th, .doc td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.doc th { background: var(--paper-alt); font-weight: 800; color: var(--ink); }
.doc td { color: var(--ink-soft); }

.doc-foot { margin-top: 48px; padding-top: 24px; border-top: 2px solid var(--line); font-size: 14px; color: var(--ink-soft); font-weight: 700; }

.placeholder { background: #FFECEC; color: #b23b3b; padding: 1px 6px; border-radius: 5px; font-weight: 800; }
