/* reset.css - modern, safe reset (minimal ama sağlam) */

/* Box sizing */
*, *::before, *::after { box-sizing: border-box; }

/* Remove default margin */
html, body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
    margin: 0;
}

/* Body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Lists */
ul[role="list"], ol[role="list"] { list-style: none; }
ul, ol { padding-left: 1.25rem; }

/* Links */
a { text-decoration: none; color: inherit; }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

/* Forms */
input, button, textarea, select {
    font: inherit;
    color: inherit;
}
button {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}
textarea { resize: vertical; }

/* Tables */
table { border-collapse: collapse; border-spacing: 0; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    html:focus-within { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
