/* Team image filters for cyberpunk/gaming aesthetic */
.team-image {
    filter: hue-rotate(270deg) saturate(1.001) brightness(1.0005) contrast(1.0005);
    transition: filter 0.3s ease;
}

.team-image:hover {
    filter: hue-rotate(270deg) saturate(1.3) brightness(1.1) contrast(1.2);
}

/* Alternative purple tint approach */
.team-image-purple {
    filter: sepia(1) hue-rotate(270deg) saturate(2) brightness(0.9);
    transition: filter 0.3s ease;
}

.team-image-purple:hover {
    filter: sepia(1) hue-rotate(270deg) saturate(2.5) brightness(1);
}

/* Cyberpunk glow effect */
.team-image-glow {
    filter: sepia(1) hue-rotate(240deg) saturate(3) brightness(0.8) contrast(1.4);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
}

.team-image-glow:hover {
    filter: sepia(1) hue-rotate(240deg) saturate(3.5) brightness(0.9) contrast(1.5);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}
