/* SCROLL TO TOP BUTTON */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: none;
    width: 45px;
    height: 45px;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: rgba(0, 0, 0, 1);
    transform: translateY(-3px);
}

#scrollTopBtn i {
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    #scrollTopBtn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}