/* Cyberpunk Touch Feedback Effects */

.cyber-touch-feedback {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.2);
    border: 2px solid var(--cyber-neon-blue);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1000;
    animation: cyber-touch 0.8s cubic-bezier(0, 0.55, 0.45, 1) forwards;
}

@keyframes cyber-touch {
    0% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0.8;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Additional cyberpunk button styles */
.cyber-button-active {
    transform: scale(0.95) !important;
    box-shadow: 0 0 15px var(--cyber-neon-pink) !important;
    border-color: var(--cyber-neon-pink) !important;
}

.cyber-hover {
    box-shadow: 0 0 10px var(--cyber-neon-pink), 
               0 0 20px rgba(255, 0, 170, 0.2) !important;
    transform: scale(1.1) !important;
}

/* Enhanced Open Button */
.project-screenshot .open-button {
    background: rgba(0, 0, 0, 0.8) !important;
    text-shadow: 0 0 5px var(--cyber-neon-blue) !important;
    letter-spacing: 2px !important;
    font-family: 'Courier New', monospace !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0) rotate(0deg) !important;
}

.project-screenshot:hover .open-button {
    transform: translate(-50%, -50%) scale(1) rotate(0deg) !important;
    opacity: 1 !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4) !important;
}

.project-screenshot .open-button:hover {
    background: rgba(0, 243, 255, 0.2) !important;
    color: #fff !important;
    letter-spacing: 3px !important;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8) !important;
}
