/* ============================================================
   BASE — reset + temel elementler
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: var(--font-ana);
  font-size: var(--fs-sm);   /* 12px — eski sistemdeki kompakt/zarif ölçü */
  font-weight: 400;          /* yüklü gerçek ağırlık (450 sentezleniyordu → font bozuluyordu) */
  background: var(--renk-zemin);
  color: var(--renk-yazi);
  overflow: hidden;
}

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

h1,h2,h3,h4 { font-weight: var(--fw-kalin); color: var(--renk-yazi); }

.mono { font-family: var(--font-mono); }
.dim  { color: var(--renk-soluk); }
.r    { text-align: right; }
.c    { text-align: center; }

/* İnce kaydırma çubuğu */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: var(--renk-sinir); border-radius: 4px; }
::-webkit-scrollbar-track { background: transparent; }

/* Yardımcılar */
.gizli { display: none !important; }
.akis  { display: flex; }
.akis.dik { flex-direction: column; }
.bosluk-yok { gap: 0; }
