/* Masterpiece utility CSS */

/* Global Scrollbar Aesthetic */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #030712; 
}

::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.6);
}

/* Custom Animation Utilities */
.animation-delay-4000 {
    animation-delay: -4s;
}

/* Prevent outline breaking borders on glassmorphism */
*:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}
