/* ================================================
   reset.css — Tarayıcı Sıfırlama
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body, 'Rajdhani', sans-serif);
  background: var(--bg-1, #06090f);
  color: var(--text-1, #e8edf5);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}
body::-webkit-scrollbar { width: 6px; }
body::-webkit-scrollbar-track { background: var(--bg-0); }
body::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 3px; }
body::-webkit-scrollbar-thumb:hover { background: var(--blue); }
a { color: inherit; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; background: none; }
img { max-width: 100%; }
ul { list-style: none; }
