/* Neon Pulsing Effect for Spectral Void Gear */
.neon-glow {
    animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
    0% {
        box-shadow: 0 0 10px #00f3ff, inset 0 0 5px #00f3ff;
        border-color: #00f3ff;
    }

    100% {
        box-shadow: 0 0 25px #ff00ff, inset 0 0 15px #ff00ff;
        border-color: #ff00ff;
    }
}

.transcend-btn {
    background: linear-gradient(45deg, #00f3ff, #ff00ff);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
    transition: all 0.2s;
    animation: pulse-border 1.5s infinite;
}

.transcend-btn:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 255, 0);
    }
}