/* Yusafix yasal sayfalar — YasalDuzen.vue style bloğundan birebir taşındı */
.yz-root {
  --ink: #0a1124;
  --ink-2: #0e1830;
  --line: rgba(255, 255, 255, 0.09);
  --blue: #3b82f6;
  --blue-2: #2563eb;
  --amber: #f9a826;
  --text: #e8eefb;
  --muted: #9fb0cf;

  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  overflow-x: clip;
  line-height: 1.6;
}
.yz-root :where(h1, h2, h3) { font-family: 'Sora', sans-serif; letter-spacing: -0.02em; }
.yz-container { width: 100%; max-width: 820px; margin-inline: auto; padding-inline: 22px; }

.yz-grid-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 30%, transparent 80%);
}
.yz-glow {
  position: fixed; z-index: -2; top: -160px; left: 50%; transform: translateX(-50%);
  width: 620px; height: 420px; border-radius: 50%; filter: blur(100px); opacity: 0.4;
  background: radial-gradient(circle, rgba(59,130,246,0.45), transparent 70%);
  pointer-events: none;
}

/* Nav */
.yz-nav { border-bottom: 1px solid var(--line); background: rgba(10,17,36,0.75); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); position: sticky; top: 0; z-index: 40; }
.yz-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 14px; }
.yz-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.yz-brand__mark { display: grid; place-items: center; width: 40px; height: 40px; }
.yz-brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.yz-brand__text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
.yz-brand__text span { color: var(--amber); }
.yz-nav__actions { display: flex; align-items: center; gap: 8px; }

.yz-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13px;
  padding: 9px 15px; border-radius: 11px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, background .2s ease;
}
.yz-btn--solid { background: linear-gradient(180deg, var(--blue), var(--blue-2)); color: #fff; box-shadow: 0 8px 22px -10px rgba(37,99,235,0.7); }
.yz-btn--solid:hover { transform: translateY(-2px); }
.yz-btn--ghost { color: var(--text); background: rgba(255,255,255,0.05); border-color: var(--line); }
.yz-btn--ghost:hover { background: rgba(255,255,255,0.1); }

/* Başlık */
.yz-hero { padding-top: 56px; padding-bottom: 28px; }
.yz-kicker { display: inline-block; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.yz-h1 { font-size: clamp(28px, 4.4vw, 40px); font-weight: 800; line-height: 1.15; }
.yz-tarih { color: var(--muted); font-size: 13px; margin-top: 12px; }

/* İçerik */
.yz-icerik-alan { padding-bottom: 56px; }
.yz-icerik {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid var(--line); border-radius: 18px; padding: 32px;
}
.yz-icerik h2 {
  font-size: 19px; font-weight: 700; color: #fff; margin-top: 30px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.yz-icerik h2:first-child { margin-top: 0; }
.yz-icerik h3 { font-size: 15.5px; font-weight: 600; color: var(--text); margin-top: 20px; margin-bottom: 8px; }
.yz-icerik p { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; }
.yz-icerik ul, .yz-icerik ol { margin: 0 0 14px; padding-left: 20px; display: flex; flex-direction: column; gap: 7px; }
.yz-icerik li { color: var(--muted); font-size: 14.5px; }
.yz-icerik li::marker { color: var(--blue); }
.yz-icerik strong { color: var(--text); font-weight: 600; }
.yz-icerik a { color: #7dabfb; text-decoration: none; }
.yz-icerik a:hover { text-decoration: underline; }
.yz-icerik table { width: 100%; border-collapse: collapse; margin-bottom: 14px; font-size: 13.5px; }
.yz-icerik th, .yz-icerik td { border: 1px solid var(--line); padding: 9px 11px; text-align: left; color: var(--muted); vertical-align: top; }
.yz-icerik th { background: rgba(255,255,255,0.04); color: var(--text); font-weight: 600; }
.yz-icerik .yz-not {
  background: rgba(249,168,38,0.09); border: 1px solid rgba(249,168,38,0.28);
  border-radius: 12px; padding: 14px 16px; margin: 18px 0;
}
.yz-icerik .yz-not p { color: #f5d9a8; margin-bottom: 0; font-size: 13.5px; }

/* Diğer belgeler */
.yz-diger { margin-top: 24px; }
.yz-diger__baslik { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.yz-diger__linkler { display: flex; flex-wrap: wrap; gap: 10px; }
.yz-diger__linkler a {
  display: inline-flex; align-items: center;
  padding: 9px 15px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  color: var(--text); text-decoration: none; font-size: 13px; font-weight: 500;
  transition: background .2s ease, border-color .2s ease;
}
.yz-diger__linkler a:hover { background: rgba(59,130,246,0.14); border-color: rgba(59,130,246,0.4); }

/* Footer */
.yz-footer { margin-top: auto; background: var(--ink-2); border-top: 1px solid var(--line); }
.yz-footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-block: 20px; color: var(--muted); font-size: 12.5px; }
.yz-footer__linkler { display: flex; gap: 16px; flex-wrap: wrap; }
.yz-footer__linkler a { color: var(--muted); text-decoration: none; transition: color .2s; }
.yz-footer__linkler a:hover { color: var(--text); }

@media (max-width: 640px) {
  .yz-hero { padding-top: 38px; }
  .yz-icerik { padding: 20px 18px; border-radius: 14px; }
  .yz-nav__inner { height: 62px; }
  .yz-brand__mark { width: 32px; height: 32px; }
  .yz-brand__text { font-size: 17px; }
  .yz-nav__actions .yz-btn { padding: 8px 11px; font-size: 12px; }
  .yz-footer__inner { flex-direction: column; align-items: flex-start; }
  .yz-icerik table { display: block; overflow-x: auto; }
}
