.top-nav-link-highlight {
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 50%, #c084fc 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(129, 140, 248, 0.5), 0 0 40px rgba(167, 139, 250, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 0.85rem 1.75rem !important;
    border-radius: 12px !important;
    font-size: 1.05rem !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
    animation: marketPulse 3s ease-in-out infinite !important;
}

@keyframes marketPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(129, 140, 248, 0.5), 0 0 40px rgba(167, 139, 250, 0.4);
    }
    50% {
        box-shadow: 0 6px 28px rgba(129, 140, 248, 0.65), 0 0 50px rgba(167, 139, 250, 0.55);
    }
}

.top-nav-link-highlight:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 30px rgba(129, 140, 248, 0.6), 0 0 60px rgba(167, 139, 250, 0.5) !important;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    animation: none !important;
}

.top-nav-link-highlight .top-nav-icon-svg {
    color: #fff !important;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.top-nav-link-highlight .nav-text {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


