/* Universelles Design & sanfte Übergänge */
body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    border-radius: 3px;
}

/* Dark Mode Scrollbar */
.dark ::-webkit-scrollbar-track { background: #07060a; }
.dark ::-webkit-scrollbar-thumb { background: #2d2b42; }

/* Light Mode Scrollbar */
:not(.dark) ::-webkit-scrollbar-track { background: #f3f4f6; }
:not(.dark) ::-webkit-scrollbar-thumb { background: #d1d5db; }

* {
    box-sizing: border-box;
}