/* Custom resets and scrollbar */
html {
    scroll-behavior: smooth;
}



/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #007BFF;
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Selection */
::selection {
    background-color: #007BFF;
    color: white;
}
