
/* Magic Runtime brand text */
.magic-text {
    background: linear-gradient(135deg, #a78bfa, #c084fc, #a78bfa);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: magic-shimmer 3s ease-in-out infinite;
    font-weight: 600;
}
@keyframes magic-shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}
