/* System Floating Button */
.system-float-button {
    position: fixed;
    bottom: 420px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #3543F0 0%, #1E29A8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(53, 67, 240, 0.4),
        0 0 40px rgba(53, 67, 240, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 
            0 10px 30px rgba(53, 67, 240, 0.4),
            0 0 40px rgba(53, 67, 240, 0.2),
            0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 
            0 10px 40px rgba(53, 67, 240, 0.6),
            0 0 60px rgba(53, 67, 240, 0.4),
            0 5px 20px rgba(0, 0, 0, 0.4);
    }
}

.system-float-button:hover {
    animation-play-state: paused;
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(53, 67, 240, 0.6),
        0 0 60px rgba(53, 67, 240, 0.4),
        0 5px 20px rgba(0, 0, 0, 0.4);
}

.system-float-button svg {
    width: 30px;
    height: 30px;
}

.system-float-button svg path {
    fill: #ffffff;
    stroke: #ffffff;
}

/* System Tooltip */
.system-tooltip {
    position: absolute;
    bottom: -40px;
    right: 80px;
    background: rgba(5, 6, 20, 0.95);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(53, 67, 240, 0.3);
}

.system-float-button:hover .system-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .system-float-button {
        bottom: 350px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .system-float-button svg {
        width: 25px;
        height: 25px;
    }
    
    .system-tooltip {
        display: none;
    }
}

/* Remove position overrides - let each button use its own CSS */