/* style.css - Tutto nella root */

/* Animazione cursore */
.cursor-blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Scrollbar personalizzata */
::-webkit-scrollbar {
    width: 10px;
    background: #2D3436;
}

::-webkit-scrollbar-thumb {
    background: #394042;
    border: 1px solid #00B894;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00B894;
}
