.animated-link {
    position: relative;
    text-decoration: none;
    overflow: hidden;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Glow effect */
.animated-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 6px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    transform: translateX(-50%);
    animation: glowPulse 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes glowPulse {
    0%, 100% {
        width: 0;
        opacity: 0;
    }
    25%, 75% {
        width: 100%;
        opacity: 0.6;
    }
}

/* Additional sparkle effect */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

@keyframes sparkleAnim {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0);
    }
}