/* Base Styles & Reset */
body {
    background-color: #0f0f12;
    color: #e2e8f0;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0f0f12;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00d4ff;
}
