/* Special fiber fusion icon style */
.fusion-icon {
    background-image: url('../images/fiber-fusion-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
    filter: drop-shadow(0 0 4px rgba(0, 195, 255, 0.6));
    transition: all 0.3s ease;
}

.fusion-icon:hover, 
.fiber-action-btn:hover .fusion-icon,
a:hover .fusion-icon {
    filter: drop-shadow(0 0 8px rgba(0, 195, 255, 0.9));
    transform: scale(1.1);
}

/* Styling for fiber fusion warning button */
.fiber-action-btn.btn-outline-warning {
    border-color: rgba(255, 152, 0, 0.7);
    color: rgba(255, 152, 0, 0.9);
    position: relative;
    overflow: hidden;
}

.fiber-action-btn.btn-outline-warning i {
    color: rgba(255, 152, 0, 0.9);
    position: relative;
    z-index: 2;
}

.fiber-action-btn.btn-outline-warning:hover {
    background-color: rgba(255, 152, 0, 0.15);
    border-color: rgba(255, 152, 0, 0.9);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
}

.fiber-action-btn.btn-outline-warning:hover i {
    color: #fff;
    transform: translateY(-4px);
    text-shadow: 0 4px 8px rgba(255, 152, 0, 0.7);
}

/* Animated data flow effect for fiber fusion */
.fusion-data-flow {
    position: relative;
    overflow: hidden;
}

.fusion-data-flow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(0, 195, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
    animation: dataFlow 2s infinite;
    z-index: 1;
}

@keyframes dataFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Pulsing glow effect for fusion element */
.fusion-pulse {
    animation: fusionPulse 2s infinite;
    will-change: filter, transform;
}

@keyframes fusionPulse {
    0% {
        filter: drop-shadow(0 0 2px rgba(0, 195, 255, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(0, 195, 255, 0.8));
        transform: scale(1.05);
    }
    100% {
        filter: drop-shadow(0 0 2px rgba(0, 195, 255, 0.5));
        transform: scale(1);
    }
}