/* ============================================================
   DOSYA SORUMLULUGU — base-02-reset.css
   ------------------------------------------------------------
   NE YAPAR   : Tarayici varsayilanlarinin sifirlanmasi ve govde temel stili.
   KAYNAK     : v3.12.0'da bolundu — kurallar birebir tasindi,
                hicbir kural yeniden yazilmadi veya siralanmadi.
   SIRA       : index.html'deki <link> sirasi kaskadi belirler.
                Bu dosyanin sirasini DEGISTIRME.
   ------------------------------------------------------------
   Tam dosya listesi ve sira: BAGIMLILIK-HARITASI.md
   ============================================================ */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  font-family: var(--font);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}
input, textarea, select, button { font-family: var(--font); }
input, textarea { user-select: text; -webkit-user-select: text; cursor: text; }
button { cursor: pointer; border: none; background: none; }
input { outline: none; border: none; }
input[type="text"], input:not([type]), textarea { text-transform: uppercase; }
textarea { outline: none; resize: none; }

