/* NUMBER 1 */
/*
FANCHATY SCROLL BAR - GÜÇLÜ VERSİYON
!important ile öncelik sağlanıyor
*/

/* Ana Scroll Bar - Zorla Uygula */
* {
    scrollbar-width: thin !important;
    scrollbar-color: #dd4791 #2a2a2a !important;
}

/* Webkit Scroll Bar Stilleri - Zorla */
*::-webkit-scrollbar {
    width: 12px !important;
    height: 12px !important;
}

*::-webkit-scrollbar-track {
    background: #2a2a2a !important;
    border-radius: 10px !important;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2) !important;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #534fe0, #6c49d5, #dd4791) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    transition: all 0.3s ease !important;
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #dd4791, #6c49d5, #534fe0) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 0 15px rgba(221, 71, 145, 0.4) !important;
}

*::-webkit-scrollbar-thumb:active {
    background: linear-gradient(to bottom, #dd4791, #dd4791, #6c49d5) !important;
    box-shadow: 0 0 20px rgba(221, 71, 145, 0.6) !important;
}

*::-webkit-scrollbar-corner {
    background: #2a2a2a !important;
}

/* Body için özel tanım */
body::-webkit-scrollbar {
    width: 12px !important;
}

body::-webkit-scrollbar-track {
    background: #2a2a2a !important;
    border-radius: 10px !important;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #534fe0, #6c49d5, #dd4791) !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

/* HTML için de tanım */
html::-webkit-scrollbar {
    width: 12px !important;
}

html::-webkit-scrollbar-track {
    background: #2a2a2a !important;
    border-radius: 10px !important;
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #534fe0, #6c49d5, #dd4791) !important;
    border-radius: 10px !important;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    *::-webkit-scrollbar {
        width: 8px !important;
    }
    
    *::-webkit-scrollbar-track {
        background: #f1f1f1 !important;
    }
}




/* ------------------------------------------------------------ */
