/* Simplified Professional Card Styles */
.project-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.icon-container {
    width: 64px;
    height: 64px;
    background: #FBBF24;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #111827;
}

.icon-container.grey {
    background: #374151;
    color: #9CA3AF;
}

.status-badge {
    position: absolute;
    top: 32px;
    right: 32px;
    background: #F59E0B;
    color: #FFF;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 12px;
}

.card-description {
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.btn-action {
    width: fit-content;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-open {
    color: #FBBF24;
}

.btn-open:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: #FBBF24;
}

.btn-disabled {
    color: #4B5563;
    cursor: default;
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}