body {
    font-family: 'Inter', sans-serif;
    /* Changed to fixed and adjusted percentages for a smoother flow */
    background: 
        radial-gradient(circle at top, rgba(249, 115, 22, 0.15), transparent 50%),
        #050505;
    background-attachment: fixed; 
    margin: 0;
    padding: 0;
    min-height: 100vh; /* Ensures the background covers the full screen height */
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.resume-section {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

html {
    scrollbar-gutter: stable;
}

::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
}

body:hover::-webkit-scrollbar-thumb {
    background: rgba(249, 115, 22, 0.2); 
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(249, 115, 22, 0.6) !important; 
}