/* * ILYBD Neon v1 Pro - VFX Animations
 * Combat & Chasing Effects
 */

/* Post Border Fighting Animation */
@keyframes neon-combat {
    0% { border-image-source: linear-gradient(90deg, #00ff41, transparent); }
    50% { border-image-source: linear-gradient(180deg, #ff003c, #00ff41); }
    100% { border-image-source: linear-gradient(360deg, transparent, #ff003c); }
}

.combat-border {
    border: 2px solid;
    border-image-slice: 1;
    animation: neon-combat 3s linear infinite;
}

/* Running/Chasing Pulse for Titles */
@keyframes title-chase {
    0% { left: -100%; }
    100% { left: 100%; }
}

.chase-effect {
    position: relative;
    overflow: hidden;
}

.chase-effect::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    animation: title-chase 2s infinite;
}

/* [ADD_NEW_ANIMATIONS_BELOW] */
