/* S.i. FiN — CSS/Pages/consent.css (consent.html inline stilinden taşındı) */

/* ── SAYFA ALTYAPISI ── */
    .policy-page {
      min-height: 100vh;
      padding: 48px 16px 80px;
    }
    .policy-wrap {
      max-width: 820px;
      margin: 0 auto;
    }

    /* ── ÜST BAŞLIK ── */
    .policy-header {
      margin-bottom: 40px;
    }
    .policy-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
      text-decoration: none;
    }
    .policy-logo img { height: 32px; }
    .policy-logo-text {
      font-size: 18px;
      font-weight: 700;
      color: rgba(255,255,255,0.92);
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }
    .policy-badge {
      display: inline-block;
      background: rgba(22,245,168,0.10);
      border: 1px solid rgba(22,245,168,0.28);
      color: #16f5a8;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .5px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 12px;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }
    .policy-title {
      font-size: 26px;
      font-weight: 800;
      color: rgba(255,255,255,0.95);
      margin: 0 0 10px;
      line-height: 1.25;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }
    .policy-subtitle {
      font-size: 13px;
      color: rgba(255,255,255,0.48);
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }

    /* ── BÖLÜM KART ── */
    .policy-section {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 18px;
      padding: 32px 30px;
      margin-bottom: 20px;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }
    @media(max-width:600px) {
      .policy-section { padding: 22px 18px; }
      .policy-title   { font-size: 20px; }
    }

    .section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 22px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .section-icon {
      font-size: 22px;
      flex-shrink: 0;
    }
    .section-title {
      font-size: 18px;
      font-weight: 700;
      color: rgba(255,255,255,0.95);
      margin: 0;
    }
    .section-desc {
      font-size: 12px;
      color: rgba(255,255,255,0.42);
      margin: 2px 0 0;
    }

    /* ── METİN STİLLERİ ── */
    .policy-body {
      font-size: 13px;
      line-height: 1.75;
      color: rgba(255,255,255,0.72);
    }
    .policy-body h3 {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,0.92);
      margin: 22px 0 7px;
      padding-left: 10px;
      border-left: 2px solid rgba(22,245,168,0.50);
    }
    .policy-body h3:first-child { margin-top: 0; }
    .policy-body p  { margin: 0 0 10px; }
    .policy-body ul {
      margin: 0 0 10px;
      padding-left: 20px;
    }
    .policy-body ul li { margin-bottom: 5px; }
    .policy-body strong { color: rgba(255,255,255,0.90); }

    /* ── VERİ TABLOSU ── */
    .data-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
      margin: 10px 0 14px;
    }
    .data-table th {
      text-align: left;
      padding: 8px 12px;
      background: rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.60);
      font-weight: 600;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .4px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .data-table td {
      padding: 9px 12px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.75);
      vertical-align: top;
    }
    .data-table tr:last-child td { border-bottom: none; }

    /* ── UYARI KUTUSU ── */
    .alert-box {
      padding: 14px 16px;
      border-radius: 10px;
      font-size: 12.5px;
      line-height: 1.6;
      margin: 14px 0;
    }
    .alert-box.green {
      background: rgba(22,245,168,0.07);
      border: 1px solid rgba(22,245,168,0.22);
      color: rgba(200,255,230,0.85);
    }
    .alert-box.yellow {
      background: rgba(250,204,21,0.07);
      border: 1px solid rgba(250,204,21,0.22);
      color: rgba(255,240,180,0.85);
    }
    .alert-box.red {
      background: rgba(248,113,113,0.07);
      border: 1px solid rgba(248,113,113,0.22);
      color: rgba(255,210,210,0.85);
    }

    /* ── GERİ BUTONU ── */
    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.70);
      font-size: 13px;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      cursor: pointer;
      text-decoration: none;
      margin-top: 12px;
      transition: background 0.2s, color 0.2s;
    }
    .back-btn:hover {
      background: rgba(255,255,255,0.10);
      color: rgba(255,255,255,0.92);
    }

    /* ── FOOTER ── */
    .policy-footer {
      margin-top: 40px;
      text-align: center;
      font-size: 12px;
      color: rgba(255,255,255,0.28);
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }

    /* ── İÇİNDEKİLER ── */
    .toc {
      background: rgba(0,0,0,0.18);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 16px 20px;
      margin-bottom: 28px;
      font-size: 13px;
    }
    .toc-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
      color: rgba(255,255,255,0.38);
      margin-bottom: 10px;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    }
    .toc a {
      display: block;
      padding: 4px 0;
      color: rgba(255,255,255,0.58);
      text-decoration: none;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      transition: color 0.15s;
    }
    .toc a:hover { color: #16f5a8; }
    .toc a::before {
      content: "→ ";
      opacity: 0.4;
    }

/* ── Dil seçici konumu ── */
.policy-lang {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}
.policy-page { position: relative; }

/* ── BASE: style.css'ten taşındı (bağımsızlaştırma) ── */
:root {
  --primary-blue: #008cff;
  --accent-green: #00dd92;
  --text-light: #ffffff;
  --gradient-bg: linear-gradient(135deg, var(--accent-green), var(--primary-blue));
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-light);
  background: var(--gradient-bg);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a, button { -webkit-tap-highlight-color: rgba(255,255,255,0.15); }
@media (max-width: 768px) {
  body { background-attachment: scroll; overscroll-behavior-y: none; }
}
/* ── LIGHT MODE ── */
@media (prefers-color-scheme: light) {
  :root {
    --text-light: #1a2a4a;
    --gradient-bg: linear-gradient(135deg, #00b87a, #0070cc);
  }
}
