/* Custom CSS */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scrollbar styling - Techy */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0B0C10;
}
::-webkit-scrollbar-thumb {
    background: #1F2833;
    border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
    background: #45A29E;
}

/* Animations */
@keyframes spin-slow {
    from { transform: translate(100px, 100px) rotate(0deg); }
    to { transform: translate(100px, 100px) rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 60s linear infinite;
}

/* Glassmorphism helpers */
.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Selection Color specific to this theme */
::selection {
    background: rgba(102, 252, 241, 0.3); /* Highlight color */
    color: white;
}