/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 12px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #000000;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #00FF00;
    /* Neo Lime */
    border: 3px solid #000000;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #FF00FF;
    /* Neo Accent */
}

/* Blink Animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.blink {
    animation: blink 1s step-end infinite;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    cursor: none;
    /* Hide default cursor */
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background-color 0.2s;
    mix-blend-mode: difference;
}

.custom-cursor.cursor-hover {
    width: 64px;
    height: 64px;
    background-color: #FF00FF;
    /* Neo Accent */
    mix-blend-mode: normal;
    opacity: 0.8;
    border-color: #000;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

/* Brutalist Utilities */
.neo-shadow {
    box-shadow: 8px 8px 0px 0px #000000;
}

.neo-shadow-hover:hover {
    box-shadow: 12px 12px 0px 0px #000000;
    transform: translate(-4px, -4px);
}

.neo-shadow-active:active {
    box-shadow: 0px 0px 0px 0px #000000;
    transform: translate(4px, 4px);
}