/* Custom utilitites */

html,
body {
    cursor: none;
    /* Hide default cursor for follower */
}

/* Fallback if JS is disabled or on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
}

.pipeline-line {
    border-radius: 999px;
}

.typing-effect {
    white-space: nowrap;
    overflow: hidden;
}

/* Hide scrollbar for cleaner look */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

/* High-Contrast Focus Indicators for Accessibility */
:focus-visible {
    outline: 2px solid #06b6d4 !important;
    outline-offset: 4px;
}

/* Fallback for browsers that don't support :focus-visible */
:focus {
    outline: 2px solid #06b6d4 !important;
    outline-offset: 4px;
}

/* Ensure system cursor is hidden everywhere for the custom follower */
html,
body,
*,
a,
button,
input,
textarea {
    cursor: none !important;
}

@media (max-width: 768px) {

    html,
    body,
    *,
    a,
    button,
    input,
    textarea {
        cursor: auto !important;
    }
}