/* MYSTICAL ALCHEMY STYLES */
.vibe-alchemy {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 50%, #1a0b2e 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff) 1;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3),
                0 0 40px rgba(0, 255, 255, 0.2),
                inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.vibe-alchemy:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5),
                0 0 60px rgba(0, 255, 255, 0.3),
                0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.alchemy-glow {
    text-shadow: 0 0 10px #ff00ff,
                 0 0 20px #00ffff,
                 0 0 30px #ff00ff;
}

.alchemy-subtle {
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.7),
                 0 0 10px rgba(0, 255, 255, 0.5);
}

/* SPARKLE EFFECT */
.sparkle-text {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: sparkleShift 4s ease-in-out infinite;
}

@keyframes sparkleShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* MYSTICAL BORDER */
.mystical-border {
    position: relative;
    border: 2px solid transparent;
    border-radius: 10px;
}

.mystical-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.7;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}
