@keyframes slideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.animate-slide-in {
    animation: slideIn 0.3s ease-out forwards;
}
.nav-link.active {
    position: relative;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #EF4444;
    transition: width 0.3s ease;
}
.card-hover {
    transition: all 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
}
.dropdown-active {
    position: relative;
    z-index: 60;
}

#mobileProfileMenu {
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
}