/* Custom Styles for Emayon Forge Workspace */

/* Animated background gradient keyframes */
@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.animate-glow {
    animation: pulseGlow 8s ease-in-out infinite;
}

/* Custom Scrollbars for columns */
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 9999px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(239, 68, 68, 0.2);
    border-radius: 9999px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(239, 68, 68, 0.45);
}

/* Text glow style */
.text-glow {
    text-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

/* Card backdrop border glow effects */
.glow-card-hover {
    position: relative;
    transition: all 0.3s ease;
}

.glow-card-hover::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.3), rgba(59, 130, 246, 0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-card-hover:hover::after {
    opacity: 1;
}
