/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050B07;
}

::-webkit-scrollbar-thumb {
    background: #1F2E24;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2A3D30;
}

/* Ambient Animations */
@keyframes drift {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
        opacity: 0.4;
    }

    33% {
        transform: translate(40px, -30px) rotate(5deg);
        opacity: 0.6;
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
        opacity: 0.4;
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
        opacity: 0.4;
    }
}

.animate-drift {
    animation: drift 15s infinite ease-in-out;
}

.animation-delay-2000 {
    animation-delay: 2s;
}
