/* Custom Styles & Animation Enhancements */
html {
    scroll-behavior: smooth;
}

/* Hide default cursor on desktop */
@media (min-width: 768px) {
    body {
        cursor: none;
    }
    a, button, input, select, textarea {
        cursor: none;
    }
}

/* Ensure smooth custom cursor animations */
#cursor-dot, #cursor-outline {
    pointer-events: none;
}

/* Clamp utility for multi-line text */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}