.floating-btt-8c6a597b {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0F172A; /* Dark navy */
    color: #00F2FF; /* Neon Cyan */
    border: 2px solid #00F2FF;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.floating-btt-8c6a597b.show-8c6a597b {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btt-8c6a597b:hover {
    background: #00F2FF;
    color: #0F172A;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.8);
}

.floating-btt-8c6a597b svg {
    width: 24px;
    height: 24px;
}