/* Tailwind Base Import edilmediyse CDN kullanıyoruz, o yüzden burası custom css */

/* Smooth scrolling için html'e class eklendi ama desteklemeyenler için */
html {
    scroll-behavior: smooth;
}

/* Particles Container Fix */
#particles-js canvas {
    display: block;
    vertical-align: bottom;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
    transition: opacity .8s ease, transform 1.4s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Gradient Text Selection */
::selection {
    background: #3b82f6;
    color: white;
}