/* =============================================================================
   NEXUS CAMPUS - STYLES SUR-MESURE & GLASSMORPHISM
   ============================================================================= */

/* Cartes Glassmorphism */
.glass-card {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Boutons de sélection d'Intention (OFFER vs NEED) */
.type-tab-btn {
    color: #94a3b8;
    background: transparent;
}

.type-tab-btn.active-tab {
    color: #ffffff;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Progression du score de similarité vectorielle */
.match-progress-bar {
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animation d'apparition des cartes de match */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUpFade 0.35s ease-out forwards;
}

/* Personnalisation de la barre de défilement */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #334155;
}
