@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.big-logo {
    animation: float 4s infinite ease-in-out;
}

.blinking-cursor {
    display: inline-block;
    width: 6px;
    height: 1.2em;
    background: var(--accent-cyan);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 4px;
}

/* Scrollbar Styling - global */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #3f3f46;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #52525b;
}