/* ripz.lol - Premium Text Effects */

@keyframes rainbow {
    0% { color: #ff0000; }
    17% { color: #ff8800; }
    33% { color: #ffff00; }
    50% { color: #00ff00; }
    67% { color: #0000ff; }
    83% { color: #8800ff; }
    100% { color: #ff0000; }
}

.effect-rainbow {
    animation: rainbow 3s linear infinite !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
}

@keyframes glow-pulse {
    0% { text-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent); }
    50% { text-shadow: 0 0 20px var(--accent), 0 0 30px var(--accent); }
    100% { text-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent); }
}

.effect-glow {
    animation: glow-pulse 2s ease-in-out infinite !important;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.effect-glitch {
    display: inline-block;
    animation: glitch 0.3s skew infinite;
    position: relative;
}

.effect-glitch::before,
.effect-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.effect-glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.effect-glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    5% { clip: rect(70px, 9999px, 71px, 0); }
    /* ... more frames ... */
    100% { clip: rect(67px, 9999px, 62px, 0); }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.effect-shimmer {
    background: linear-gradient(90deg, #ffffff 0%, var(--accent) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Sparkle Effect */
.effect-sparkle {
    position: relative;
}
