/* ==========================================
   RESET + BAZĂ
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg-body);
    color: var(--text-main);
    overflow: hidden;
}

button, input, textarea, select {
    font-family: inherit;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}
