/* Custom Styles for Delta Executor Website */

/* Glassmorphism Cards */
.glass-card {
    background: rgba(15, 20, 32, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card:hover {
    box-shadow: 0 12px 40px 0 rgba(139, 92, 246, 0.25);
}

/* Glow Text Effect */
.glow-text {
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(6, 182, 212, 0.4);
}

/* Subtle Bounce Animation */
@keyframes bounceSubtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.animate-bounce-subtle {
    animation: bounceSubtle 3s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #07090e;
}

::-webkit-scrollbar-thumb {
    background: #232c45;
    border-radius: 4px;
    border: 2px solid #07090e;
}

::-webkit-scrollbar-thumb:hover {
    background: #8b5cf6;
}

/* Hide Scrollbar helper for tab lists */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Toast Animations */
@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
}

.toast-enter {
    animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast-exit {
    animation: toastOut 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Active tab indicators */
.script-tab.active {
    background-color: #7c3aed;
    color: #ffffff;
    border-color: rgba(167, 139, 250, 0.4);
}
