/* Custom Transitions & Glows for FxMath Trading Suite */

body {
    background-color: #0b0f19;
    font-family: 'Inter', sans-serif;
}

/* Custom glow borders */
.product-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

/* Filter buttons styling */
.filter-btn {
    transition: all 0.2s ease-in-out;
}

.filter-btn:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

/* Tab button transition */
.tab-btn {
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* FAQ dropdown styling */
.faq-item {
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: #9d4edd;
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #9d4edd;
}

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

::-webkit-scrollbar-track {
    background: #0b0f19;
}

::-webkit-scrollbar-thumb {
    background: #222b3e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #33415e;
}

/* Animation utilities */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
}

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