@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color-scheme: light dark;
}

/* Smooth Transitions Global */
body,
div,
input,
button,
span,
svg,
a {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

/* Custom selection */
::selection {
    background-color: #18181b;
    color: #ffffff;
}

.dark ::selection {
    background-color: #ffffff;
    color: #000000;
}

/* Scrollbar Customization (if needed matching legacy) */
.scrollbar-thin::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background: transparent;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background: rgba(161, 161, 170, 0.3);
    border-radius: 3px;
}

.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: rgba(161, 161, 170, 0.5);
}