#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

#scrollToTop i {
    font-size: 35px;
    color: #FFD700;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

#scrollToTop:hover i {
    transform: translateY(-5px);
    color: #FFE44D;
}

/* Mobil cihazlarda scroll to top butonunu gizle */
@media screen and (max-width: 768px) {
    #scrollToTop {
        display: none !important;
    }
}
